blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
201
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
85
| license_type
stringclasses 2
values | repo_name
stringlengths 7
100
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 260
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 11.4k
681M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 17
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 80
values | src_encoding
stringclasses 28
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 8
9.86M
| extension
stringclasses 52
values | content
stringlengths 8
9.86M
| authors
sequencelengths 1
1
| author
stringlengths 0
119
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f740e8375fc8e55e1df3777f4de7523685229e8a | bbda96dcd01a672891d0b4adf2ff9ff872f78e28 | /ios/chrome/browser/sync/profile_sync_service_factory.cc | 8d2d3b125b2966db7bd2d6112b9f952abf08e8cd | [
"BSD-3-Clause"
] | permissive | burgessmsl2018/chromium | 5abf66b366a593379c992701741025552a25f10b | a5ebaa53ec06ad256b4b0367e9c50da75b41267a | refs/heads/master | 2023-03-05T04:26:49.401470 | 2019-07-25T17:03:53 | 2019-07-25T17:03:53 | 150,258,425 | 0 | 0 | null | 2018-09-25T12:01:25 | 2018-09-25T12:01:24 | null | UTF-8 | C++ | false | false | 6,883 | 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 "ios/chrome/browser/sync/profile_sync_service_factory.h"
#include <utility>
#include "base/memory/singleton.h"
#include "base/task/post_task.h"
#include "base/time/time.h"
#include "components/browser_sync/profile_sync_service.h"
#include "components/keyed_service/ios/browser_state_dependency_manager.h"
#include "components/network_time/network_time_tracker.h"
#include "components/signin/core/browser/device_id_helper.h"
#include "components/signin/core/browser/profile_oauth2_token_service.h"
#include "components/sync/driver/startup_controller.h"
#include "components/sync/driver/sync_util.h"
#include "ios/chrome/browser/application_context.h"
#include "ios/chrome/browser/autofill/personal_data_manager_factory.h"
#include "ios/chrome/browser/bookmarks/bookmark_model_factory.h"
#include "ios/chrome/browser/bookmarks/bookmark_sync_service_factory.h"
#include "ios/chrome/browser/browser_state/chrome_browser_state.h"
#include "ios/chrome/browser/favicon/favicon_service_factory.h"
#include "ios/chrome/browser/gcm/ios_chrome_gcm_profile_service_factory.h"
#include "ios/chrome/browser/history/history_service_factory.h"
#include "ios/chrome/browser/invalidation/ios_chrome_profile_invalidation_provider_factory.h"
#include "ios/chrome/browser/passwords/ios_chrome_password_store_factory.h"
#include "ios/chrome/browser/reading_list/reading_list_model_factory.h"
#include "ios/chrome/browser/search_engines/template_url_service_factory.h"
#include "ios/chrome/browser/sessions/ios_chrome_tab_restore_service_factory.h"
#include "ios/chrome/browser/signin/about_signin_internals_factory.h"
#include "ios/chrome/browser/signin/identity_manager_factory.h"
#include "ios/chrome/browser/sync/consent_auditor_factory.h"
#include "ios/chrome/browser/sync/ios_chrome_sync_client.h"
#include "ios/chrome/browser/sync/model_type_store_service_factory.h"
#include "ios/chrome/browser/undo/bookmark_undo_service_factory.h"
#include "ios/chrome/browser/web_data_service_factory.h"
#include "ios/chrome/common/channel_info.h"
#include "ios/web/public/web_task_traits.h"
#include "ios/web/public/web_thread.h"
#include "services/network/public/cpp/shared_url_loader_factory.h"
#include "url/gurl.h"
using browser_sync::ProfileSyncService;
namespace {
void UpdateNetworkTimeOnUIThread(base::Time network_time,
base::TimeDelta resolution,
base::TimeDelta latency,
base::TimeTicks post_time) {
GetApplicationContext()->GetNetworkTimeTracker()->UpdateNetworkTime(
network_time, resolution, latency, post_time);
}
void UpdateNetworkTime(const base::Time& network_time,
const base::TimeDelta& resolution,
const base::TimeDelta& latency) {
base::PostTaskWithTraits(
FROM_HERE, {web::WebThread::UI},
base::Bind(&UpdateNetworkTimeOnUIThread, network_time, resolution,
latency, base::TimeTicks::Now()));
}
} // namespace
// static
ProfileSyncServiceFactory* ProfileSyncServiceFactory::GetInstance() {
return base::Singleton<ProfileSyncServiceFactory>::get();
}
// static
ProfileSyncService* ProfileSyncServiceFactory::GetForBrowserState(
ios::ChromeBrowserState* browser_state) {
if (!ProfileSyncService::IsSyncAllowedByFlag())
return nullptr;
return static_cast<ProfileSyncService*>(
GetInstance()->GetServiceForBrowserState(browser_state, true));
}
// static
ProfileSyncService* ProfileSyncServiceFactory::GetForBrowserStateIfExists(
ios::ChromeBrowserState* browser_state) {
if (!ProfileSyncService::IsSyncAllowedByFlag())
return nullptr;
return static_cast<ProfileSyncService*>(
GetInstance()->GetServiceForBrowserState(browser_state, false));
}
ProfileSyncServiceFactory::ProfileSyncServiceFactory()
: BrowserStateKeyedServiceFactory(
"ProfileSyncService",
BrowserStateDependencyManager::GetInstance()) {
// The ProfileSyncService depends on various SyncableServices being around
// when it is shut down. Specify those dependencies here to build the proper
// destruction order.
DependsOn(autofill::PersonalDataManagerFactory::GetInstance());
DependsOn(ConsentAuditorFactory::GetInstance());
DependsOn(ios::AboutSigninInternalsFactory::GetInstance());
DependsOn(ios::BookmarkModelFactory::GetInstance());
DependsOn(ios::BookmarkSyncServiceFactory::GetInstance());
DependsOn(ios::BookmarkUndoServiceFactory::GetInstance());
DependsOn(ios::FaviconServiceFactory::GetInstance());
DependsOn(ios::HistoryServiceFactory::GetInstance());
DependsOn(ios::TemplateURLServiceFactory::GetInstance());
DependsOn(ios::WebDataServiceFactory::GetInstance());
DependsOn(IdentityManagerFactory::GetInstance());
DependsOn(IOSChromeGCMProfileServiceFactory::GetInstance());
DependsOn(IOSChromePasswordStoreFactory::GetInstance());
DependsOn(IOSChromeProfileInvalidationProviderFactory::GetInstance());
DependsOn(ModelTypeStoreServiceFactory::GetInstance());
DependsOn(ReadingListModelFactory::GetInstance());
}
ProfileSyncServiceFactory::~ProfileSyncServiceFactory() {}
std::unique_ptr<KeyedService>
ProfileSyncServiceFactory::BuildServiceInstanceFor(
web::BrowserState* context) const {
ios::ChromeBrowserState* browser_state =
ios::ChromeBrowserState::FromBrowserState(context);
// Always create the GCMProfileService instance such that we can listen to
// the profile notifications and purge the GCM store when the profile is
// being signed out.
IOSChromeGCMProfileServiceFactory::GetForBrowserState(browser_state);
// TODO(crbug.com/171406): Change AboutSigninInternalsFactory to load on
// startup once bug has been fixed.
ios::AboutSigninInternalsFactory::GetForBrowserState(browser_state);
ProfileSyncService::InitParams init_params;
init_params.identity_manager =
IdentityManagerFactory::GetForBrowserState(browser_state);
init_params.signin_scoped_device_id_callback = base::BindRepeating(
&signin::GetSigninScopedDeviceId, browser_state->GetPrefs());
init_params.start_behavior = ProfileSyncService::MANUAL_START;
init_params.sync_client =
std::make_unique<IOSChromeSyncClient>(browser_state);
init_params.network_time_update_callback = base::Bind(&UpdateNetworkTime);
init_params.url_loader_factory = browser_state->GetSharedURLLoaderFactory();
init_params.network_connection_tracker =
GetApplicationContext()->GetNetworkConnectionTracker();
init_params.debug_identifier = browser_state->GetDebugName();
init_params.channel = ::GetChannel();
auto pss = std::make_unique<ProfileSyncService>(std::move(init_params));
pss->Initialize();
return pss;
}
| [
"[email protected]"
] | |
fc9f36bfd45ba42d1c05ab14e58b903ba42dee62 | 4d160fabaa20c86c72df956053757e8a6e62fb18 | /def-angle-calc-module/src/def-picture-filter.h | 8a9ca10d9d0e32b4c609b4b4c2e05a401803a055 | [] | no_license | redneckz/vocatch | 2e78d91fb12da23a223d1342ef1d000489019e28 | 0774c854dbe6d74e95225d6891a43089bc72ab94 | refs/heads/master | 2021-01-10T21:25:19.173736 | 2014-08-31T20:34:33 | 2017-05-22T08:55:42 | 23,522,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 531 | h | #ifndef DEFPICTUREFILTER_H_
#define DEFPICTUREFILTER_H_
#include "vocutil/vocutil.h"
using namespace vocutil;
class DefaultPictureFilter : public RadialPictureFilter {
public:
DefaultPictureFilter(Size radius) : RadialPictureFilter(radius) {
}
virtual Pixel FilterPixel(const FilterContext& context, Index index, Point2D point0,
Pixel pixel, Color m_color, Color sigma) override {
return (pixel - m_color) * (pixel - m_color) <= sigma ? pixel : m_color;
}
};
#endif /*DEFPICTUREFILTER_H_*/
| [
"[email protected]"
] | |
23209a546ddd7081015757047a75eac2bae429b9 | 08a2e70f85afd89ce06764f95785a3a3b812370e | /services/media_session/public/cpp/media_image_manager.h | be2285e5e536ab3864a8f981d860cd7ab2c1e4a9 | [
"BSD-3-Clause"
] | permissive | RobertPieta/chromium | 014cf3ffb3436793b2e0817874eda946779d7e2d | eda06a0b859a08d15a1ab6a6850e42e667530f0b | refs/heads/master | 2023-01-13T10:57:12.853154 | 2019-02-16T14:07:55 | 2019-02-16T14:07:55 | 171,064,555 | 0 | 0 | NOASSERTION | 2019-02-16T23:55:22 | 2019-02-16T23:55:22 | null | UTF-8 | C++ | false | false | 2,964 | h | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_MEDIA_SESSION_PUBLIC_CPP_MEDIA_IMAGE_MANAGER_H_
#define SERVICES_MEDIA_SESSION_PUBLIC_CPP_MEDIA_IMAGE_MANAGER_H_
#include <vector>
#include "base/component_export.h"
#include "base/gtest_prod_util.h"
#include "base/macros.h"
#include "base/optional.h"
#include "services/media_session/public/cpp/media_image.h"
namespace gfx {
class Size;
} // namespace gfx
class GURL;
namespace media_session {
// MediaImageManager manages the MediaImage selection process.
//
// The scoring works as follows:
// - An image score is computed by multiplying the type score with the size
// score.
// - The type score is between 0 and 1 and is based on the image MIME type
// and/or file extension.
// - PNG and JPEG are prefered than others.
// - If unspecified, use the default type score (0.6).
// - The size score is between 0 and 1 and is computed by multiplying the
// dominant size score and aspect ratio score:
// - The dominant size score is between 0 and 1 and is computed using
// |min_size| and |ideal_size|.
// - If size < |min_size| (too small), the size score is 0.
// - If |min_size| <= size <= |ideal_size|, the score increases
// linearly from 0.2 to 1.
// - If size > |ideal_size|, the score is |ideal_size| / size which
// drops from 1 to 0.
// - When size is "any", the size score is 0.8.
// - If unspecified, use the default size score (0.4).
// - The aspect ratio score is between 0 and 1 and is computed by dividing
// the short edge length by the long edge.
class COMPONENT_EXPORT(MEDIA_SESSION_CPP) MediaImageManager {
public:
// The |min_size| is the min size of the images to select in px. The
// |ideal_size| is the ideal size of the images to select in px.
MediaImageManager(int min_size, int ideal_size);
~MediaImageManager();
// Select the best image from the |images|. If an image could not be selected
// then will return null.
base::Optional<MediaImage> SelectImage(const std::vector<MediaImage>& images);
private:
FRIEND_TEST_ALL_PREFIXES(MediaImageManagerTest,
CheckExpectedImageExtensionHashes);
FRIEND_TEST_ALL_PREFIXES(MediaImageManagerTest, CheckExpectedImageTypeHashes);
double GetImageScore(const MediaImage& image) const;
double GetImageSizeScore(const gfx::Size& size) const;
double GetImageDominantSizeScore(const gfx::Size& size) const;
static base::Optional<double> GetImageExtensionScore(const GURL& url);
static base::Optional<double> GetImageTypeScore(const base::string16& type);
const int min_size_;
const int ideal_size_;
DISALLOW_COPY_AND_ASSIGN(MediaImageManager);
};
} // namespace media_session
#endif // SERVICES_MEDIA_SESSION_PUBLIC_CPP_MEDIA_IMAGE_MANAGER_H_
| [
"[email protected]"
] | |
64aa1fbb3d9319e5587a696136f7420be39771c0 | 92e67b30497ffd29d3400e88aa553bbd12518fe9 | /assignment2/part6/Re=110/83.7/U | 3b15e269d6457e3f516d7afdccdbb14668375f30 | [] | no_license | henryrossiter/OpenFOAM | 8b89de8feb4d4c7f9ad4894b2ef550508792ce5c | c54b80dbf0548b34760b4fdc0dc4fb2facfdf657 | refs/heads/master | 2022-11-18T10:05:15.963117 | 2020-06-28T15:24:54 | 2020-06-28T15:24:54 | 241,991,470 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 64,060 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "83.7";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
2000
(
(-0.00013521 -0.00526797 -2.28644e-22)
(-1.29124e-05 -0.0123828 0)
(0.000533735 -0.0163809 0)
(0.00145286 -0.017718 -1.17089e-21)
(0.00269177 -0.0166819 3.80386e-22)
(0.00422414 -0.0134622 1.48033e-23)
(0.00604586 -0.00819782 -6.54744e-22)
(0.00815453 -0.00101898 0)
(0.0105327 0.0079196 0)
(0.0130478 0.0184189 0)
(0.000360728 -0.00509591 0)
(0.00137551 -0.012412 -8.93227e-22)
(0.00269398 -0.0166781 8.23733e-22)
(0.00412678 -0.0183199 1.56419e-21)
(0.00563163 -0.0176324 0)
(0.00719638 -0.0148237 1.42901e-21)
(0.00883761 -0.0100402 -1.32888e-21)
(0.0105819 -0.00339629 0)
(0.0124566 0.0049988 2.4394e-21)
(0.0143443 0.0150136 -4.69589e-21)
(0.000899701 -0.00500649 0)
(0.00297496 -0.0125358 7.13016e-21)
(0.00526636 -0.0170139 0)
(0.00740316 -0.0188873 6.37312e-21)
(0.00935221 -0.0184727 0)
(0.0111149 -0.0160084 -5.74734e-21)
(0.0127271 -0.011659 0)
(0.0142423 -0.00553323 5.2114e-21)
(0.0157337 0.00229979 -4.88079e-21)
(0.0170956 0.0117691 -4.78065e-21)
(0.00151612 -0.0050261 -1.8544e-21)
(0.00483254 -0.012783 -3.56048e-21)
(0.00828366 -0.0174021 -1.66698e-21)
(0.0112954 -0.0194139 -3.13099e-21)
(0.0138478 -0.0191719 -2.99464e-21)
(0.0159606 -0.0169552 2.8287e-21)
(0.0176916 -0.0129572 2.71387e-21)
(0.0191202 -0.00729211 -2.63203e-23)
(0.0203648 1.56884e-06 4.92572e-21)
(0.0213318 0.00889979 4.77847e-21)
(0.00224901 -0.00517156 -1.82244e-21)
(0.00699518 -0.0131669 -3.6299e-21)
(0.0117665 -0.0178434 -6.89091e-21)
(0.0157881 -0.019889 3.17106e-21)
(0.0190654 -0.0197076 0)
(0.0216468 -0.0176268 0)
(0.0236193 -0.0138766 -5.57017e-21)
(0.0250904 -0.00858642 -5.28269e-21)
(0.0262209 -0.00177383 4.98518e-21)
(0.0269367 0.00656889 1.4377e-20)
(0.00313928 -0.00544567 1.85133e-21)
(0.00950287 -0.0136775 1.88378e-21)
(0.0157147 -0.0183221 -1.02144e-20)
(0.0208292 -0.0202966 1.62305e-20)
(0.0248967 -0.0200676 -3.02641e-21)
(0.0280104 -0.0180158 0)
(0.0302986 -0.0144112 0)
(0.0319035 -0.00940442 2.63024e-20)
(0.0330266 -0.00299855 -2.4881e-20)
(0.0336166 0.00483181 4.72459e-21)
(0.00422444 -0.0058337 1.44227e-20)
(0.0123807 -0.0142803 0)
(0.0200997 -0.0188039 1.3654e-20)
(0.0263244 -0.0206142 -1.29545e-20)
(0.0311765 -0.0202496 0)
(0.0348141 -0.0181453 5.88783e-21)
(0.0374223 -0.0146108 -1.65072e-20)
(0.0391891 -0.00981963 -2.10068e-20)
(0.0403567 -0.00376316 9.85602e-21)
(0.0408982 0.00360053 9.5569e-21)
(0.00553294 -0.00630323 -2.88292e-20)
(0.0156307 -0.0149174 -3.67124e-21)
(0.024859 -0.0192381 -6.91257e-21)
(0.0321368 -0.0208139 -1.62635e-20)
(0.0376888 -0.0202602 -6.22682e-21)
(0.0417614 -0.0180637 -5.8747e-21)
(0.0446133 -0.0145705 5.46989e-23)
(0.0464922 -0.00997724 0)
(0.0476863 -0.00426276 0)
(0.0481916 0.00265214 4.8709e-23)
(0.00707878 -0.00680632 1.44068e-20)
(0.0192244 -0.0155115 -1.46196e-20)
(0.0298919 -0.0195624 1.02825e-20)
(0.0380894 -0.020866 2.28891e-20)
(0.0441805 -0.0201137 -6.10539e-21)
(0.0485236 -0.0178361 5.87964e-21)
(0.0514657 -0.0144099 5.5382e-21)
(0.0533259 -0.010056 0)
(0.0544534 -0.00474472 0)
(0.0548796 0.00166535 -2.31498e-22)
(0.00885756 -0.0072842 -1.81032e-21)
(0.0230975 -0.0159738 1.8343e-20)
(0.03506 -0.0197107 -3.4313e-21)
(0.043974 -0.0207452 0)
(0.0503818 -0.0198345 0)
(0.0547763 -0.0175382 1.1617e-20)
(0.0576037 -0.0142513 0)
(0.0592565 -0.0102178 -1.01817e-20)
(0.06015 -0.00542614 2.03413e-23)
(0.0603884 0.000294979 9.10831e-21)
(0.0182874 0.0447785 1.79458e-22)
(0.0310018 0.102963 -1.81489e-22)
(0.0390333 0.161765 -2.04517e-22)
(0.0402042 0.215825 -2.31007e-22)
(0.0358623 0.269546 -2.82006e-22)
(0.0318175 0.326732 -1.00463e-23)
(0.0205596 0.391452 1.47982e-22)
(0.0175542 0.477273 5.292e-22)
(-0.00176158 0.606028 0)
(0.0052133 0.760609 -3.86581e-22)
(0.0175967 0.0405464 6.93139e-22)
(0.0281488 0.0981286 -7.79697e-22)
(0.0364461 0.159126 1.39241e-21)
(0.0380897 0.215113 2.31388e-22)
(0.0341866 0.27003 4.99269e-22)
(0.0304767 0.327997 8.58001e-22)
(0.019719 0.393256 -3.20128e-22)
(0.0168239 0.479457 -3.55074e-22)
(-0.0016709 0.607662 6.89587e-22)
(0.00480338 0.760711 3.85667e-22)
(0.0184004 0.0362264 0)
(0.0259822 0.0924006 -7.55701e-22)
(0.0342321 0.155329 -4.03061e-22)
(0.0362522 0.213356 0)
(0.0327322 0.269595 -1.53716e-21)
(0.0293322 0.328434 4.80634e-22)
(0.0190162 0.394273 5.38816e-22)
(0.0161893 0.480831 1.91488e-21)
(-0.00154762 0.608827 -6.87353e-22)
(0.00443737 0.760635 1.3923e-21)
(0.0208396 0.032065 0)
(0.0246403 0.0860044 7.62039e-22)
(0.0324038 0.150402 0)
(0.034679 0.210538 1.79419e-21)
(0.0314839 0.268235 -1.8035e-21)
(0.0283675 0.328043 -1.09147e-21)
(0.0184372 0.39448 -6.51385e-23)
(0.0156584 0.481354 -1.87469e-21)
(-0.00139398 0.609298 -3.0621e-22)
(0.00409506 0.760199 -1.71207e-21)
(0.0249152 0.0282812 3.68143e-23)
(0.024292 0.079233 -2.18071e-21)
(0.030985 0.14442 6.58544e-23)
(0.0333594 0.20666 -1.6116e-21)
(0.0304254 0.265951 0)
(0.0275631 0.326853 -1.04357e-21)
(0.0179641 0.393967 -8.75489e-23)
(0.0152121 0.481251 2.35499e-21)
(-0.00123299 0.609445 3.10659e-22)
(0.00377874 0.759713 -3.11796e-22)
(0.0304065 0.0250154 -5.89524e-21)
(0.0250889 0.0724143 3.73176e-21)
(0.0300175 0.137512 1.58001e-21)
(0.0322861 0.201744 -1.57926e-21)
(0.0295434 0.262739 -8.567e-22)
(0.0269085 0.324822 0)
(0.0175972 0.392611 -2.08786e-21)
(0.0148638 0.480197 1.0455e-21)
(-0.00105149 0.608643 1.13837e-21)
(0.00346797 0.758755 1.18741e-21)
(0.0368389 0.0223084 -7.07847e-22)
(0.0270794 0.0658745 0)
(0.0295558 0.129879 0)
(0.0314547 0.195838 0)
(0.0288176 0.258659 -9.1169e-22)
(0.0263799 0.322142 1.76568e-21)
(0.0173067 0.39081 2.03593e-21)
(0.0145611 0.47896 -3.17323e-21)
(-0.000895425 0.608044 5.6002e-22)
(0.0031848 0.758035 -1.73066e-21)
(0.0434941 0.0200737 4.43442e-21)
(0.0300949 0.0597893 3.03975e-21)
(0.0296339 0.121767 -3.01207e-21)
(0.0308684 0.18902 3.19498e-21)
(0.0282467 0.253554 -3.96678e-21)
(0.0259826 0.318362 0)
(0.0171253 0.387745 -9.16949e-22)
(0.0143789 0.47613 4.57893e-23)
(-0.000697498 0.605745 -1.0095e-21)
(0.00288895 0.756512 -1.06759e-21)
(0.0494334 0.0179122 -3.76035e-21)
(0.0336588 0.0537891 0)
(0.0302227 0.113022 -3.38945e-21)
(0.0304883 0.181454 6.10083e-21)
(0.0277913 0.248191 -2.27006e-21)
(0.0256634 0.314901 -4.16196e-22)
(0.0169559 0.385492 9.14966e-22)
(0.0141424 0.474711 1.03266e-23)
(-0.000601643 0.605158 1.45962e-21)
(0.00263207 0.755824 1.54998e-21)
(0.0534693 0.0156584 -3.04467e-21)
(0.0369992 0.047831 2.97726e-21)
(0.0312765 0.103137 3.76402e-22)
(0.0304162 0.1712 0)
(0.0274551 0.239293 0)
(0.0255106 0.307632 4.09184e-22)
(0.0170132 0.37918 1.73045e-21)
(0.0142059 0.468761 -1.68111e-21)
(-0.000344383 0.600465 -4.53138e-22)
(0.00233404 0.753535 4.3832e-22)
(0.05536 0.0170627 0)
(0.0413031 0.0456 0)
(0.0333328 0.0964992 0)
(0.0310612 0.165807 0)
(0.0273456 0.23718 0)
(0.0245791 0.308233 0)
(0.0162285 0.381378 0)
(0.013115 0.472259 0)
(-0.000605398 0.603197 0)
(0.00178521 0.753142 0)
(0.0568173 0.032985 0)
(0.0446429 0.0641977 0)
(0.0342079 0.108584 0)
(0.0300664 0.171797 0)
(0.0263211 0.2417 0)
(0.0232695 0.313334 0)
(0.0154417 0.38798 0)
(0.0119528 0.480236 0)
(-0.000538983 0.609725 0)
(0.00130363 0.75385 0)
(0.0538393 0.0378181 0)
(0.0456581 0.0735402 0)
(0.0353465 0.117342 0)
(0.0294966 0.17799 0)
(0.0251525 0.247073 0)
(0.0217793 0.318665 0)
(0.0145166 0.393805 0)
(0.0108589 0.486312 0)
(-0.000522019 0.614318 0)
(0.000926841 0.753781 0)
(0.0488313 0.0407375 0)
(0.0440185 0.0806495 0)
(0.0353601 0.124612 0)
(0.0290384 0.183446 0)
(0.0242939 0.252279 0)
(0.0206042 0.324685 0)
(0.0137777 0.401201 0)
(0.0100176 0.494649 0)
(-0.000273945 0.620952 0)
(0.000715321 0.754625 0)
(0.0432762 0.0417887 0)
(0.0408861 0.0861238 0)
(0.0341402 0.131269 0)
(0.028154 0.188554 0)
(0.0233533 0.256444 0)
(0.0195079 0.32887 0)
(0.0130513 0.405852 0)
(0.00921182 0.499449 0)
(-0.000256903 0.624455 0)
(0.000474549 0.754353 0)
(0.0373911 0.0411499 0)
(0.0369654 0.0897044 0)
(0.0319315 0.136826 0)
(0.0267145 0.193673 0)
(0.0223331 0.261339 0)
(0.0186068 0.334512 0)
(0.0125682 0.4129 0)
(0.00867108 0.507494 0)
(4.11975e-05 0.630725 0)
(0.000373477 0.755055 0)
(0.0314484 0.0389896 0)
(0.0329032 0.0917353 0)
(0.0296016 0.14142 0)
(0.0250968 0.197925 0)
(0.0210663 0.264702 0)
(0.017568 0.33758 0)
(0.0119662 0.416119 0)
(0.00810204 0.510674 0)
(3.76853e-05 0.632941 0)
(0.000221154 0.754609 0)
(0.0254325 0.0350706 0)
(0.0284793 0.0913829 0)
(0.0267748 0.144213 0)
(0.0234109 0.20217 0)
(0.0200144 0.269606 0)
(0.016785 0.343503 0)
(0.0116192 0.423505 0)
(0.00775351 0.519016 0)
(0.000409241 0.639284 0)
(0.000209261 0.75532 0)
(0.0205489 0.0315541 0)
(0.0256373 0.0915691 0)
(0.0251422 0.146779 0)
(0.0221638 0.204611 0)
(0.0190308 0.27147 0)
(0.0160265 0.345133 0)
(0.0111695 0.425214 0)
(0.00739073 0.520581 0)
(0.000387548 0.640353 0)
(0.000129462 0.754955 0)
(0.0139009 0.0193655 0)
(0.0204064 0.0842049 0)
(0.0228209 0.146222 0)
(0.0214605 0.208188 0)
(0.0187932 0.276695 0)
(0.0158394 0.351803 0)
(0.0112191 0.433531 0)
(0.00728839 0.529905 0)
(0.000895352 0.647273 0)
(0.000188046 0.755818 0)
(0.062841 0.00637197 2.64779e-21)
(0.0609201 0.0134035 -2.6028e-21)
(0.0552861 0.0145345 2.23898e-22)
(0.0489111 0.0141508 0)
(0.0423148 0.0123632 0)
(0.0354519 0.00946728 6.60242e-23)
(0.028606 0.00555457 -7.97395e-23)
(0.0218599 0.000330437 7.8361e-23)
(0.0157897 -0.00443471 -1.26855e-23)
(0.00849703 -0.0153043 1.24633e-23)
(0.0639481 0.00197783 -3.50932e-21)
(0.0602291 0.00518718 0)
(0.0538731 0.00450568 1.25866e-21)
(0.0472838 0.00274931 -2.49891e-21)
(0.0406126 -0.000109059 1.23667e-21)
(0.0337118 -0.00379746 -6.45519e-23)
(0.0268246 -0.00830006 5.92773e-23)
(0.0200954 -0.0139032 1.59126e-23)
(0.0137427 -0.0190685 -2.05199e-23)
(0.00692053 -0.0290528 -2.28636e-23)
(0.0642148 -0.00258223 3.95277e-21)
(0.0590712 -0.00274391 -1.82226e-21)
(0.0523191 -0.00520614 1.80475e-21)
(0.0455922 -0.00837028 -9.8915e-22)
(0.0388529 -0.0123228 7.76321e-22)
(0.0319134 -0.016803 0)
(0.0249931 -0.0218523 -5.94128e-23)
(0.018289 -0.0276981 1.29498e-24)
(0.0118177 -0.0330448 6.56715e-24)
(0.00554907 -0.0418178 3.44606e-23)
(0.063745 -0.00793104 -6.00759e-22)
(0.0574502 -0.0109686 0)
(0.0505418 -0.0149662 0)
(0.0437666 -0.0193769 0)
(0.0370098 -0.0242903 5.03868e-22)
(0.0300691 -0.0294392 -3.10107e-22)
(0.0231545 -0.0349054 2.26706e-23)
(0.0164972 -0.0408252 4.99155e-24)
(0.0100628 -0.0461132 7.11083e-24)
(0.00433833 -0.0535427 1.46518e-23)
(0.0624625 -0.0141609 -4.20045e-22)
(0.0552918 -0.0195717 -1.60452e-21)
(0.0484231 -0.0248401 -6.45267e-22)
(0.0416809 -0.0302665 6.44807e-22)
(0.0349832 -0.0359433 -1.91351e-22)
(0.0281119 -0.041581 0)
(0.0212807 -0.0472908 -6.00209e-23)
(0.0147428 -0.0531064 2.74196e-23)
(0.00849258 -0.05812 -9.76279e-24)
(0.00333163 -0.0642092 -2.19942e-23)
(0.0604575 -0.0211591 -4.44049e-21)
(0.0527058 -0.0284289 7.38985e-22)
(0.0460361 -0.0347324 1.88548e-22)
(0.0393879 -0.0409284 6.35519e-22)
(0.0328191 -0.04716 0)
(0.0260837 -0.0530901 0)
(0.0194096 -0.0588638 0)
(0.0130701 -0.0644145 2.774e-23)
(0.00712084 -0.0689932 0)
(0.002528 -0.0738347 0)
(0.0578086 -0.0287388 0)
(0.049805 -0.0373385 1.26569e-21)
(0.0434534 -0.0444846 -8.15258e-22)
(0.0369633 -0.05121 -4.64082e-22)
(0.0305827 -0.0577998 4.66466e-22)
(0.0240441 -0.0638374 9.79704e-23)
(0.0175922 -0.0695137 -1.22157e-22)
(0.0115206 -0.0746759 -1.23291e-22)
(0.00595131 -0.0787245 9.8807e-24)
(0.00190227 -0.082466 5.76977e-24)
(0.0546077 -0.036655 0)
(0.0466891 -0.0460978 -4.50734e-22)
(0.0407404 -0.0539237 -1.82178e-22)
(0.0344686 -0.0609584 0)
(0.0283302 -0.0677352 6.34161e-23)
(0.0220446 -0.0737227 -2.33193e-22)
(0.0158697 -0.079174 1.03585e-22)
(0.0101217 -0.0838703 5.27888e-24)
(0.00497508 -0.0873559 -8.42692e-24)
(0.00142481 -0.0901711 -5.68077e-24)
(0.0509809 -0.0446829 6.02668e-22)
(0.0434377 -0.0545298 4.09202e-22)
(0.037955 -0.0628966 -1.38584e-22)
(0.0319602 -0.0700473 7.12379e-23)
(0.0261106 -0.0768712 1.00734e-22)
(0.0201275 -0.0826871 1.03581e-22)
(0.0142716 -0.0878262 -2.25653e-23)
(0.00888537 -0.0920256 -1.22649e-23)
(0.00417365 -0.0949651 8.45448e-24)
(0.00106667 -0.0970304 6.57732e-25)
(0.0470566 -0.0526355 -1.26841e-22)
(0.0401211 -0.0625004 1.27984e-22)
(0.03515 -0.0712883 -9.23647e-23)
(0.0294896 -0.0783935 -7.11298e-23)
(0.0239647 -0.0851562 4.50482e-23)
(0.0183248 -0.0907178 -8.13636e-23)
(0.0128151 -0.0954963 3.17583e-23)
(0.00781097 -0.0992075 3.00867e-24)
(0.00352306 -0.101651 0)
(0.000801044 -0.10313 -6.59137e-25)
(0.0429804 -0.0603697 1.30025e-22)
(0.0368182 -0.0699277 -1.31147e-22)
(0.0323833 -0.0790296 -9.75151e-23)
(0.0271095 -0.0859625 -7.60527e-23)
(0.0219291 -0.0925833 -4.74861e-23)
(0.0166606 -0.0978451 7.18319e-24)
(0.011508 -0.102247 1.68169e-23)
(0.00688922 -0.105507 2.6497e-23)
(0.00299805 -0.107522 0)
(0.000604743 -0.108557 -2.25983e-24)
(0.0389023 -0.0677992 0)
(0.033615 -0.0767805 -4.39882e-22)
(0.0297134 -0.0860951 7.42834e-22)
(0.0248697 -0.0927661 7.61648e-23)
(0.020034 -0.0991852 1.20154e-22)
(0.0151511 -0.104134 1.27471e-22)
(0.0103508 -0.108166 -2.70368e-23)
(0.00610586 -0.111032 -1.61566e-23)
(0.00257507 -0.11269 1.915e-23)
(0.000459277 -0.113399 2.25448e-24)
(0.0349403 -0.074891 0)
(0.030579 -0.0830758 -5.09557e-22)
(0.0271796 -0.0924965 -2.02478e-22)
(0.0228021 -0.0988557 0)
(0.0182956 -0.105025 -3.32347e-22)
(0.0138 -0.109674 1.26721e-22)
(0.00933606 -0.113358 7.74754e-23)
(0.00544357 -0.115891 1.29856e-22)
(0.00223338 -0.117261 -1.90876e-23)
(0.000350522 -0.117738 1.39434e-23)
(0.0311766 -0.0816521 0)
(0.0277552 -0.0888756 5.13781e-22)
(0.0248018 -0.0982759 0)
(0.0209195 -0.104315 5.95437e-22)
(0.0167174 -0.11019 -5.98526e-22)
(0.0126007 -0.11457 -1.60416e-22)
(0.00845139 -0.117932 3.45024e-23)
(0.0048839 -0.120196 -1.35069e-22)
(0.00195558 -0.121335 -2.48594e-23)
(0.000267815 -0.121654 -2.14229e-23)
(0.0276687 -0.0881149 5.27952e-21)
(0.0251792 -0.0942816 -1.97934e-21)
(0.0225935 -0.103498 -1.91047e-22)
(0.0192251 -0.109247 -8.01159e-22)
(0.0152979 -0.114781 0)
(0.0115418 -0.118935 -1.71004e-22)
(0.00768293 -0.121999 5.57338e-23)
(0.00440977 -0.124054 2.03222e-22)
(0.00172796 -0.12501 8.36972e-24)
(0.000203449 -0.125227 -8.3641e-24)
(0.0244474 -0.0943152 4.54997e-22)
(0.0228801 -0.0994289 3.08183e-21)
(0.0205692 -0.10824 8.37767e-22)
(0.0177167 -0.11377 -8.37252e-22)
(0.0140358 -0.118906 -2.93089e-22)
(0.0106114 -0.12288 0)
(0.00701838 -0.125669 -2.78975e-22)
(0.004007 -0.127564 1.49404e-22)
(0.00154046 -0.128373 7.6219e-23)
(0.000152116 -0.128533 1.92151e-23)
(0.0215296 -0.100267 -7.39898e-22)
(0.0208959 -0.104479 0)
(0.0187591 -0.112592 0)
(0.0163963 -0.118 0)
(0.0129358 -0.122676 -2.32777e-22)
(0.00980185 -0.126514 5.25275e-22)
(0.00644953 -0.129042 2.86851e-22)
(0.00366549 -0.13082 -3.41067e-22)
(0.00138642 -0.131509 1.96442e-23)
(0.000110251 -0.131644 -3.84769e-23)
(0.0189101 -0.105936 -1.70752e-21)
(0.0192405 -0.109606 2.288e-21)
(0.0171866 -0.116649 -2.2664e-21)
(0.0152509 -0.122046 1.45899e-21)
(0.0119953 -0.1262 -1.77013e-21)
(0.00910098 -0.129938 0)
(0.00596668 -0.132214 -1.73457e-22)
(0.00337581 -0.133907 -7.25451e-24)
(0.00126056 -0.134497 -6.47781e-23)
(7.50188e-05 -0.134635 -2.17243e-23)
(0.0163543 -0.111191 -8.02175e-22)
(0.0176821 -0.114975 0)
(0.0157358 -0.120513 -2.23644e-21)
(0.0141613 -0.126008 3.47604e-21)
(0.0111409 -0.129583 -1.195e-21)
(0.00845193 -0.133244 -1.28376e-22)
(0.00553425 -0.135275 1.73062e-22)
(0.00311585 -0.136906 2.16309e-23)
(0.00115321 -0.137413 1.3316e-22)
(4.50582e-05 -0.137577 4.32397e-23)
(0.0138463 -0.115674 -3.24174e-21)
(0.0161204 -0.120738 3.17005e-21)
(0.01442 -0.124329 2.88669e-22)
(0.0131168 -0.129991 0)
(0.0103617 -0.132941 0)
(0.00785153 -0.136532 1.3216e-22)
(0.00514796 -0.138314 3.21284e-22)
(0.00288535 -0.139898 -3.15309e-22)
(0.00106563 -0.14033 -2.38652e-23)
(3.16981e-05 -0.140541 2.33602e-23)
(0.0134767 -0.12268 0)
(0.0163526 -0.134555 0)
(0.0141683 -0.133254 0)
(0.0126287 -0.139532 0)
(0.00989399 -0.141076 0)
(0.00737304 -0.144593 0)
(0.00482446 -0.1458 0)
(0.00269436 -0.147285 0)
(0.00103088 -0.14751 0)
(6.53838e-05 -0.147792 0)
(0.0129433 -0.14532 0)
(0.0118455 -0.158586 0)
(0.0100254 -0.1538 0)
(0.00854856 -0.160182 0)
(0.00659729 -0.15958 0)
(0.00490666 -0.162813 0)
(0.00318224 -0.162883 0)
(0.00181335 -0.164182 0)
(0.00070692 -0.163951 0)
(7.28917e-05 -0.1643 0)
(0.0134465 -0.173442 0)
(0.0110685 -0.18783 0)
(0.00905831 -0.180396 0)
(0.00724955 -0.187204 0)
(0.00550399 -0.184785 0)
(0.00397872 -0.188129 0)
(0.00259183 -0.1872 0)
(0.00150246 -0.188573 0)
(0.000631676 -0.187884 0)
(8.61132e-05 -0.188378 0)
(0.013545 -0.20872 0)
(0.0102973 -0.224236 0)
(0.00832521 -0.214965 0)
(0.00625682 -0.222548 0)
(0.00476478 -0.218639 0)
(0.00332178 -0.222453 0)
(0.00222688 -0.220624 0)
(0.00129479 -0.222307 0)
(0.000598405 -0.221132 0)
(8.70751e-05 -0.22188 0)
(0.0133077 -0.251776 0)
(0.00964219 -0.267571 0)
(0.00776181 -0.257735 0)
(0.00550505 -0.26596 0)
(0.00424722 -0.26117 0)
(0.00281568 -0.265561 0)
(0.00196849 -0.263062 0)
(0.00109881 -0.265176 0)
(0.000557672 -0.263568 0)
(6.31835e-05 -0.264665 0)
(0.0124253 -0.300343 0)
(0.00875924 -0.31476 0)
(0.00705455 -0.306117 0)
(0.00477242 -0.314186 0)
(0.00373558 -0.309508 0)
(0.00232593 -0.314108 0)
(0.00168271 -0.311418 0)
(0.000836044 -0.313807 0)
(0.000452376 -0.311984 0)
(7.33649e-06 -0.313369 0)
(0.0106812 -0.34889 0)
(0.0074243 -0.36038 0)
(0.00597449 -0.354472 0)
(0.00390833 -0.361304 0)
(0.00307703 -0.357784 0)
(0.00178579 -0.361875 0)
(0.00129711 -0.359612 0)
(0.000508911 -0.361832 0)
(0.00027774 -0.360166 0)
(-5.77247e-05 -0.361568 0)
(0.0081518 -0.390507 0)
(0.00561479 -0.398499 0)
(0.00450388 -0.395901 0)
(0.00288 -0.400816 0)
(0.00225855 -0.399011 0)
(0.00121845 -0.401991 0)
(0.000855942 -0.40058 0)
(0.000210827 -0.40219 0)
(0.000103912 -0.400998 0)
(-9.36619e-05 -0.40207 0)
(0.00507804 -0.419921 0)
(0.00346893 -0.425029 0)
(0.00277674 -0.425187 0)
(0.00174852 -0.428295 0)
(0.00136329 -0.428045 0)
(0.00068839 -0.42984 0)
(0.000457745 -0.429293 0)
(3.39281e-05 -0.430173 0)
(1.79675e-06 -0.42952 0)
(-8.2847e-05 -0.430113 0)
(0.0017231 -0.434841 0)
(0.00116511 -0.438405 0)
(0.000936498 -0.440062 0)
(0.000582717 -0.442124 0)
(0.000455184 -0.442751 0)
(0.000219701 -0.44382 0)
(0.00014072 -0.443788 0)
(-8.72385e-06 -0.444202 0)
(-1.25519e-05 -0.443899 0)
(-3.28767e-05 -0.444167 0)
(0.0133894 -0.13155 3.76765e-21)
(0.014347 -0.155725 -3.69487e-21)
(0.0154211 -0.185501 4.74223e-22)
(0.0156916 -0.221646 0)
(0.0154149 -0.264172 0)
(0.0143001 -0.310472 5.48177e-22)
(0.012248 -0.355413 -2.35485e-21)
(0.00936568 -0.393156 2.32201e-21)
(0.00586745 -0.419508 6.3051e-22)
(0.00199496 -0.432798 -6.20586e-22)
(0.0136478 -0.13624 -4.46713e-21)
(0.0151601 -0.160366 0)
(0.016364 -0.190242 3.23679e-21)
(0.0166649 -0.226329 -7.46893e-21)
(0.0163424 -0.268402 4.79342e-21)
(0.0151183 -0.313732 -5.08729e-22)
(0.0129363 -0.357332 1.13358e-21)
(0.00990432 -0.393723 2.39255e-21)
(0.00622033 -0.419049 6.7322e-22)
(0.00211313 -0.431807 6.53612e-22)
(0.0141839 -0.14111 5.21256e-21)
(0.0162768 -0.165253 -3.57144e-21)
(0.0175289 -0.195022 3.53756e-21)
(0.0178201 -0.230844 -3.95408e-21)
(0.0174118 -0.272308 2.92515e-21)
(0.0160427 -0.316577 0)
(0.0136928 -0.358838 -1.13633e-21)
(0.0104729 -0.393951 5.80096e-23)
(0.00657602 -0.418353 -1.2558e-21)
(0.00222472 -0.430645 -1.28232e-21)
(0.0150348 -0.145492 -8.41847e-22)
(0.0176387 -0.169748 0)
(0.0188936 -0.199458 0)
(0.019151 -0.235035 0)
(0.0186303 -0.275908 3.25649e-21)
(0.0170935 -0.319157 -2.17816e-21)
(0.0145456 -0.360134 -1.53191e-23)
(0.0111003 -0.394019 -1.34118e-21)
(0.00695771 -0.417518 -6.88474e-22)
(0.00234045 -0.429342 -7.37122e-22)
(0.0162675 -0.149486 7.36181e-23)
(0.0192312 -0.173692 -2.53631e-21)
(0.0204397 -0.203301 -1.92912e-21)
(0.0206403 -0.238645 1.9279e-21)
(0.0199863 -0.278975 -1.06364e-21)
(0.0182688 -0.321301 0)
(0.0155046 -0.361124 -1.2496e-21)
(0.0118066 -0.393891 2.73631e-21)
(0.00738739 -0.416551 -1.40035e-21)
(0.00247188 -0.427926 1.44236e-21)
(0.0179173 -0.153154 -6.73697e-21)
(0.0210754 -0.177127 7.33664e-22)
(0.0221835 -0.206517 -1.39563e-22)
(0.0222936 -0.241582 1.97998e-21)
(0.0214809 -0.281383 0)
(0.0195669 -0.322876 0)
(0.0165695 -0.361688 0)
(0.0125963 -0.393486 1.46625e-21)
(0.00787245 -0.415419 0)
(0.0026243 -0.426402 0)
(0.0199952 -0.156405 0)
(0.0231867 -0.180028 2.77189e-21)
(0.0241494 -0.209101 -1.87315e-21)
(0.0241288 -0.243841 -2.22293e-21)
(0.0231289 -0.283116 2.23448e-21)
(0.0209962 -0.323851 1.3349e-21)
(0.0177429 -0.361784 -1.32406e-21)
(0.0134691 -0.392764 -5.23759e-21)
(0.008412 -0.414094 3.72893e-22)
(0.00279855 -0.424758 -1.27643e-21)
(0.0225102 -0.159123 0)
(0.0255711 -0.182321 -9.0085e-22)
(0.0263534 -0.211014 -5.07859e-22)
(0.0261608 -0.245411 0)
(0.0249461 -0.284182 6.50688e-22)
(0.0225697 -0.32424 -1.9625e-21)
(0.0190326 -0.361421 2.18788e-21)
(0.0144274 -0.391721 7.80921e-22)
(0.00900525 -0.412565 -8.54418e-22)
(0.00299471 -0.422982 1.69347e-21)
(0.0254734 -0.161219 8.10336e-22)
(0.0282339 -0.183944 9.76094e-22)
(0.0288059 -0.212207 -2.16544e-22)
(0.0283987 -0.246268 2.90464e-22)
(0.0269444 -0.284578 6.18524e-22)
(0.0242984 -0.324055 1.0397e-21)
(0.0204475 -0.360614 -3.91346e-22)
(0.0154767 -0.390369 -4.23031e-22)
(0.00965389 -0.410834 8.57233e-22)
(0.00321363 -0.421068 4.64559e-22)
(0.0288945 -0.162622 -2.25402e-22)
(0.0311801 -0.184868 2.27534e-22)
(0.0315157 -0.212647 -2.61234e-22)
(0.0308487 -0.246394 -2.90084e-22)
(0.0291324 -0.284292 3.45131e-22)
(0.0261905 -0.323298 -7.04945e-22)
(0.0219959 -0.35937 5.98875e-22)
(0.0166238 -0.388711 2.14258e-22)
(0.0103618 -0.4089 0)
(0.0034569 -0.41901 -4.65599e-22)
(0.0327808 -0.163277 2.30791e-22)
(0.0344126 -0.185086 -2.33046e-22)
(0.0344909 -0.212322 -2.8013e-22)
(0.0335157 -0.245786 -3.13307e-22)
(0.0315175 -0.283325 -3.60131e-22)
(0.0282526 -0.321972 -2.55381e-23)
(0.0236841 -0.357694 2.10947e-22)
(0.0178739 -0.386752 6.81555e-22)
(0.0111318 -0.406764 0)
(0.00372567 -0.416806 -5.08147e-22)
(0.0371369 -0.163172 0)
(0.0379313 -0.184595 -1.07163e-21)
(0.0377366 -0.211241 1.94243e-21)
(0.0364029 -0.244453 3.13831e-22)
(0.0341065 -0.281681 7.30047e-22)
(0.0304908 -0.320079 1.20077e-21)
(0.0255197 -0.355582 -4.27574e-22)
(0.0192341 -0.384486 -4.62402e-22)
(0.0119691 -0.404422 1.02291e-21)
(0.00402136 -0.41445 5.06965e-22)
(0.0419643 -0.162343 0)
(0.0417364 -0.183388 -1.05599e-21)
(0.0412531 -0.209442 -5.8383e-22)
(0.0395131 -0.242417 0)
(0.0369041 -0.279391 -2.30101e-21)
(0.0329092 -0.317641 7.68419e-22)
(0.027506 -0.353053 9.17689e-22)
(0.0207058 -0.381927 2.96569e-21)
(0.0128731 -0.401865 -1.01959e-21)
(0.00434335 -0.411932 2.20111e-21)
(0.0472577 -0.160901 0)
(0.0458292 -0.181466 1.06497e-21)
(0.0450304 -0.207002 0)
(0.0428488 -0.239683 2.9346e-21)
(0.039914 -0.276469 -2.94967e-21)
(0.035515 -0.314656 -1.8099e-21)
(0.0296509 -0.350095 -4.15876e-23)
(0.0223017 -0.379059 -3.05233e-21)
(0.0138546 -0.399082 -5.08804e-22)
(0.00469297 -0.409236 -2.73787e-21)
(0.0529805 -0.158902 7.6878e-21)
(0.0502253 -0.178827 -2.95136e-21)
(0.0490612 -0.203932 3.19592e-22)
(0.0464218 -0.236269 -2.73305e-21)
(0.0431327 -0.272936 0)
(0.0383107 -0.311152 -1.88745e-21)
(0.031955 -0.346738 -1.597e-22)
(0.0240197 -0.375903 4.14521e-21)
(0.0149109 -0.396099 5.685e-22)
(0.00506845 -0.406379 -5.70701e-22)
(0.0590926 -0.156336 -7.91883e-22)
(0.0549319 -0.175547 5.51781e-21)
(0.0533214 -0.200275 2.8427e-21)
(0.0502263 -0.232265 -2.84079e-21)
(0.0465603 -0.268832 -1.71838e-21)
(0.0413016 -0.307134 0)
(0.034429 -0.34296 -4.23229e-21)
(0.0258725 -0.372431 2.12273e-21)
(0.0160531 -0.392896 2.26815e-21)
(0.00547368 -0.403342 2.43569e-21)
(0.0655238 -0.153278 -1.05911e-21)
(0.0599425 -0.171718 0)
(0.0577898 -0.196111 0)
(0.0542526 -0.227758 0)
(0.0501922 -0.264262 -1.98766e-21)
(0.0444783 -0.302734 3.69962e-21)
(0.0370545 -0.338898 4.31151e-21)
(0.0278355 -0.368751 -6.79195e-21)
(0.0172603 -0.389525 1.21612e-21)
(0.0058979 -0.400153 -3.61764e-21)
(0.0721627 -0.149861 -1.58111e-21)
(0.0652483 -0.167367 5.43987e-21)
(0.0624454 -0.191452 -5.388e-21)
(0.0584938 -0.222676 6.94341e-21)
(0.0540397 -0.259062 -8.73467e-21)
(0.0478771 -0.297696 0)
(0.039894 -0.334271 -2.25397e-21)
(0.0299823 -0.364643 -9.31488e-23)
(0.018592 -0.385862 -2.5279e-21)
(0.00636424 -0.396728 -2.57634e-21)
(0.0788542 -0.146403 -1.12495e-21)
(0.0708275 -0.162781 0)
(0.067231 -0.186694 -7.2011e-21)
(0.0628747 -0.217611 1.35842e-20)
(0.0580023 -0.254035 -5.26252e-21)
(0.0513554 -0.292943 -1.06534e-21)
(0.042765 -0.329927 2.24905e-21)
(0.0321253 -0.360694 -1.14276e-22)
(0.0199087 -0.382207 3.68951e-21)
(0.00681237 -0.393232 3.81272e-21)
(0.0857943 -0.141511 -5.07632e-21)
(0.0773852 -0.156464 4.97747e-21)
(0.0726709 -0.179996 7.68883e-22)
(0.0678323 -0.210374 0)
(0.0625212 -0.246682 0)
(0.0554158 -0.28598 1.05054e-21)
(0.0462183 -0.323813 4.82253e-21)
(0.0347782 -0.355586 -4.71995e-21)
(0.0215745 -0.377903 -1.2931e-21)
(0.00738858 -0.389275 1.27155e-21)
(0.0961528 -0.141558 0)
(0.0920234 -0.153799 0)
(0.0843651 -0.177972 0)
(0.0782086 -0.207832 0)
(0.0715627 -0.243285 0)
(0.0630235 -0.281268 0)
(0.0522828 -0.317583 0)
(0.0391964 -0.347983 0)
(0.0242537 -0.369469 0)
(0.00819087 -0.380675 0)
(0.114278 -0.129123 0)
(0.116489 -0.146026 0)
(0.104909 -0.172907 0)
(0.0978162 -0.202296 0)
(0.0887488 -0.236534 0)
(0.0776014 -0.272252 0)
(0.0639946 -0.305833 0)
(0.0477928 -0.333484 0)
(0.0295626 -0.352454 0)
(0.0101957 -0.361571 0)
(0.137606 -0.117216 0)
(0.142508 -0.136519 0)
(0.127172 -0.163692 0)
(0.119606 -0.191711 0)
(0.107426 -0.224182 0)
(0.0932279 -0.257055 0)
(0.076201 -0.287824 0)
(0.0564671 -0.313431 0)
(0.0346606 -0.331777 0)
(0.0114843 -0.34189 0)
(0.166584 -0.108816 0)
(0.172368 -0.128599 0)
(0.152978 -0.154692 0)
(0.145018 -0.181286 0)
(0.128856 -0.211959 0)
(0.111381 -0.241814 0)
(0.0904115 -0.269659 0)
(0.0666609 -0.292349 0)
(0.0409047 -0.307647 0)
(0.0142426 -0.314199 0)
(0.200598 -0.0986418 0)
(0.204771 -0.116876 0)
(0.181247 -0.140515 0)
(0.172053 -0.164525 0)
(0.15036 -0.191678 0)
(0.128972 -0.217299 0)
(0.103129 -0.241884 0)
(0.0750719 -0.262528 0)
(0.0453446 -0.278288 0)
(0.0143308 -0.288782 0)
(0.239514 -0.0906024 0)
(0.240915 -0.106625 0)
(0.213642 -0.128432 0)
(0.202359 -0.149595 0)
(0.174341 -0.173365 0)
(0.149601 -0.195614 0)
(0.118617 -0.217781 0)
(0.0860663 -0.235789 0)
(0.0521773 -0.24814 0)
(0.0192112 -0.25087 0)
(0.279989 -0.0749781 0)
(0.274772 -0.0874348 0)
(0.244596 -0.105323 0)
(0.228687 -0.121302 0)
(0.193864 -0.139992 0)
(0.165178 -0.157353 0)
(0.126789 -0.175174 0)
(0.0892481 -0.190548 0)
(0.051087 -0.206067 0)
(0.012254 -0.224427 0)
(0.31947 -0.0649201 0)
(0.309376 -0.0733823 0)
(0.278626 -0.0882127 0)
(0.257781 -0.100155 0)
(0.22012 -0.116495 0)
(0.188186 -0.131328 0)
(0.14517 -0.148422 0)
(0.104139 -0.164229 0)
(0.0613191 -0.17981 0)
(0.0308568 -0.17561 0)
(0.357222 -0.0360999 0)
(0.343574 -0.0398285 0)
(0.300107 -0.048733 0)
(0.272845 -0.0544068 0)
(0.22324 -0.0641036 0)
(0.182712 -0.0712655 0)
(0.125856 -0.0806584 0)
(0.07264 -0.0896387 0)
(0.0208174 -0.108652 0)
(-0.0391342 -0.160035 0)
(0.620633 -0.0188998 0)
(0.600393 -0.0218666 0)
(0.560541 -0.0262653 0)
(0.528861 -0.0304417 0)
(0.479267 -0.0366368 0)
(0.433816 -0.0434484 0)
(0.369941 -0.053812 0)
(0.301264 -0.0692466 0)
(0.210611 -0.0986658 0)
(0.151315 -0.157042 0)
(0.114977 -0.127598 5.20526e-21)
(0.135313 -0.114676 -5.12617e-21)
(0.158783 -0.103071 8.46472e-22)
(0.187304 -0.0948749 0)
(0.221214 -0.0854334 0)
(0.25854 -0.0781883 1.29759e-21)
(0.298321 -0.0643773 -6.18741e-21)
(0.335639 -0.0564082 6.10142e-21)
(0.38357 -0.0310578 1.73831e-21)
(0.641517 -0.0165595 -1.76375e-21)
(0.1214 -0.121539 -4.83773e-21)
(0.141526 -0.108443 0)
(0.164583 -0.0972358 6.06998e-21)
(0.192826 -0.0892656 -1.46919e-20)
(0.226771 -0.080172 9.91859e-21)
(0.264017 -0.0733036 -1.21467e-21)
(0.303825 -0.0601701 2.6381e-21)
(0.341235 -0.0530468 5.96033e-21)
(0.393318 -0.029088 1.61099e-21)
(0.649714 -0.0155626 1.62795e-21)
(0.127039 -0.114832 5.58432e-21)
(0.146814 -0.101913 -5.67025e-21)
(0.169366 -0.0912774 5.61659e-21)
(0.19725 -0.0836202 -7.81389e-21)
(0.231047 -0.0749748 5.66305e-21)
(0.268348 -0.0685662 0)
(0.308139 -0.0561715 -2.64444e-21)
(0.346183 -0.0499067 -5.95777e-23)
(0.401923 -0.0273052 -3.05415e-21)
(0.657471 -0.0146036 -3.23968e-21)
(0.13255 -0.107648 -9.60075e-22)
(0.15236 -0.0952013 0)
(0.174503 -0.0852371 0)
(0.202158 -0.0779438 0)
(0.235645 -0.0698173 6.42357e-21)
(0.27292 -0.0639413 -4.37735e-21)
(0.312536 -0.0523498 -1.77086e-22)
(0.351186 -0.0469125 -3.03146e-21)
(0.409948 -0.0256919 -1.53932e-21)
(0.664979 -0.0137232 -1.58178e-21)
(0.137542 -0.100108 9.83086e-22)
(0.157598 -0.0884026 -3.0494e-21)
(0.179434 -0.0791841 -3.19603e-21)
(0.20698 -0.0722897 3.19404e-21)
(0.240213 -0.0647202 -2.01718e-21)
(0.277528 -0.0594301 0)
(0.316865 -0.0486761 -2.56902e-21)
(0.356188 -0.0440095 5.75343e-21)
(0.417523 -0.0242092 -2.88899e-21)
(0.672163 -0.012927 3.15124e-21)
(0.141834 -0.0922364 -7.19338e-21)
(0.16219 -0.0815389 3.4095e-22)
(0.183764 -0.0731301 -5.15446e-22)
(0.211182 -0.0666939 3.12152e-21)
(0.24427 -0.0597273 0)
(0.281688 -0.05503 0)
(0.320763 -0.0451546 0)
(0.360882 -0.0412102 2.74556e-21)
(0.424551 -0.0228268 0)
(0.678927 -0.0122132 0)
(0.14535 -0.0840507 0)
(0.166085 -0.0746018 3.64834e-21)
(0.187452 -0.0670572 -2.53449e-21)
(0.214687 -0.0611527 -3.57269e-21)
(0.24766 -0.0548383 3.59125e-21)
(0.285169 -0.050743 2.3269e-21)
(0.324146 -0.041781 -2.19323e-21)
(0.365015 -0.0385248 -9.44845e-21)
(0.430876 -0.0215352 6.6815e-22)
(0.685177 -0.0115718 -2.24292e-21)
(0.147985 -0.0755828 0)
(0.169248 -0.0675842 -1.11755e-21)
(0.190504 -0.0609509 -6.7547e-22)
(0.217534 -0.0556497 0)
(0.250393 -0.0500288 1.08455e-21)
(0.287959 -0.0465631 -3.11676e-21)
(0.32699 -0.0385353 3.712e-21)
(0.36852 -0.035944 1.42706e-21)
(0.436498 -0.0203362 -1.40371e-21)
(0.690918 -0.0109988 2.99856e-21)
(0.149622 -0.0668661 6.91243e-22)
(0.171615 -0.0604788 1.20208e-21)
(0.192878 -0.054802 -2.07964e-22)
(0.219712 -0.050171 3.97448e-22)
(0.25247 -0.0452753 9.38139e-22)
(0.290086 -0.0424737 1.60933e-21)
(0.329269 -0.035393 -5.93043e-22)
(0.371415 -0.0334596 -6.55118e-22)
(0.441377 -0.0192186 1.40834e-21)
(0.6961 -0.0104823 7.24652e-22)
(0.150158 -0.057934 -2.28137e-22)
(0.173121 -0.0532751 2.31016e-22)
(0.194518 -0.0485978 -3.30602e-22)
(0.221177 -0.0447015 -3.96918e-22)
(0.253854 -0.0405577 4.91766e-22)
(0.291541 -0.0384541 -1.02779e-21)
(0.330948 -0.0323314 9.02006e-22)
(0.373701 -0.0310622 3.44327e-22)
(0.445469 -0.0181632 0)
(0.700702 -0.0100071 -7.26238e-22)
(0.149539 -0.048825 2.23768e-22)
(0.173731 -0.0459616 -2.266e-22)
(0.195387 -0.0423209 -3.21435e-22)
(0.221902 -0.0392213 -3.87808e-22)
(0.254514 -0.0358565 -4.86674e-22)
(0.292309 -0.0344822 -2.96084e-23)
(0.332001 -0.029329 2.75786e-22)
(0.375368 -0.0287392 9.48233e-22)
(0.448748 -0.017151 0)
(0.704746 -0.00956292 -7.07726e-22)
(0.14777 -0.0395936 0)
(0.173442 -0.038526 -1.1451e-21)
(0.195475 -0.0359497 2.11295e-21)
(0.221882 -0.0337066 3.88449e-22)
(0.254435 -0.0311487 9.00201e-22)
(0.292371 -0.0305343 1.55528e-21)
(0.332404 -0.0263637 -5.80836e-22)
(0.37639 -0.0264759 -6.39637e-22)
(0.45118 -0.0161685 1.34508e-21)
(0.708218 -0.0091415 7.06072e-22)
(0.14489 -0.0303233 0)
(0.17225 -0.0309557 -9.98198e-22)
(0.194779 -0.0294598 -6.39123e-22)
(0.221125 -0.0281297 0)
(0.253617 -0.0264076 -2.82582e-21)
(0.291722 -0.026584 9.02441e-22)
(0.332151 -0.0234118 1.09521e-21)
(0.376759 -0.0242558 3.73221e-21)
(0.45278 -0.0152042 -1.34071e-21)
(0.711157 -0.00874038 2.77402e-21)
(0.140962 -0.021121 0)
(0.17013 -0.0232431 1.00667e-21)
(0.19329 -0.0228305 0)
(0.219631 -0.0224632 3.3197e-21)
(0.252066 -0.0216052 -3.33674e-21)
(0.290357 -0.022604 -2.16981e-21)
(0.331232 -0.0204492 -1.13899e-22)
(0.376459 -0.0220629 -3.73707e-21)
(0.453517 -0.0142474 -6.19172e-22)
(0.713512 -0.00835124 -3.43129e-21)
(0.1361 -0.0121188 5.9212e-21)
(0.167072 -0.0153891 -2.19583e-21)
(0.19101 -0.0160477 5.36777e-22)
(0.217413 -0.0166814 -2.80286e-21)
(0.249797 -0.0167142 0)
(0.288291 -0.0185677 -2.17193e-21)
(0.329666 -0.0174535 -2.13942e-22)
(0.375521 -0.0198822 4.89836e-21)
(0.453502 -0.0132889 6.70181e-22)
(0.715376 -0.00797496 -6.69783e-22)
(0.130482 -0.00347962 -9.65744e-22)
(0.163096 -0.00740671 4.44669e-21)
(0.18796 -0.00910628 2.80971e-21)
(0.214487 -0.0107621 -2.80778e-21)
(0.246817 -0.0117098 -1.8059e-21)
(0.285515 -0.0144487 0)
(0.327419 -0.0143988 -4.69479e-21)
(0.373891 -0.0176984 2.33871e-21)
(0.452577 -0.0123141 2.55734e-21)
(0.716609 -0.00759475 2.71341e-21)
(0.12434 0.00459875 -7.14109e-22)
(0.158254 0.000673635 0)
(0.184187 -0.00200927 0)
(0.210907 -0.0046867 0)
(0.243199 -0.00657107 -2.08932e-21)
(0.282133 -0.0102287 3.88853e-21)
(0.324622 -0.0112741 4.70027e-21)
(0.371739 -0.0155098 -7.39178e-21)
(0.451192 -0.0113171 1.32918e-21)
(0.717454 -0.00721713 -3.9991e-21)
(0.118005 0.011905 -1.04805e-21)
(0.152656 0.00879725 4.5849e-21)
(0.179699 0.00522798 -4.54137e-21)
(0.206624 0.00156138 6.83845e-21)
(0.238831 -0.00126837 -8.61623e-21)
(0.277936 -0.00586312 0)
(0.320981 -0.00802211 -2.32965e-21)
(0.368711 -0.013281 -2.6108e-23)
(0.448537 -0.0102694 -2.61316e-21)
(0.717539 -0.00680788 -2.69696e-21)
(0.111542 0.0183584 -7.25162e-22)
(0.146604 0.0169595 0)
(0.174892 0.0125705 -6.4581e-21)
(0.202153 0.00792858 1.26738e-20)
(0.234387 0.00413147 -4.99132e-21)
(0.273772 -0.00143438 -1.06374e-21)
(0.317418 -0.00473929 2.32456e-21)
(0.365759 -0.011094 -7.15238e-23)
(0.446518 -0.00917637 3.79541e-21)
(0.717475 -0.00638348 3.96197e-21)
(0.103099 0.0249103 -3.44024e-21)
(0.137912 0.0260509 3.3621e-21)
(0.167468 0.0207808 6.55086e-22)
(0.195249 0.0150366 0)
(0.22748 0.0101331 0)
(0.267115 0.00349967 1.05175e-21)
(0.311542 -0.00102665 4.83809e-21)
(0.360647 -0.00869804 -4.72415e-21)
(0.441196 -0.0079911 -1.28444e-21)
(0.716359 -0.00589439 1.21898e-21)
(0.104022 0.0436292 0)
(0.136794 0.0465891 0)
(0.16605 0.0381477 0)
(0.193362 0.03046 0)
(0.224806 0.023096 0)
(0.263567 0.0140171 0)
(0.307102 0.00671664 0)
(0.356105 -0.00383179 0)
(0.439949 -0.00483258 0)
(0.714553 -0.00460924 0)
(0.102637 0.0752072 0)
(0.132305 0.081643 0)
(0.159311 0.0677928 0)
(0.18562 0.0574885 0)
(0.21693 0.0460023 0)
(0.255146 0.0327326 0)
(0.298661 0.0205466 0)
(0.350821 0.00514948 0)
(0.444695 0.000409971 0)
(0.724524 -0.00224913 0)
(0.096476 0.111648 0)
(0.122804 0.119088 0)
(0.146242 0.09922 0)
(0.171014 0.0870419 0)
(0.20148 0.0712043 0)
(0.237931 0.0535869 0)
(0.279803 0.0360236 0)
(0.332432 0.0156243 0)
(0.430592 0.00591276 0)
(0.712789 -0.000881087 0)
(0.0897218 0.152629 0)
(0.111212 0.159161 0)
(0.131575 0.133194 0)
(0.155608 0.120437 0)
(0.185344 0.0995484 0)
(0.220282 0.0773168 0)
(0.262231 0.0538196 0)
(0.319503 0.028211 0)
(0.430106 0.0121221 0)
(0.719458 0.00122052 0)
(0.0781019 0.199112 0)
(0.0939872 0.203038 0)
(0.111872 0.172441 0)
(0.133732 0.15967 0)
(0.159755 0.132341 0)
(0.190456 0.105722 0)
(0.229443 0.0759959 0)
(0.286483 0.044628 0)
(0.400838 0.0214451 0)
(0.692781 0.00307609 0)
(0.068337 0.250988 0)
(0.078897 0.252746 0)
(0.0959751 0.218283 0)
(0.113982 0.204714 0)
(0.136766 0.169959 0)
(0.164881 0.140809 0)
(0.204029 0.104979 0)
(0.266187 0.0681184 0)
(0.39298 0.0360671 0)
(0.691386 0.00808258 0)
(0.0458934 0.311727 0)
(0.0521054 0.310185 0)
(0.0652631 0.273218 0)
(0.0771866 0.258862 0)
(0.0952052 0.219139 0)
(0.117829 0.190883 0)
(0.152651 0.149868 0)
(0.211486 0.109424 0)
(0.336557 0.0671048 0)
(0.633074 0.016129 0)
(0.0395953 0.389854 0)
(0.0436801 0.388285 0)
(0.0550527 0.348736 0)
(0.0636916 0.335124 0)
(0.0796592 0.292257 0)
(0.0987691 0.26689 0)
(0.132841 0.221403 0)
(0.192936 0.182077 0)
(0.318953 0.125418 0)
(0.602313 0.036373 0)
(0.00169195 0.533185 0)
(0.00112184 0.532487 0)
(0.00461569 0.499252 0)
(0.00652107 0.489923 0)
(0.0138929 0.453669 0)
(0.0249187 0.434576 0)
(0.0502316 0.390599 0)
(0.0988981 0.350468 0)
(0.202449 0.261663 0)
(0.446608 0.0758844 0)
(0.0123377 0.739052 0)
(0.0160361 0.737493 0)
(0.0206898 0.722804 0)
(0.0272626 0.71653 0)
(0.0364794 0.695328 0)
(0.0502109 0.677729 0)
(0.0715739 0.638084 0)
(0.106605 0.582215 0)
(0.170386 0.447861 0)
(0.315194 0.150747 0)
(0.078397 0.0520575 3.44941e-21)
(0.0863613 0.0918773 -3.407e-21)
(0.0831257 0.131908 5.75066e-22)
(0.0773891 0.174823 0)
(0.0670791 0.222828 0)
(0.0582906 0.274345 9.51822e-22)
(0.0388997 0.335604 -4.55442e-21)
(0.0332504 0.414479 4.51742e-21)
(0.000525141 0.553756 1.26926e-21)
(0.0111409 0.74671 -1.28137e-21)
(0.0685555 0.0551022 -3.40527e-21)
(0.0793455 0.0975589 0)
(0.0776989 0.138444 4.20605e-21)
(0.0726157 0.181775 -1.02818e-20)
(0.0628608 0.23016 7.01043e-21)
(0.0544919 0.282047 -8.88909e-22)
(0.0362036 0.34376 1.87769e-21)
(0.0307624 0.42352 4.26037e-21)
(7.77319e-05 0.561571 1.098e-21)
(0.0106304 0.74876 1.13388e-21)
(0.0596598 0.0569423 4.00256e-21)
(0.0723438 0.102087 -3.79473e-21)
(0.0722961 0.144124 3.75805e-21)
(0.0679609 0.187868 -5.44812e-21)
(0.0588303 0.236411 3.92789e-21)
(0.050951 0.288761 0)
(0.0337175 0.35084 -1.88221e-21)
(0.0285108 0.431706 -7.87668e-23)
(-0.00041599 0.56869 -2.14644e-21)
(0.0100085 0.750218 -2.27295e-21)
(0.051627 0.0580238 -6.7065e-22)
(0.0655979 0.105892 0)
(0.0670471 0.149588 0)
(0.0634828 0.193958 0)
(0.0549972 0.242775 4.44399e-21)
(0.0476417 0.29552 -3.04513e-21)
(0.0314232 0.357856 -1.48169e-22)
(0.0264873 0.439602 -2.11225e-21)
(-0.000904743 0.575456 -1.0549e-21)
(0.0093122 0.751994 -1.08102e-21)
(0.0444107 0.0583782 3.71359e-22)
(0.0592481 0.10876 -2.14569e-21)
(0.0620488 0.154379 -2.13974e-21)
(0.0592603 0.199605 2.1382e-21)
(0.0514226 0.248877 -1.37867e-21)
(0.0445846 0.302089 0)
(0.0293106 0.364727 -1.75724e-21)
(0.0246699 0.447134 3.90792e-21)
(-0.0013111 0.581838 -1.93634e-21)
(0.00861048 0.754039 2.16121e-21)
(0.0379686 0.0579674 -5.4745e-21)
(0.0533391 0.110579 3.96183e-22)
(0.0573484 0.15821 -3.3012e-22)
(0.0553277 0.20458 2.06699e-21)
(0.0481371 0.254274 0)
(0.0418093 0.308077 0)
(0.0273888 0.371094 0)
(0.0230514 0.454058 1.80357e-21)
(-0.00159373 0.587659 0)
(0.00794562 0.75599 0)
(0.0322912 0.0567722 0)
(0.0478893 0.111318 2.45874e-21)
(0.0529869 0.161034 -1.69264e-21)
(0.0516834 0.208731 -2.32617e-21)
(0.0451272 0.258875 2.33817e-21)
(0.0393323 0.313332 1.5033e-21)
(0.0256603 0.376738 -1.38266e-21)
(0.0216267 0.460229 -6.09331e-21)
(-0.00175552 0.592804 4.27938e-22)
(0.00732746 0.757609 -1.40564e-21)
(0.0274026 0.0547958 0)
(0.0429142 0.110944 -7.6817e-22)
(0.04897 0.162841 -4.38936e-22)
(0.0483432 0.211951 0)
(0.0423916 0.262762 6.9752e-22)
(0.0371209 0.317881 -1.97102e-21)
(0.0241167 0.381567 2.33262e-21)
(0.0203843 0.465615 9.30544e-22)
(-0.0018243 0.5972 -8.2625e-22)
(0.00674547 0.758807 1.88126e-21)
(0.0233623 0.0520731 6.60352e-22)
(0.0384276 0.109427 8.08576e-22)
(0.0453011 0.163594 -1.64123e-22)
(0.0453191 0.214218 2.47373e-22)
(0.0399453 0.26588 5.87958e-22)
(0.0351381 0.321673 9.97761e-22)
(0.0227478 0.38558 -3.51399e-22)
(0.0193111 0.470279 -3.93022e-22)
(-0.00183422 0.600879 8.28978e-22)
(0.00619497 0.759669 4.26627e-22)
(0.0202731 0.0486863 -1.78712e-22)
(0.0344466 0.106756 1.80715e-22)
(0.0419868 0.163247 -2.13475e-22)
(0.0426095 0.215517 -2.47043e-22)
(0.0377757 0.268155 2.94463e-22)
(0.0333698 0.324626 -6.19665e-22)
(0.0215625 0.388874 5.32472e-22)
(0.0183803 0.474195 2.10904e-22)
(-0.00181342 0.603778 0)
(0.00567648 0.760226 -4.27566e-22)
(0.0108443 -0.00767237 0)
(0.0271499 -0.0162136 0)
(0.0401918 -0.0196229 -1.4138e-20)
(0.0495644 -0.020438 0)
(0.056029 -0.0194609 6.21727e-21)
(0.0602367 -0.017257 -5.76166e-21)
(0.0627432 -0.0142168 0)
(0.064019 -0.0105953 0)
(0.064554 -0.00646265 -9.35066e-21)
(0.0647757 -0.00194126 1.77678e-20)
(0.0129807 -0.00789856 0)
(0.0312389 -0.0161445 -1.14219e-20)
(0.0450858 -0.0192541 -3.72336e-21)
(0.0546264 -0.0199504 -1.34173e-20)
(0.0608803 -0.0190496 -6.25173e-21)
(0.0646768 -0.0170953 -1.73336e-20)
(0.0666885 -0.0144466 0)
(0.0674591 -0.0113325 0)
(0.067502 -0.00781602 0)
(0.0672181 -0.00402734 -2.72361e-22)
(0.0151719 -0.00789694 0)
(0.0351775 -0.0157047 -4.23372e-21)
(0.0495176 -0.0185899 6.95354e-21)
(0.0589324 -0.0193152 1.00657e-20)
(0.0647308 -0.0186738 -1.03506e-22)
(0.0679322 -0.0171597 -3.15911e-23)
(0.0693256 -0.0150822 1.06622e-20)
(0.06952 -0.0126289 -9.79556e-21)
(0.0690447 -0.00982762 1.80044e-20)
(0.0682836 -0.00676611 -1.69517e-20)
(0.0173101 -0.00762736 -1.98041e-21)
(0.0387668 -0.0148727 1.1615e-20)
(0.0532719 -0.017653 1.82863e-20)
(0.0622895 -0.0185906 -2.06951e-20)
(0.067435 -0.018413 1.26169e-20)
(0.0699169 -0.0175383 1.16642e-20)
(0.070631 -0.0162123 -5.29627e-21)
(0.0702376 -0.0145734 1.94644e-20)
(0.0692697 -0.0126116 -2.8807e-22)
(0.068103 -0.0103794 -8.49208e-21)
(0.0192737 -0.00707402 -2.10153e-21)
(0.041805 -0.0136675 1.99668e-21)
(0.0561555 -0.0165004 0)
(0.064552 -0.017854 1.73293e-20)
(0.0689137 -0.0183457 -3.21831e-21)
(0.0706232 -0.0182948 -9.49714e-23)
(0.0706638 -0.0178752 -5.40049e-21)
(0.0697281 -0.0171758 -1.45049e-20)
(0.0683368 -0.0161601 8.3909e-23)
(0.0668527 -0.0148593 1.22074e-20)
(0.0209344 -0.00624855 0)
(0.0441025 -0.0121494 -1.28056e-20)
(0.0580124 -0.0152204 3.89038e-21)
(0.0656298 -0.0171964 -1.08154e-20)
(0.0691528 -0.0185442 3.28683e-21)
(0.0701088 -0.0194684 3.20364e-23)
(0.0695414 -0.0200689 3.19907e-23)
(0.0681533 -0.0203917 9.6986e-21)
(0.0664336 -0.0203896 -1.3251e-20)
(0.0647148 -0.0200818 1.22891e-20)
(0.0221683 -0.00519228 1.14281e-21)
(0.0454977 -0.0104179 8.58665e-21)
(0.0587346 -0.0139263 0)
(0.0654909 -0.0167152 1.09051e-20)
(0.0681957 -0.0190713 -1.01391e-20)
(0.0684797 -0.0210766 -2.98089e-21)
(0.0674144 -0.0227629 8.19936e-21)
(0.0656903 -0.0241413 0)
(0.0637552 -0.025162 0)
(0.0618916 -0.0258785 0)
(0.022865 -0.00397495 -1.20503e-21)
(0.0458707 -0.00860498 -3.5196e-21)
(0.0582684 -0.0127471 4.25765e-21)
(0.0641578 -0.0165083 5.73305e-21)
(0.0661306 -0.0199786 5.03493e-21)
(0.0658705 -0.0231205 3.12816e-21)
(0.064444 -0.025909 0)
(0.0625084 -0.0283353 4.9124e-21)
(0.0604629 -0.0303653 -2.32724e-21)
(0.0585491 -0.0320866 0)
(0.0229356 -0.00269094 0)
(0.045152 -0.00686621 7.09975e-21)
(0.0566157 -0.0118199 -4.25686e-21)
(0.0617007 -0.0166688 -3.85606e-21)
(0.0630778 -0.0213068 5.39725e-23)
(0.0624305 -0.0255901 -1.51848e-21)
(0.0607897 -0.0294523 1.4377e-21)
(0.0587637 -0.0328804 0)
(0.0566995 -0.0358691 -2.27352e-21)
(0.054798 -0.0385239 -2.05925e-21)
(0.0223365 -0.00145489 1.69484e-22)
(0.0433342 -0.00537136 -2.74369e-21)
(0.0538348 -0.0112804 -2.72322e-22)
(0.0582302 -0.0172811 1.39439e-23)
(0.0591794 -0.0230876 -1.32856e-21)
(0.0583141 -0.0284704 0)
(0.0566041 -0.0333394 -1.43736e-21)
(0.0545993 -0.0376911 0)
(0.0525963 -0.0415532 0)
(0.0507555 -0.0450393 0)
(0.0211093 -0.00038608 -3.57667e-22)
(0.0404899 -0.00428409 0)
(0.0500402 -0.0112524 0)
(0.0538907 -0.018416 -1.61588e-21)
(0.0545919 -0.0253434 4.43029e-22)
(0.0536753 -0.0317449 -3.27555e-23)
(0.0520307 -0.0375245 -7.61923e-22)
(0.0501472 -0.0426982 0)
(0.048276 -0.0473255 0)
(0.0465407 -0.0515212 0)
(0.0192889 0.000412782 0)
(0.0367161 -0.00373636 -1.33436e-21)
(0.0453685 -0.011836 1.23063e-21)
(0.0488348 -0.020131 2.13154e-21)
(0.0494662 -0.0280931 0)
(0.0486536 -0.0354035 1.68224e-21)
(0.0471952 -0.0419774 -1.56442e-21)
(0.0455216 -0.0478575 0)
(0.0438466 -0.0531306 2.39102e-21)
(0.0422631 -0.0579074 -2.3172e-21)
(0.0168972 0.000837186 0)
(0.0321216 -0.00385813 1.13968e-20)
(0.0399709 -0.0131214 0)
(0.0432255 -0.0224733 9.04131e-21)
(0.0439582 -0.0313499 0)
(0.043389 -0.0394368 -7.1282e-21)
(0.0422204 -0.0466755 0)
(0.0408317 -0.0531399 5.4768e-21)
(0.0394091 -0.0589387 -5.12945e-21)
(0.038021 -0.0641728 -4.69793e-21)
(0.0140228 0.000793232 -3.16275e-21)
(0.0268738 -0.00475945 -5.54399e-21)
(0.034032 -0.015179 -2.6263e-21)
(0.0372389 -0.0254763 -4.55251e-21)
(0.038223 -0.0351206 -4.14678e-21)
(0.0380131 -0.0438359 3.59948e-21)
(0.0372173 -0.0516033 3.2816e-21)
(0.0361737 -0.0585296 1.83026e-22)
(0.0350501 -0.0647393 5.24648e-21)
(0.0338955 -0.0703172 4.70174e-21)
(0.0107901 0.000210114 -3.37865e-21)
(0.0211717 -0.00651775 -5.83699e-21)
(0.027753 -0.018054 -1.04599e-20)
(0.0310556 -0.0291574 4.77725e-21)
(0.0324137 -0.0394047 0)
(0.0326518 -0.0485912 0)
(0.0322889 -0.0567487 -6.4043e-21)
(0.0316332 -0.0640178 -5.70103e-21)
(0.0308436 -0.070533 5.28404e-21)
(0.0299527 -0.0763551 -4.61732e-21)
(0.00734149 -0.000955473 3.32638e-21)
(0.0152324 -0.00917447 2.7838e-21)
(0.0213432 -0.0217643 -1.64461e-20)
(0.0248576 -0.0335178 2.37771e-20)
(0.026681 -0.0441934 -4.30225e-21)
(0.0274271 -0.0536899 0)
(0.0275329 -0.0620987 0)
(0.0272875 -0.0695957 2.9506e-20)
(0.0268508 -0.0763214 -2.66458e-20)
(0.026242 -0.0823032 -1.45747e-20)
(0.0038298 -0.00271647 2.81795e-20)
(0.00928057 -0.0127332 0)
(0.0150135 -0.0263008 2.16264e-20)
(0.0188249 -0.0385424 -1.9121e-20)
(0.0211739 -0.0494702 0)
(0.0224612 -0.0591159 7.40154e-21)
(0.0230467 -0.0676384 -2.04121e-20)
(0.0232094 -0.0752503 -2.37862e-20)
(0.0231207 -0.0820989 1.10653e-20)
(0.0227952 -0.0881688 1.00532e-20)
(0.000409989 -0.00505443 -5.63918e-20)
(0.00353982 -0.0171593 -6.03395e-21)
(0.00896973 -0.0316271 -1.08731e-20)
(0.0131328 -0.0442003 -2.42159e-20)
(0.0160408 -0.0552129 -8.38415e-21)
(0.0178821 -0.0648541 -7.46175e-21)
(0.0189388 -0.0733554 -8.89321e-23)
(0.0194813 -0.0809677 0)
(0.0197039 -0.0878536 0)
(0.0196404 -0.0939487 2.04936e-20)
(-0.00276937 -0.00792061 2.82129e-20)
(-0.00177759 -0.0223809 -2.4306e-20)
(0.0034057 -0.0376802 1.64549e-20)
(0.00794725 -0.0504473 3.36534e-20)
(0.0114288 -0.0613974 -8.72966e-21)
(0.0138319 -0.0708986 7.48509e-21)
(0.0153561 -0.0792533 6.65987e-21)
(0.0162555 -0.0867456 0)
(0.0167517 -0.0935687 0)
(0.0168948 -0.0996215 -1.03586e-20)
(-0.00557481 -0.0112396 -3.47325e-21)
(-0.00648 -0.0282919 3.02457e-20)
(-0.00150542 -0.0443718 -5.47447e-21)
(0.00341505 -0.0572263 0)
(0.00747196 -0.0680057 0)
(0.0104594 -0.0772776 1.5233e-20)
(0.0125055 -0.0854114 0)
(0.0138556 -0.092701 -1.20932e-20)
(0.0147398 -0.0993487 3.7121e-22)
(0.015076 -0.105208 1.06436e-20)
(-0.00789541 -0.0149162 0)
(-0.0104051 -0.034758 0)
(-0.00561991 -0.0515892 -2.08131e-20)
(-0.000350249 -0.0644644 0)
(0.004258 -0.0750224 8.28863e-21)
(0.00784141 -0.0840788 -7.6816e-21)
(0.0104805 -0.0921337 0)
(0.0124209 -0.0995964 0)
(0.0138402 -0.10686 -1.11901e-20)
(0.0144639 -0.114181 2.17261e-20)
(-0.0096331 -0.0188257 0)
(-0.0134139 -0.041611 -1.67626e-20)
(-0.00882029 -0.0591869 -4.57035e-21)
(-0.00327031 -0.0720475 -1.81606e-20)
(0.0018097 -0.0823536 -8.20601e-21)
(0.0059075 -0.09119 -2.2428e-20)
(0.00903195 -0.0991771 0)
(0.0113726 -0.106743 0)
(0.0130304 -0.114175 0)
(0.0137907 -0.121432 2.13132e-23)
(-0.0107137 -0.0228118 0)
(-0.0154015 -0.0486405 -4.43029e-21)
(-0.011018 -0.0669796 1.0691e-20)
(-0.00528727 -0.079815 1.36387e-20)
(0.000145914 -0.0898361 3.97955e-22)
(0.00463336 -0.0983924 2.63827e-22)
(0.0081037 -0.106191 1.3365e-20)
(0.0106892 -0.113614 -1.2304e-20)
(0.0124733 -0.120809 2.27333e-20)
(0.0134003 -0.127615 -2.19337e-20)
(-0.0111063 -0.0267184 -2.95676e-21)
(-0.0163114 -0.055626 1.62258e-20)
(-0.0121583 -0.0747664 2.41996e-20)
(-0.00635886 -0.0875876 -2.55312e-20)
(-0.000703785 -0.0972921 1.60904e-20)
(0.00404845 -0.105484 1.4674e-20)
(0.00775602 -0.112943 -6.68963e-21)
(0.0105133 -0.120009 2.45115e-20)
(0.0124217 -0.126748 -1.17293e-22)
(0.013549 -0.133008 -1.10157e-20)
(-0.0108157 -0.0303914 -2.67649e-21)
(-0.0161303 -0.062342 2.54322e-21)
(-0.0122168 -0.0823375 0)
(-0.00645868 -0.0951808 2.10792e-20)
(-0.000711372 -0.104554 -3.82422e-21)
(0.00418998 -0.112311 8.35397e-23)
(0.00804733 -0.119313 -6.53903e-21)
(0.0109295 -0.125894 -1.81511e-20)
(0.0129597 -0.132102 -7.16792e-24)
(0.0142765 -0.137843 1.64737e-20)
(-0.00988014 -0.0336844 0)
(-0.0148873 -0.0685664 -1.34269e-20)
(-0.0112012 -0.0894831 4.24266e-21)
(-0.00558035 -0.102413 -1.16694e-20)
(0.000139628 -0.111469 3.66455e-21)
(0.00508474 -0.118753 8.396e-23)
(0.00901484 -0.125231 5.6477e-23)
(0.0119771 -0.131267 1.20362e-20)
(0.0141059 -0.136937 -1.69251e-20)
(0.0155731 -0.14221 1.64682e-20)
(-0.00836893 -0.0364669 1.16506e-21)
(-0.0126534 -0.0740918 8.82607e-21)
(-0.00915222 -0.0960014 0)
(-0.00374044 -0.109109 1.14841e-20)
(0.0018496 -0.117898 -1.0391e-20)
(0.00674515 -0.124712 -3.3407e-21)
(0.0106783 -0.130642 9.43265e-21)
(0.0136747 -0.136117 0)
(0.015867 -0.141259 0)
(0.0174349 -0.146099 0)
(-0.00637803 -0.0386294 -1.03811e-21)
(-0.00953857 -0.0787333 -2.72818e-21)
(-0.00614325 -0.101705 3.56535e-21)
(-0.000980077 -0.115108 5.22395e-21)
(0.00440045 -0.123715 5.23695e-21)
(0.00916773 -0.130097 3.15236e-21)
(0.0130415 -0.135492 0)
(0.0160267 -0.140414 5.87938e-21)
(0.0182441 -0.145048 -2.73541e-21)
(0.0198636 -0.149471 0)
(-0.00402481 -0.0400846 0)
(-0.00568862 -0.0823332 5.3985e-21)
(-0.00227976 -0.106427 -3.56448e-21)
(0.00263437 -0.120259 -3.42775e-21)
(0.00775444 -0.128798 -7.10038e-23)
(0.0123326 -0.134823 -1.63415e-21)
(0.0160939 -0.139725 1.47148e-21)
(0.0190259 -0.144123 0)
(0.0212323 -0.148267 -2.77066e-21)
(0.0228609 -0.152277 -2.77189e-21)
(-0.00144362 -0.0407939 1.03961e-22)
(-0.00128303 -0.0847803 -1.89075e-21)
(0.00230004 -0.110027 -2.16755e-22)
(0.00700975 -0.124426 -2.51119e-23)
(0.0118528 -0.133038 -1.19575e-21)
(0.0162033 -0.138809 0)
(0.0198117 -0.143284 -1.471e-21)
(0.0226553 -0.147198 0)
(0.024821 -0.150873 0)
(0.0264263 -0.154465 0)
(0.00123118 -0.0408528 -1.83551e-22)
(0.00348171 -0.0860848 0)
(0.00743191 -0.112451 0)
(0.0120283 -0.127528 -1.02643e-21)
(0.0166165 -0.136353 4.01405e-22)
(0.0207275 -0.141989 4.4968e-23)
(0.0241589 -0.146121 -6.8833e-22)
(0.026889 -0.149601 0)
(0.028994 -0.152829 0)
(0.0305579 -0.155993 0)
(0.00389951 -0.0402983 0)
(0.00844744 -0.0862253 -6.81246e-22)
(0.0129595 -0.11362 6.28254e-22)
(0.0175622 -0.129468 1.40383e-21)
(0.0219496 -0.138651 0)
(0.0258356 -0.144285 1.43586e-21)
(0.0290853 -0.148175 -1.33528e-21)
(0.0316901 -0.151286 0)
(0.0337272 -0.154097 2.78424e-21)
(0.0352505 -0.156831 -2.6822e-21)
(0.00645655 -0.0391086 0)
(0.0134384 -0.0851818 4.39725e-21)
(0.0187104 -0.113482 0)
(0.0234675 -0.130172 4.89037e-21)
(0.0277431 -0.139855 0)
(0.0314465 -0.145631 -5.25342e-21)
(0.0345295 -0.149395 0)
(0.0370105 -0.152216 5.59411e-21)
(0.0389816 -0.154652 -5.23931e-21)
(0.0404843 -0.156966 -5.52158e-21)
(0.00880191 -0.0373392 -1.02417e-21)
(0.0182716 -0.0829962 -2.30699e-21)
(0.0244981 -0.112032 -1.03015e-21)
(0.0295815 -0.129595 -2.36538e-21)
(0.0338671 -0.139904 -2.33223e-21)
(0.037461 -0.145968 2.54529e-21)
(0.0404151 -0.149731 2.5181e-21)
(0.0427881 -0.152356 -2.28461e-22)
(0.0446982 -0.154475 5.19621e-21)
(0.0462093 -0.156385 5.51658e-21)
(0.0108542 -0.0350823 -8.27547e-22)
(0.0227782 -0.0797603 -2.03213e-21)
(0.0301362 -0.109309 -4.24242e-21)
(0.035733 -0.127727 2.03803e-21)
(0.0401783 -0.138757 0)
(0.0437637 -0.145242 0)
(0.0466486 -0.149135 -5.4115e-21)
(0.0489459 -0.15167 -5.52407e-21)
(0.05082 -0.153544 5.34773e-21)
(0.05236 -0.155084 -5.97259e-21)
(0.0125525 -0.0324406 8.03111e-22)
(0.0268106 -0.0755995 1.09791e-21)
(0.0354456 -0.10539 -5.05304e-21)
(0.0417466 -0.124589 1.03468e-20)
(0.0465223 -0.136396 -2.08874e-21)
(0.0502264 -0.143417 0)
(0.0531249 -0.147563 0)
(0.0553932 -0.15012 2.65533e-20)
(0.0572594 -0.151836 -2.66609e-20)
(0.0588624 -0.153067 -1.75063e-20)
(0.0138569 -0.0295215 4.77864e-21)
(0.0302478 -0.0706643 0)
(0.0402617 -0.100384 7.24274e-21)
(0.047448 -0.120236 -8.08579e-21)
(0.0527374 -0.132826 0)
(0.0567095 -0.140466 4.99737e-21)
(0.0597259 -0.144977 -1.44539e-20)
(0.0620245 -0.147666 -2.12042e-20)
(0.0639093 -0.149325 1.01332e-20)
(0.0656158 -0.150322 1.1057e-20)
(0.0147491 -0.0264329 -9.10396e-21)
(0.0329991 -0.065124 -1.6107e-21)
(0.044441 -0.094435 -3.09755e-21)
(0.0526712 -0.114755 -9.00022e-21)
(0.0586602 -0.128083 -4.52939e-21)
(0.0630662 -0.136385 -4.76652e-21)
(0.0663244 -0.141345 1.92026e-22)
(0.0687222 -0.144262 0)
(0.0706362 -0.145965 0)
(0.0724597 -0.146825 2.26081e-20)
(0.0152311 -0.0232776 4.32538e-21)
(0.0350073 -0.059158 -5.39054e-21)
(0.0478671 -0.0877128 4.6652e-21)
(0.0572657 -0.108272 1.28838e-20)
(0.0641324 -0.122235 -3.65674e-21)
(0.0691498 -0.131192 5.00152e-21)
(0.072797 -0.136644 5.18457e-21)
(0.0753831 -0.139856 0)
(0.0773093 -0.14169 0)
(0.0791802 -0.14255 -1.09955e-20)
(0.0153239 -0.0201514 -4.89194e-22)
(0.0362489 -0.0529485 6.8679e-21)
(0.0504553 -0.0804079 -1.36156e-21)
(0.0611026 -0.100942 0)
(0.0690069 -0.115389 0)
(0.074818 -0.124939 8.72794e-21)
(0.0790184 -0.130862 0)
(0.0818897 -0.134315 -1.0551e-20)
(0.0836893 -0.13614 -1.05713e-21)
(0.0851732 -0.136844 1.04884e-20)
(0.015064 -0.0171357 0)
(0.0367321 -0.0466664 0)
(0.0521527 -0.0727162 -5.87119e-21)
(0.0640768 -0.0929446 0)
(0.0731541 -0.107683 4.15655e-21)
(0.0799648 -0.117723 -3.85202e-21)
(0.0850117 -0.124047 0)
(0.0887012 -0.1276 0)
(0.0914015 -0.129256 -1.11387e-20)
(0.0943194 -0.129965 2.1892e-20)
(0.014482 -0.0142854 0)
(0.0364784 -0.0404584 -3.81169e-21)
(0.05293 -0.0648292 -1.30584e-21)
(0.0661031 -0.0844758 -6.56591e-21)
(0.076444 -0.0993055 -3.27599e-21)
(0.0844286 -0.109746 -1.18697e-20)
(0.0905504 -0.116526 0)
(0.0953212 -0.120471 0)
(0.0992242 -0.122597 0)
(0.103169 -0.124047 2.40996e-22)
(0.0136104 -0.0116469 0)
(0.0355291 -0.0344698 -1.57252e-21)
(0.0527863 -0.0569473 2.90874e-21)
(0.0671209 -0.075751 5.07843e-21)
(0.0787516 -0.0904572 1.24748e-22)
(0.0880135 -0.101184 1.86836e-22)
(0.0953377 -0.10843 8.61836e-21)
(0.101245 -0.112897 -9.27128e-21)
(0.106241 -0.115578 2.0529e-20)
(0.110968 -0.117445 -2.13379e-20)
(0.0125017 -0.00926637 -5.18899e-22)
(0.0339548 -0.0288303 3.88989e-21)
(0.0517572 -0.0492569 7.26649e-21)
(0.067107 -0.0669772 -1.00941e-20)
(0.0799855 -0.0813296 6.60436e-21)
(0.0905582 -0.0921754 7.29586e-21)
(0.0991464 -0.0997982 -4.67624e-21)
(0.106203 -0.104749 1.90384e-20)
(0.112179 -0.107905 8.94031e-22)
(0.117555 -0.110045 -9.88971e-21)
(0.0112132 -0.00717583 -6.47384e-22)
(0.031844 -0.0236452 6.15068e-22)
(0.0499091 -0.0419233 0)
(0.0660782 -0.05835 8.30962e-21)
(0.0801008 -0.0721132 -1.64069e-21)
(0.0919576 -0.0828755 3.32855e-22)
(0.101829 -0.090727 -3.85495e-21)
(0.110058 -0.0960609 -1.38687e-20)
(0.117005 -0.0996113 -7.2035e-22)
(0.123024 -0.101987 1.55354e-20)
(0.00979963 -0.00539191 0)
(0.0292947 -0.018992 -4.63339e-21)
(0.0473328 -0.0350858 1.46411e-21)
(0.0640881 -0.0500496 -5.12848e-21)
(0.0790981 -0.0629993 1.64697e-21)
(0.0921582 -0.0734585 -2.51847e-22)
(0.103291 -0.0813582 -2.28582e-22)
(0.112706 -0.0869404 8.9891e-21)
(0.120657 -0.0907848 -1.40413e-20)
(0.127382 -0.0933576 1.45474e-20)
(0.00831207 -0.00391862 3.2338e-22)
(0.0264098 -0.014923 3.04551e-21)
(0.0441381 -0.0288565 0)
(0.0612234 -0.0422361 5.14555e-21)
(0.0770205 -0.0541719 -5.21713e-21)
(0.0911518 -0.0641074 -1.99932e-21)
(0.103479 -0.0718534 5.86716e-21)
(0.114065 -0.0775195 0)
(0.123051 -0.0815327 0)
(0.130557 -0.0842436 0)
(0.00679688 -0.00274982 -3.90602e-22)
(0.0232923 -0.0114666 -1.32025e-21)
(0.0404473 -0.023319 1.71962e-21)
(0.057597 -0.0350449 2.66429e-21)
(0.0739487 -0.0458016 2.70978e-21)
(0.0889743 -0.0550047 1.85606e-21)
(0.102383 -0.0623868 0)
(0.11409 -0.0679519 4.35918e-21)
(0.124116 -0.071988 -1.94865e-21)
(0.132467 -0.0747556 0)
(0.00529433 -0.00187134 0)
(0.0200402 -0.00863 2.58291e-21)
(0.0363876 -0.018529 -1.71926e-21)
(0.0533404 -0.0285846 -1.75043e-21)
(0.0699952 -0.0380397 -4.08857e-23)
(0.0857025 -0.0463262 -9.74854e-22)
(0.100037 -0.0531391 9.57239e-22)
(0.112774 -0.0584084 0)
(0.123813 -0.0623038 -2.13383e-21)
(0.133043 -0.0650188 -2.34475e-21)
(0.00384256 -0.00126298 5.11196e-23)
(0.0167494 -0.00640254 -1.01071e-21)
(0.0320906 -0.0145165 -1.28184e-22)
(0.0486005 -0.022936 -1.85987e-23)
(0.0653003 -0.0310153 -6.89446e-22)
(0.0814511 -0.0382361 0)
(0.0965186 -0.0442917 -9.5697e-22)
(0.110153 -0.0490707 0)
(0.122136 -0.052648 0)
(0.132239 -0.0551706 0)
(0.00248843 -0.000899601 -1.10113e-22)
(0.0135297 -0.00475743 0)
(0.0277103 -0.0112867 0)
(0.0435587 -0.018152 -7.14915e-22)
(0.060052 -0.0248321 2.60288e-22)
(0.0763943 -0.0308815 3.81908e-23)
(0.0919708 -0.0360208 -4.54304e-22)
(0.10633 -0.0401267 0)
(0.119142 -0.0432032 0)
(0.130067 -0.045364 0)
(0.00124973 -0.000751937 0)
(0.0104458 -0.00365031 -5.2357e-22)
(0.0233567 -0.00881182 4.82816e-22)
(0.0383579 -0.0142401 9.59192e-22)
(0.0544113 -0.0195436 0)
(0.0706935 -0.0243632 9.81306e-22)
(0.0865399 -0.0284664 -9.12538e-22)
(0.101422 -0.0317425 0)
(0.114915 -0.0341459 2.0599e-21)
(0.126572 -0.0357623 -1.96756e-21)
(0.000127601 -0.000791778 0)
(0.00753917 -0.00303257 4.35593e-21)
(0.0191151 -0.00705217 0)
(0.0331245 -0.0111898 4.09294e-21)
(0.0485357 -0.0151822 0)
(0.0645237 -0.0187614 -3.86009e-21)
(0.0804012 -0.0217534 0)
(0.0955916 -0.0240782 3.96363e-21)
(0.109587 -0.0256595 -3.71219e-21)
(0.121852 -0.0265523 -3.97679e-21)
(-0.000869355 -0.000992036 -1.11657e-21)
(0.0048546 -0.00285117 -2.15422e-21)
(0.0150714 -0.00595468 -1.05201e-21)
(0.0279844 -0.00896832 -1.96912e-21)
(0.0425859 -0.011751 -1.96175e-21)
(0.0580691 -0.0141249 1.86303e-21)
(0.0737495 -0.0159792 1.85704e-21)
(0.0890279 -0.0172745 -1.38567e-22)
(0.103335 -0.0179185 3.67508e-21)
(0.116051 -0.0179258 3.97747e-21)
(-0.00173334 -0.00132589 -1.12372e-21)
(0.00242931 -0.00304806 -2.37401e-21)
(0.0112987 -0.00545215 -4.64887e-21)
(0.0230488 -0.00751877 2.10331e-21)
(0.036709 -0.009221 0)
(0.0515068 -0.0104663 0)
(0.0667813 -0.0112054 -3.94604e-21)
(0.0819367 -0.0114435 -3.8848e-21)
(0.0963613 -0.0110802 3.73939e-21)
(0.10936 -0.0100734 -4.33561e-21)
(-0.00245973 -0.00176666 1.22628e-21)
(0.000290647 -0.00356081 1.30011e-21)
(0.00785335 -0.00546553 -7.147e-21)
(0.0184072 -0.00676255 1.12176e-20)
(0.0310286 -0.00753118 -2.07316e-21)
(0.0449916 -0.00775816 0)
(0.0596764 -0.00745208 0)
(0.0745158 -0.00666122 1.91126e-20)
(0.088879 -0.00527957 -1.8664e-20)
(0.102001 -0.00318269 -1.19363e-20)
(-0.00304612 -0.00228788 1.01429e-20)
(-0.00154404 -0.00432372 0)
(0.00477448 -0.00590519 9.43065e-21)
(0.0141254 -0.00660115 -8.97365e-21)
(0.0256392 -0.00658896 0)
(0.0386446 -0.00592985 4.15883e-21)
(0.0525782 -0.00468757 -1.17661e-20)
(0.0669274 -0.00295303 -1.53138e-20)
(0.0810754 -0.000615679 7.24587e-21)
(0.0941967 0.00257018 7.47237e-21)
(-0.00349173 -0.00286205 -2.07346e-20)
(-0.00306598 -0.00526858 -2.64205e-21)
(0.00208661 -0.00667405 -5.10631e-21)
(0.0102478 -0.00691891 -1.17999e-20)
(0.0206054 -0.00627061 -4.46311e-21)
(0.0325457 -0.00486205 -4.30418e-21)
(0.0455721 -0.00281392 -1.08646e-22)
(0.0592547 -0.000267545 0)
(0.0730461 0.00287896 0)
(0.0861042 0.00704961 1.48708e-20)
(-0.00379701 -0.00346083 1.0592e-20)
(-0.0042723 -0.00632544 -1.09464e-20)
(-0.000197651 -0.00767038 7.47065e-21)
(0.00680186 -0.00758733 1.6721e-20)
(0.0159691 -0.00642328 -4.4829e-21)
(0.0267396 -0.00437978 4.12427e-21)
(0.0386744 -0.00164188 4.01085e-21)
(0.0514334 0.00157112 0)
(0.0645985 0.0052837 0)
(0.0774501 0.0101498 -7.21447e-21)
(-0.00396441 -0.00405573 -1.40665e-21)
(-0.00516644 -0.00742587 1.37616e-20)
(-0.00207402 -0.00879385 -2.59435e-21)
(0.00380754 -0.00847409 0)
(0.0117702 -0.00687282 0)
(0.0212779 -0.00424234 8.61637e-21)
(0.0319026 -0.000818791 0)
(0.0433093 0.00308844 -7.86251e-21)
(0.055145 0.00725473 -7.34672e-23)
(0.0669757 0.0123105 7.12356e-21)
(-0.00399902 -0.0046196 0)
(-0.00575762 -0.00850744 0)
(-0.00354445 -0.00995523 -1.09422e-20)
(0.00128416 -0.00946317 0)
(0.00807015 -0.00746354 4.77916e-21)
(0.016295 -0.00420751 -4.42893e-21)
(0.0255008 0.0001241 0)
(0.0352446 0.00539351 0)
(0.0451381 0.0115779 -7.98839e-21)
(0.0550652 0.0194759 1.55928e-20)
(-0.00390633 -0.00512424 0)
(-0.00605912 -0.00951552 -8.99125e-21)
(-0.004616 -0.0110839 -3.03831e-21)
(-0.000751343 -0.0104768 -1.05288e-20)
(0.00494291 -0.00812767 -4.96081e-21)
(0.0119966 -0.00426275 -1.37914e-20)
(0.0199986 0.0009975 0)
(0.0285909 0.00762241 0)
(0.037627 0.0156385 0)
(0.0471943 0.0252901 1.80789e-22)
(-0.00369625 -0.00554162 0)
(-0.00609208 -0.010403 -3.38292e-21)
(-0.0053049 -0.0121279 5.40367e-21)
(-0.00229956 -0.0114709 7.88674e-21)
(0.00241229 -0.00885589 -2.44581e-22)
(0.00842913 -0.00448972 -2.30377e-22)
(0.0154138 0.00152482 8.93777e-21)
(0.0231024 0.00914352 -8.48704e-21)
(0.031422 0.0182911 1.63791e-20)
(0.040314 0.0288162 -1.60425e-20)
(-0.00338635 -0.0058529 -1.61412e-21)
(-0.00588528 -0.0111379 9.15921e-21)
(-0.00563585 -0.0130546 1.44207e-20)
(-0.00337791 -0.0124228 -1.65516e-20)
(0.000462367 -0.00965352 1.00407e-20)
(0.00555485 -0.0049452 9.42276e-21)
(0.0116289 0.00158725 -4.44491e-21)
(0.0184776 0.00984018 1.71747e-20)
(0.02602 0.01962 3.78799e-22)
(0.0340813 0.0305819 -8.01792e-21)
(-0.00299754 -0.00604653 -1.66927e-21)
(-0.00547162 -0.0117044 1.58603e-21)
(-0.00563667 -0.0138479 0)
(-0.00400842 -0.0133228 1.38686e-20)
(-0.000929541 -0.0105235 -2.60083e-21)
(0.00333735 -0.00564627 -2.74533e-23)
(0.00857737 0.0011743 -4.60701e-21)
(0.0146196 0.00978141 -1.33338e-20)
(0.0213598 0.0199062 8.91404e-25)
(0.0285677 0.0311244 1.25256e-20)
(-0.00255338 -0.0061198 0)
(-0.00488413 -0.0121009 -9.86905e-21)
(-0.00533212 -0.0145058 3.0282e-21)
(-0.00420875 -0.0141687 -8.6551e-21)
(-0.00177873 -0.0114635 2.66027e-21)
(0.00175603 -0.00658508 -9.52448e-23)
(0.00622804 0.000317058 -9.18583e-23)
(0.0114928 0.0090541 8.99535e-21)
(0.0174279 0.0193254 -1.29309e-20)
(0.0237897 0.0306895 1.26574e-20)
(-0.0020768 -0.00608076 8.70257e-22)
(-0.00415094 -0.0123393 6.58501e-21)
(-0.00474022 -0.0150381 0)
(-0.00398653 -0.0149628 8.71657e-21)
(-0.00208618 -0.0124653 -8.25577e-21)
(0.00081129 -0.00773624 -2.59914e-21)
(0.00457956 -0.000931549 7.22981e-21)
(0.00909848 0.00774939 0)
(0.014241 0.0180057 0)
(0.0197756 0.0294149 0)
(-0.00158701 -0.00594604 -8.88119e-22)
(-0.00329303 -0.0124451 -2.56456e-21)
(-0.0038686 -0.0154636 3.19241e-21)
(-0.0033356 -0.01571 4.49886e-21)
(-0.00183456 -0.0135136 4.15178e-21)
(0.000528739 -0.0090594 2.66503e-21)
(0.00366445 -0.00250127 0)
(0.00747884 0.00596785 4.75832e-21)
(0.0118553 0.0160682 -2.18657e-21)
(0.0165872 0.0274172 0)
(-0.00109769 -0.00574 0)
(-0.00232093 -0.0124547 5.13494e-21)
(-0.00271241 -0.0158079 -3.19172e-21)
(-0.00223535 -0.0164159 -2.99822e-21)
(-0.000988178 -0.0145866 -1.19276e-24)
(0.000957973 -0.0105012 -1.33137e-21)
(0.00354584 -0.00430666 1.28655e-21)
(0.00671104 0.00382183 0)
(0.0103609 0.0136393 -2.26966e-21)
(0.014317 0.0248169 -2.24718e-21)
(-0.000615105 -0.00549677 1.13543e-22)
(-0.00123297 -0.0124144 -1.9457e-21)
(-0.00125448 -0.016102 -2.0977e-22)
(-0.000652722 -0.0170846 -8.22963e-24)
(0.000502411 -0.0156552 -1.07858e-21)
(0.00216579 -0.0119956 0)
(0.00430887 -0.00624611 -1.28618e-21)
(0.00689823 0.00144097 0)
(0.00987552 0.0108642 0)
(0.0130882 0.0217569 0)
)
;
boundaryField
{
inlet
{
type uniformFixedValue;
uniformValue constant (1 0 0);
value uniform (1 0 0);
}
outlet
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
40
(
(0.0139009 0.0193655 0)
(0.0204064 0.0842049 0)
(0.0228209 0.146222 0)
(0.0214605 0.208188 0)
(0.0187932 0.276695 0)
(0.0158394 0.351803 0)
(0.0112191 0.433531 0)
(0.00728839 0.529905 0)
(0.000895352 0.647273 0)
(0.000188046 0.755818 0)
(0 -0.0153043 0)
(0 -0.0290528 0)
(0 -0.0418178 0)
(0 -0.0535427 0)
(0 -0.0642092 0)
(0 -0.0738347 0)
(0 -0.082466 0)
(0 -0.0901711 0)
(0 -0.0970304 0)
(0 -0.10313 0)
(0 -0.108557 0)
(0 -0.113399 0)
(0 -0.117738 0)
(0 -0.121654 0)
(0 -0.125227 0)
(0 -0.128533 0)
(0 -0.131644 0)
(0 -0.134635 0)
(0 -0.137577 0)
(0 -0.140541 0)
(0 -0.147792 0)
(0 -0.1643 0)
(0 -0.188378 0)
(0 -0.22188 0)
(0 -0.264665 0)
(0 -0.313369 0)
(0 -0.361568 0)
(0 -0.40207 0)
(0 -0.430113 0)
(0 -0.444167 0)
)
;
}
cylinder
{
type fixedValue;
value uniform (0 0 0);
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
e2d0408700a2ad1a0b8fe016a0974f09f6d3c9c3 | 15bc23ace840d3441e69b1af61e75079307af8eb | /libgramtools/include/quasimap/coverage/grouped_allele_counts.hpp | 4aab2bcfae52f465da29a39bbe2a8200bbc05f80 | [
"MIT"
] | permissive | ffranr/gramtools | 641fce0fdd93b4f6ffbdc996250ac6d0a76788f0 | b909fff2b759be6ff6c32e8e4c262b51b0902832 | refs/heads/master | 2021-10-10T08:41:51.262314 | 2018-12-31T15:12:07 | 2018-12-31T15:12:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,265 | hpp | #include "search/search_types.hpp"
#include "quasimap/coverage/types.hpp"
#ifndef GRAMTOOLS_GROUPED_ALLELE_COUNTS_HPP
#define GRAMTOOLS_GROUPED_ALLELE_COUNTS_HPP
namespace gram {
namespace coverage {
namespace generate {
SitesGroupedAlleleCounts grouped_allele_counts(const PRG_Info &prg_info);
}
namespace record {
void grouped_allele_counts(Coverage &coverage,
const SearchStates &search_states);
}
namespace dump {
void grouped_allele_counts(const Coverage &coverage,
const Parameters ¶meters);
}
}
AlleleGroupHash hash_allele_groups(const SitesGroupedAlleleCounts &sites);
std::string dump_site(const AlleleGroupHash &allele_ids_groups_hash,
const GroupedAlleleCounts &site);
std::string dump_site_counts(const AlleleGroupHash &allele_ids_groups_hash,
const SitesGroupedAlleleCounts &sites);
std::string dump_allele_groups(const AlleleGroupHash &allele_ids_groups_hash);
std::string dump_grouped_allele_counts(const SitesGroupedAlleleCounts &sites);
}
#endif //GRAMTOOLS_GROUPED_ALLELE_COUNTS_HPP
| [
"[email protected]"
] | |
80a8b8ff7aaa8ea45522e4179cbcdad15ff1ee0c | 2c65a4f89304e6888524fec2f1b7687dac3b3017 | /BinaryTrees/build_tree_pre_inorder.cpp | 5fc6c46ec6175867a39e29b85a436326bc79ab94 | [] | no_license | AdityaKG-169/cpp | b51719d223b83658f99b7ff3d28cecbde13aa4b2 | eb18bd18f9ed8fa4064384e126b28d042d00e043 | refs/heads/main | 2023-07-01T15:04:04.559307 | 2021-08-10T17:22:22 | 2021-08-10T17:22:22 | 385,651,531 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,327 | cpp | #include <bits/stdc++.h>
using namespace std;
class Node
{
public:
int data;
Node *left;
Node *right;
Node(int x)
{
data = x;
left = NULL;
right = NULL;
}
};
int arrSearch(int arr[], int start, int end, int val)
{
for (int i = start; i <= end; i++)
{
if (arr[i] == val)
{
return i;
}
}
return -1;
}
Node *buildTree(int preorder[], int inorder[], int start, int end)
{
if (start > end)
{
return NULL;
}
static int idx = 0;
int val = preorder[idx];
idx++;
Node *node = new Node(val);
int curr = arrSearch(inorder, start, end, val);
if (start != curr)
{
node->left = buildTree(preorder, inorder, start, curr - 1);
}
if (end != curr)
{
node->right = buildTree(preorder, inorder, curr + 1, end);
}
return node;
}
void postorderTrav(Node *root)
{
if (root == NULL)
return;
postorderTrav(root->left);
postorderTrav(root->right);
cout << root->data << " ";
return;
}
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 preorder[] = {1, 2, 4, 5, 3, 6, 7};
int inorder[] = {4, 2, 5, 1, 6, 3, 7};
int start = 0;
int end = sizeof(preorder) / 4 - 1;
Node *root = buildTree(preorder, inorder, start, end);
postorderTrav(root);
return 0;
}
| [
"[email protected]"
] | |
c920fa0704de73befce83f6ccdf2df0f48d1139d | ed45b46dd80ce37f82405c867aceb97f5dc5bcf2 | /src/SuplaWebPageLimitSwitch.cpp | 4cdd2f21ea952bc04c991b1b5f27a8b93a055e57 | [] | no_license | scorpion2005/GUI-Generic | 1209e9147f7a3d861f5b158af411a21dacd05d5e | 3b994e9a8ddf5dba9e53a6ba67ebdfd571431250 | refs/heads/master | 2023-05-27T13:11:53.184589 | 2021-06-15T10:57:18 | 2021-06-15T10:57:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,535 | cpp | #include "SuplaWebPageLimitSwitch.h"
#ifdef SUPLA_LIMIT_SWITCH
void createWebPageLimitSwitch() {
WebServer->httpServer->on(getURL(PATH_SWITCH), [&]() {
if (!WebServer->isLoggedIn()) {
return;
}
if (WebServer->httpServer->method() == HTTP_GET)
handleLimitSwitch();
else
handleLimitSwitchSave();
});
}
void handleLimitSwitch(int save) {
uint8_t nr, countFreeGpio;
WebServer->sendHeaderStart();
webContentBuffer += SuplaSaveResult(save);
webContentBuffer += SuplaJavaScript(PATH_SWITCH);
addForm(webContentBuffer, F("post"), PATH_SWITCH);
addFormHeader(webContentBuffer, S_GPIO_SETTINGS_FOR_LIMIT_SWITCH);
if (ConfigESP->checkActiveMCP23017(FUNCTION_LIMIT_SWITCH)) {
countFreeGpio = 32;
}
else {
countFreeGpio = ConfigESP->countFreeGpio(FUNCTION_LIMIT_SWITCH);
}
addNumberBox(webContentBuffer, INPUT_MAX_LIMIT_SWITCH, S_QUANTITY, KEY_MAX_LIMIT_SWITCH, countFreeGpio);
for (nr = 1; nr <= ConfigManager->get(KEY_MAX_LIMIT_SWITCH)->getValueInt(); nr++) {
if (ConfigESP->checkActiveMCP23017(FUNCTION_LIMIT_SWITCH)) {
addListMCP23017GPIOBox(webContentBuffer, INPUT_LIMIT_SWITCH_GPIO, S_LIMIT_SWITCH, FUNCTION_LIMIT_SWITCH, nr);
}
else {
addListGPIOBox(webContentBuffer, INPUT_LIMIT_SWITCH_GPIO, S_LIMIT_SWITCH, FUNCTION_LIMIT_SWITCH, nr);
}
}
addFormHeaderEnd(webContentBuffer);
addButtonSubmit(webContentBuffer, S_SAVE);
addFormEnd(webContentBuffer);
addButton(webContentBuffer, S_RETURN, PATH_DEVICE_SETTINGS);
WebServer->sendHeaderEnd();
}
void handleLimitSwitchSave() {
uint8_t nr, last_value;
last_value = ConfigManager->get(KEY_MAX_LIMIT_SWITCH)->getValueInt();
for (nr = 1; nr <= last_value; nr++) {
if (ConfigESP->checkActiveMCP23017(FUNCTION_LIMIT_SWITCH)) {
if (!WebServer->saveGpioMCP23017(INPUT_LIMIT_SWITCH_GPIO, FUNCTION_LIMIT_SWITCH, nr, INPUT_MAX_LIMIT_SWITCH)) {
handleLimitSwitch(6);
return;
}
}
else {
if (!WebServer->saveGPIO(INPUT_LIMIT_SWITCH_GPIO, FUNCTION_LIMIT_SWITCH, nr, INPUT_MAX_LIMIT_SWITCH)) {
handleLimitSwitch(6);
return;
}
}
}
if (strcmp(WebServer->httpServer->arg(INPUT_MAX_LIMIT_SWITCH).c_str(), "") != 0) {
ConfigManager->set(KEY_MAX_LIMIT_SWITCH, WebServer->httpServer->arg(INPUT_MAX_LIMIT_SWITCH).c_str());
}
switch (ConfigManager->save()) {
case E_CONFIG_OK:
handleLimitSwitch(1);
break;
case E_CONFIG_FILE_OPEN:
handleLimitSwitch(2);
break;
}
}
#endif | [
"[email protected]"
] | |
dea521e1c2fffe5bbc5de547ae2deed1a6dfd73f | 00306216906858239223b8bbe999c8fa36e10739 | /aws-cpp-sdk-workdocs/include/aws/workdocs/model/DescribeActivitiesRequest.h | 537d62c4712638f66f80636a370808421688cf5c | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | pcacjr/aws-sdk-cpp | ceea79f54b5656b1e6a7257aa8d37fb6d2609951 | 90eb0ee4be28ac23efc10c8eedf21235f9a37402 | refs/heads/master | 2021-01-19T05:48:16.578394 | 2017-09-25T00:36:13 | 2017-09-25T00:36:13 | 87,451,109 | 0 | 0 | null | 2017-04-06T16:26:57 | 2017-04-06T16:26:57 | null | UTF-8 | C++ | false | false | 13,710 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
#pragma once
#include <aws/workdocs/WorkDocs_EXPORTS.h>
#include <aws/workdocs/WorkDocsRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/DateTime.h>
#include <utility>
namespace Aws
{
namespace Http
{
class URI;
} //namespace Http
namespace WorkDocs
{
namespace Model
{
/**
*/
class AWS_WORKDOCS_API DescribeActivitiesRequest : public WorkDocsRequest
{
public:
DescribeActivitiesRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() override { return "DescribeActivities"; }
Aws::String SerializePayload() const override;
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline const Aws::String& GetAuthenticationToken() const{ return m_authenticationToken; }
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline void SetAuthenticationToken(const Aws::String& value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken = value; }
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline void SetAuthenticationToken(Aws::String&& value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken = std::move(value); }
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline void SetAuthenticationToken(const char* value) { m_authenticationTokenHasBeenSet = true; m_authenticationToken.assign(value); }
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline DescribeActivitiesRequest& WithAuthenticationToken(const Aws::String& value) { SetAuthenticationToken(value); return *this;}
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline DescribeActivitiesRequest& WithAuthenticationToken(Aws::String&& value) { SetAuthenticationToken(std::move(value)); return *this;}
/**
* <p>Amazon WorkDocs authentication token. This field should not be set when using
* administrative API actions, as in accessing the API using AWS credentials.</p>
*/
inline DescribeActivitiesRequest& WithAuthenticationToken(const char* value) { SetAuthenticationToken(value); return *this;}
/**
* <p>The timestamp that determines the starting time of the activities; the
* response includes the activities performed after the specified timestamp.</p>
*/
inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; }
/**
* <p>The timestamp that determines the starting time of the activities; the
* response includes the activities performed after the specified timestamp.</p>
*/
inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
/**
* <p>The timestamp that determines the starting time of the activities; the
* response includes the activities performed after the specified timestamp.</p>
*/
inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
/**
* <p>The timestamp that determines the starting time of the activities; the
* response includes the activities performed after the specified timestamp.</p>
*/
inline DescribeActivitiesRequest& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;}
/**
* <p>The timestamp that determines the starting time of the activities; the
* response includes the activities performed after the specified timestamp.</p>
*/
inline DescribeActivitiesRequest& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;}
/**
* <p>The timestamp that determines the end time of the activities; the response
* includes the activities performed before the specified timestamp.</p>
*/
inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; }
/**
* <p>The timestamp that determines the end time of the activities; the response
* includes the activities performed before the specified timestamp.</p>
*/
inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; }
/**
* <p>The timestamp that determines the end time of the activities; the response
* includes the activities performed before the specified timestamp.</p>
*/
inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); }
/**
* <p>The timestamp that determines the end time of the activities; the response
* includes the activities performed before the specified timestamp.</p>
*/
inline DescribeActivitiesRequest& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;}
/**
* <p>The timestamp that determines the end time of the activities; the response
* includes the activities performed before the specified timestamp.</p>
*/
inline DescribeActivitiesRequest& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;}
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline const Aws::String& GetOrganizationId() const{ return m_organizationId; }
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline void SetOrganizationId(const Aws::String& value) { m_organizationIdHasBeenSet = true; m_organizationId = value; }
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline void SetOrganizationId(Aws::String&& value) { m_organizationIdHasBeenSet = true; m_organizationId = std::move(value); }
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline void SetOrganizationId(const char* value) { m_organizationIdHasBeenSet = true; m_organizationId.assign(value); }
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithOrganizationId(const Aws::String& value) { SetOrganizationId(value); return *this;}
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithOrganizationId(Aws::String&& value) { SetOrganizationId(std::move(value)); return *this;}
/**
* <p>The ID of the organization. This is a mandatory parameter when using
* administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithOrganizationId(const char* value) { SetOrganizationId(value); return *this;}
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline const Aws::String& GetUserId() const{ return m_userId; }
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; }
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); }
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); }
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithUserId(const Aws::String& value) { SetUserId(value); return *this;}
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;}
/**
* <p>The ID of the user who performed the action. The response includes activities
* pertaining to this user. This is an optional parameter and is only applicable
* for administrative API (SigV4) requests.</p>
*/
inline DescribeActivitiesRequest& WithUserId(const char* value) { SetUserId(value); return *this;}
/**
* <p>The maximum number of items to return.</p>
*/
inline int GetLimit() const{ return m_limit; }
/**
* <p>The maximum number of items to return.</p>
*/
inline void SetLimit(int value) { m_limitHasBeenSet = true; m_limit = value; }
/**
* <p>The maximum number of items to return.</p>
*/
inline DescribeActivitiesRequest& WithLimit(int value) { SetLimit(value); return *this;}
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline const Aws::String& GetMarker() const{ return m_marker; }
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline DescribeActivitiesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline DescribeActivitiesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
/**
* <p>The marker for the next set of results. (You received this marker from a
* previous call.)</p>
*/
inline DescribeActivitiesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
private:
Aws::String m_authenticationToken;
bool m_authenticationTokenHasBeenSet;
Aws::Utils::DateTime m_startTime;
bool m_startTimeHasBeenSet;
Aws::Utils::DateTime m_endTime;
bool m_endTimeHasBeenSet;
Aws::String m_organizationId;
bool m_organizationIdHasBeenSet;
Aws::String m_userId;
bool m_userIdHasBeenSet;
int m_limit;
bool m_limitHasBeenSet;
Aws::String m_marker;
bool m_markerHasBeenSet;
};
} // namespace Model
} // namespace WorkDocs
} // namespace Aws
| [
"[email protected]"
] | |
fdcf501113bff52dd121be806c29c4c614f8783a | c865c8cb71043e1c81435a507a40420e47d08bd9 | /Date_Basic/Date.h | ba289916f7c513a3a5051b362e2504b4d772fe23 | [] | no_license | gleibson/Date_Basic | 28b5adca9361c453f3b3601e9fe4cbd4aa9962db | e8cec2de45bff7a2d4827f8c80e1c2e401877ebc | refs/heads/master | 2021-01-11T01:55:06.053893 | 2016-10-13T18:30:03 | 2016-10-13T18:30:03 | 70,835,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | h |
class Date
{
private:
char m_day;
char m_month;
short m_year;
short m_yearMin, m_yearMax;
int m_idailyroutine;
bool m_OK;
public:
enum {YEAR_MIN_DEF= 1, YEAR_MAX_DEF=9999};
enum { FEBRUARY=2, JULY = 7 };
Date(); /*Date(Date this)*/ //constructor
void Change(char day, char month, short year); /*Change(Date this, char day, char month, short year)*/
void Validation();
char lastDayMonth() const; /*Date(Date this)*/
bool leapYear() const; /*Date(Date this)*/
void Print() const;
}; | [
"[email protected]"
] | |
9da081d2ada04997e2fe2a718d5d0ad2d26ca9c8 | 8cc355e8465211f4384655f55472d50d080ce1ac | /file/async.h | 94030f6e99db4d30de918e5c0034ed38c6fa49b4 | [
"CC0-1.0"
] | permissive | pgrawehr/golgotha | 47fb1e47c9a2e7f24e0ce7dde188f884a5504438 | 94e0b448d7e7224e56c27b029dec80ca710ceb8b | refs/heads/master | 2023-06-29T12:04:11.302599 | 2022-03-19T08:09:59 | 2022-03-19T08:09:59 | 40,831,531 | 7 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 3,680 | h | /********************************************************************** <BR>
This file is part of Crack dot Com's free source code release of
Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
information about compiling & licensing issues visit this URL</a>
<PRE> If that doesn't help, contact Jonathan Clark at
[email protected] (Subject should have "GOLG" in it)
***********************************************************************/
//! \file
//! Asynchrounous file operations class definition.
#ifndef I4_ASYNC_READ_HH
#define I4_ASYNC_READ_HH
#include "memory/dynque.h"
#include "threads/threads.h"
#include "init/init.h"
#include "file/file.h"
//! Asynchrounous file reader thread.
//! This class is a portable implementation of async file reading.
//! A thread gets created during init() which runs as long as
//! there is stuff to read and then blocks for a signal from the main
//! program, so if nothing needs reading, it runs efficiently. Request
//! to be read are queued up. The request are processed
//! serially. If you want to read from multiple devices in parallel,
//! you should create two i4_async_reads, one for each device.
//! Golgotha currently uses two such threads at once, one for high-priority data (sound data)
//! and the other for high-overhead data (such as textures).
//! Under most circumstances, you won't have to cope directly with this class, but use the
//! file's i4_file_class::async_read() operation instead.
class i4_async_reader :
public i4_init_class
{
volatile i4_bool stop;
i4_signal_object sig;
i4_bool emulation;
public:
struct read_request
{
sw32 fd;
w32 size;
void * buffer;
i4_file_class::async_callback callback;
void * context;
w32 prio;
int caller_id; //identifies the caller, simplfies debugging
read_request(sw32 fd, void * buffer,
w32 size, i4_file_class::async_callback callback,
void * context, w32 prio, int caller_id)
: fd(fd),
buffer(buffer),
size(size),
callback(callback),
context(context),
prio(prio),
caller_id(caller_id) {
}
read_request() {
;
}
};
protected:
enum {
MAX_REQUEST=32
};
enum {
STACK_SIZE=8096
};
i4_critical_section_class que_lock;
i4_dynamic_que<read_request, 0, MAX_REQUEST> request_que;
//! Static member that counts the number of pending requests.
//! This will be used when the map is unloaded, since we must not kill the texture manager
//! or the loader thread while it still has tasks pending.
static volatile w32 num_pending;
static i4_critical_section_class static_pending_lock;
static i4_array<i4_async_reader *> readers;
void emulate_speeds(read_request &r);
protected:
virtual w32 read(sw32 fd, void * buffer, w32 count) = 0;
#ifdef _WINDOWS
DWORD hPRIVATE_thread;
#else
w32 hPRIVATE_thread;
#endif
public:
virtual w32 max_priority()=0; //the maximum priority this reader should handle
// name is just some unique name. Windows requires this for Semaphores
i4_async_reader(char * name);
void init(); // creates thread (called by i4_init()
void uninit(); // waits for thread to die (called by i4_uninit()
static i4_bool is_idle();
// ques up a request
i4_bool start_read(int fd, void * buffer, w32 size,
i4_file_class::async_callback call,
void * context, w32 priority, int caller_id);
static i4_bool request_for_callback(void * buffer, w32 size,
i4_file_class::async_callback call, void * context, w32 priority, int caller_id);
void PRIVATE_thread(); // don't call this!
};
#endif
| [
"[email protected]"
] | |
4bdf7eb5444687b0223e8b697ee43659fba063bc | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /ash/system/accessibility/floating_accessibility_controller.h | 11b6f74d4d9fb7d8ea5b66091e840047810a5c32 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 2,991 | h | // 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.
#ifndef ASH_SYSTEM_ACCESSIBILITY_FLOATING_ACCESSIBILITY_CONTROLLER_H_
#define ASH_SYSTEM_ACCESSIBILITY_FLOATING_ACCESSIBILITY_CONTROLLER_H_
#include "ash/accessibility/accessibility_observer.h"
#include "ash/ash_export.h"
#include "ash/public/cpp/accessibility_controller_enums.h"
#include "ash/public/cpp/ash_constants.h"
#include "ash/system/accessibility/floating_accessibility_detailed_controller.h"
#include "ash/system/accessibility/floating_accessibility_view.h"
#include "ash/system/locale/locale_update_controller_impl.h"
namespace ash {
class AccessibilityControllerImpl;
class FloatingAccessibilityView;
// Controls the floating accessibility menu.
class ASH_EXPORT FloatingAccessibilityController
: public FloatingAccessibilityView::Delegate,
public FloatingAccessibilityDetailedController::Delegate,
public TrayBubbleView::Delegate,
public LocaleChangeObserver,
public AccessibilityObserver {
public:
explicit FloatingAccessibilityController(
AccessibilityControllerImpl* accessibility_controller);
FloatingAccessibilityController(const FloatingAccessibilityController&) =
delete;
FloatingAccessibilityController& operator=(
const FloatingAccessibilityController&) = delete;
~FloatingAccessibilityController() override;
// Starts showing the floating menu when called.
void Show(FloatingMenuPosition position);
void SetMenuPosition(FloatingMenuPosition new_position);
// AccessibilityObserver:
void OnAccessibilityStatusChanged() override;
// Focuses on the first element in the floating menu.
void FocusOnMenu();
private:
friend class FloatingAccessibilityControllerTest;
// FloatingAccessibilityView::Delegate:
void OnDetailedMenuEnabled(bool enabled) override;
void OnLayoutChanged() override;
// FloatingAccessibilityDetailedController::Delegate:
void OnDetailedMenuClosed() override;
views::Widget* GetBubbleWidget() override;
// TrayBubbleView::Delegate:
void BubbleViewDestroyed() override;
base::string16 GetAccessibleNameForBubble() override;
// LocaleChangeObserver:
void OnLocaleChanged() override;
FloatingAccessibilityView* menu_view_ = nullptr;
FloatingAccessibilityBubbleView* bubble_view_ = nullptr;
views::Widget* bubble_widget_ = nullptr;
bool detailed_view_shown_ = false;
// Controller for the detailed view, exists only when visible.
std::unique_ptr<FloatingAccessibilityDetailedController>
detailed_menu_controller_;
FloatingMenuPosition position_ = kDefaultFloatingMenuPosition;
// Used in tests to notify on the menu layout change events.
base::RepeatingClosure on_layout_change_;
AccessibilityControllerImpl* const accessibility_controller_; // Owns us.
};
} // namespace ash
#endif // ASH_SYSTEM_ACCESSIBILITY_FLOATING_ACCESSIBILITY_CONTROLLER_H_
| [
"[email protected]"
] | |
c7160b33377f5f692247d23d01351a5d1eb1fe1d | 9732270148d744ca01c5d43cbfaddbcaf313fb80 | /vjudge/HDU/5139/10395992_TLE_0ms_0kB.cpp | 40974cc2adf1b2dd7a3b747445a02a12734e297e | [] | no_license | Bocity/ACM | bbb7c414aa8abae6d88e2bb89c4ab1fd105a1c5a | 9ec1ece943a4608e96829b07374c3567edcd6872 | refs/heads/master | 2021-01-04T02:41:42.108269 | 2019-01-18T07:17:01 | 2019-01-18T07:17:01 | 76,115,460 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,978 | cpp | #include <algorithm>
#include <bitset>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <string>
#define REP(i, x, n) for (long long i = (x); i < (n); ++i)
#define PER(i, x, n) for (long long i = (n) -1; i >= x; --i)
#define endl "\n"
#define DE(x) cout << "--------\n" << (x) << "----------\n"
#define CASE(i, ans) cout << "Case #" << (i) << ": " << (ans) << "\n"
#define lowbit(x) ((x) & (-(x)))
#define sqr(x) ((x) * (x))
#define eps 1e-9
#define PI acos(-1.0)
#define testin freopen("test.in", "r", stdin)
#define testout freopen("test.out", "w", stdout)
#define MOD 2
using namespace std;
typedef long long ll;
typedef bitset<1005> Bitset;
const int maxn = 1000150;
template <class T> void read(T &num) {
char CH;
bool F = false;
num = 0;
for (CH = getchar(); CH < '0' || CH > '9'; F = CH == '-', CH = getchar())
;
for (num = 0; CH >= '0' && CH <= '9'; num = num * 10 + CH - '0', CH = getchar())
;
F && (num = -num);
}
char stk[600];
int tp = 0;
template <class T> inline void print(T p) {
if (!p) {
puts("0");
return;
}
while (p) stk[++tp] = p % 10, p /= 10;
while (tp) putchar(stk[tp--] + '0');
putchar('\n');
}
int gg[5000] = {
497106289, 586577837, 742507628, 398124572, 693189800, 468840560, 549934921, 87070641, 699213469, 649112004,
999219938, 396007292, 932741062, 508647122, 80376604, 726338574, 121905758, 147674526, 637755097, 702231959,
516283483, 414790710, 925212838, 662773387, 258449471, 521078967, 120912638, 25281461, 51630154, 654630245,
145001399, 392809752, 566039644, 842086553, 427680801, 835937469, 178922438, 377638580, 961642018, 69450403,
881363375, 452897843, 450768612, 998821903, 273470222, 263049013, 447570887, 569301968, 759166041, 146492917,
705989202, 69243774, 639170296, 981576198, 932836501, 23771898, 325853907, 22638096, 681539504, 808816511,
525446108, 909254873, 990171132, 793143409, 263796950, 103111606, 577101957, 291693750, 483540423, 779339925,
495803985, 823325278, 927918014, 843586308, 479549669, 343460299, 270514315, 539114516, 304390875, 938830778,
894283512, 251219556, 234696282, 689218951, 964358227, 445207912, 368360005, 493797139, 358264582, 946118983,
15503124, 993417737, 412116842, 807419472, 260023906, 240615573, 821974014, 348717218, 673763764, 244886588,
576172348, 594848552, 355984217, 719959249, 207914716, 300258529, 997959300, 446464839, 48197695, 123583102,
780933048, 429017925, 861545317, 925846553, 303750628, 283535475, 644526515, 414885679, 688649723, 131184347,
175511913, 523631594, 431792311, 622387911, 973777531, 821072168, 857822811, 197040265, 970123048, 860511356,
362015583, 342960538, 975367466, 124577148, 289202400, 661736159, 774586091, 603253840, 85133944, 119469066,
647617630, 460661399, 463561202, 94638119, 817599749, 156070753, 765746467, 519765895, 939718386, 869480742,
599488318, 153873389, 427991217, 570461687, 46154990, 241097597, 727449391, 890188456, 61472596, 954459937,
48825469, 888318095, 486275212, 554007901, 982458655, 442930083, 585137409, 92524918, 792322395, 513623811,
655363262, 367640624, 748350338, 233378993, 944357345, 351285082, 651097782, 188211076, 810084869, 821235925,
748708203, 925480801, 462109847, 485450492, 767844143, 925677723, 324744684, 870423665, 728218370, 110168476,
114735679, 672157475, 833578251, 331731063, 863365610, 472207123, 361629918, 140822475, 333287141, 494962850,
945216238, 559374194, 555567624, 708966066, 733649946, 485436120, 167178721, 141511209, 935915038, 16068401,
914048801, 598641317, 552120557, 387034610, 953254236, 89071328, 425792020, 340288758, 479558707, 322963199,
837236535, 979979483, 491512415, 448947803, 84557405, 804591386, 368995275, 721120214, 465163842, 172363496,
517033343, 238369265, 309089095, 371589272, 253532732, 284518915, 665879294, 954053608, 747457862, 531256463,
61513784, 394735874, 259281664, 752498789, 877111587, 997806084, 328002729, 327036414, 809831022, 649672936,
2666844, 710159780, 214660209, 406168872, 203386413, 452545596, 487882857, 953592064, 174693493, 299959094,
401851114, 887956320, 403726622, 115419489, 243111118, 39360308, 483962358, 35810713, 47252879, 190945101,
123347046, 73694650, 755397520, 200448227, 35336599, 19421787, 45197547, 76733209, 852405677, 3498419,
410062387, 259500862, 540636674, 735091517, 635184424, 860923857, 720127853, 387190580, 117299052, 537471607,
447584437, 806614714, 525670186, 108250621, 620883788, 234738980, 832644164, 121191338, 162669282, 247068237,
130767908, 545612024, 463680438, 994448181, 792014360, 825688300, 162943871, 727820687, 854159428, 125869307,
404960023, 393118833, 820561038, 441423174, 859939196, 18515656, 107321424, 386670982, 769260559, 273263700,
732356092, 607091902, 81792231, 343202859, 410593025, 423252567, 78911303, 532252448, 156359179, 10991072,
380718263, 230318887, 871334533, 503057038, 549655068, 453998078, 491805223, 672997770, 555757885, 353206804,
30687358, 485607199, 65151628, 262122816, 32105315, 266439230, 295297939, 671532381, 833618908, 85095663,
551280732, 862779008, 735115054, 555620139, 263822894, 678445447, 184184869, 620792547, 147607995, 435046781,
613768368, 630442832, 21018383, 478611341, 925573220, 980299501, 768903549, 956762024, 279164763, 508739163,
80135557, 272612744, 98337759, 826094597, 582986539, 426188329, 881816948, 267826139, 835598750, 604832018,
795382023, 372634567, 219627531, 819822458, 722022938, 247271371, 271999077, 468638677, 848859937, 64824629,
622293643, 354542694, 515593673, 991815145, 792335416, 505792051, 881960866, 923837376, 519088000, 792973269,
192633422, 424871334, 26066149, 952783495, 953491649, 716778520, 479891741, 843302322, 491341496, 997980693,
954723319, 553068843, 229382415, 760945549, 152077748, 811982124, 536553454, 237548010, 314095709, 135546544,
63554361, 979679685, 746199771, 516860047, 217396888, 869623425, 797113335, 328604261, 647031008, 559691719,
840364573, 417152010, 416419390, 648016037, 558462120, 708745077, 30651048, 600611175, 285776816, 739147062,
486458845, 695412888, 290430739, 884535945, 19748455, 911917527, 195053373, 800414216, 538516156, 220238821,
525438392, 478843567, 553130540, 818335549, 833498410, 945428964, 960726698, 467882680, 961895242, 483682316,
784555118, 899782287, 493972935, 411136671, 283484980, 473108002, 361457271, 641383946, 733209954, 240639954,
915882421, 551510676, 488089992, 491139494, 215812371, 963501428, 23205370, 307093965, 416143856, 3364987,
920559371, 67879954, 703475151, 713715344, 546089540, 600146835, 206616082, 861256307, 774020827, 384879176,
314709161, 227632736, 994956502, 22756874, 371088096, 904806256, 183962489, 17077979, 532143008, 810772250,
120162119, 248103857, 155940523, 272064788, 838366141, 613805233, 881847109, 740297078, 618931708, 793213824,
71634531, 920152061, 236390027, 331123791, 570021361, 151897343, 153304371, 738443200, 327136343, 679707268,
809563373, 103741605, 86177680, 777771061, 985261289, 218272091, 89150469, 113879658, 346443690, 671076120,
702907333, 532721802, 118801872, 905287209, 830677984, 49985867, 178677015, 562928493, 685997296, 925985176,
136603406, 695414982, 855008525, 324324334, 975867802, 300351268, 135695562, 289642190, 264892982, 757855330,
428267488, 636774519, 243484925, 203704049, 128362580, 533842754, 127488471, 621454328, 736461674, 688560362,
945377158, 473721083, 149758878, 167798063, 509633381, 144461639, 742345535, 179475621, 668899291, 749632941,
366228200, 936183268, 433190957, 408582775, 856859322, 156883427, 473118692, 822034656, 706832866, 222097745,
151743520, 829658672, 521892264, 24336234, 535435726, 739376858, 732522303, 439760122, 79071508, 737863556,
754937460, 635517235, 608811232, 730120966, 356525435, 104189215, 473757353, 835604548, 887262580, 620431928,
416818566, 232518707, 545493488, 955365036, 610934879, 78340346, 676155014, 769735911, 873988725, 403428623,
252478399, 406500645, 895426423, 988670106, 535778166, 877817370, 331140983, 420102677, 495600084, 24897195,
59307469, 781785541, 947998313, 223658564, 164603957, 82532947, 913676596, 785769798, 54545857, 934690277,
894381729, 290793465, 988510301, 629612655, 8597420, 756529075, 642573439, 665873533, 410362707, 201884670,
373019299, 54361503, 948148891, 534721443, 226711256, 852462383, 52115706, 835819301, 402094774, 523958479,
668778307, 312833551, 101047495, 461962090, 23536231, 547273887, 464258202, 704443074, 416429726, 857485725,
22240980, 71514712, 353395212, 120711878, 257220605, 467189158, 347103488, 727242782, 178278493, 785349388,
423451922, 934165318, 814003373, 741005191, 958157025, 509588822, 553122693, 656101283, 651925690, 426649154,
721272667, 611443368, 535029242, 750888802, 286872749, 197655325, 978700457, 614410876, 343916750, 81353469,
948212135, 388330298, 38999251, 912400239, 777118224, 542182974, 792346263, 960232056, 686548195, 749066701,
16699606, 100986432, 288797122, 764088825, 360306470, 836446685, 161690493, 900525848, 523369460, 747573451,
540566487, 231578224, 621085488, 304279467, 114086254, 291495607, 98683590, 905768057, 324207182, 245259341,
62468576, 381258813, 869049833, 310121019, 620990159, 914455169, 41104122, 743935943, 43908078, 597734822,
807422950, 753931235, 608636011, 225530257, 455668461, 527793080, 219926979, 752597520, 195838266, 134142059,
334014473, 193564968, 344622584, 115856766, 232961823, 184203862, 629547419, 106658804, 337748025, 620021796,
797212298, 403844022, 583104938, 83355672, 680437405, 168829986, 210350971, 159669040, 157936683, 193727524,
280121067, 978456791, 268916082, 753673946, 490263678, 839750306, 23454569, 343386434, 855843692, 60269183,
966623917, 933614046, 94960424, 11047622, 567060541, 34903029, 583003686, 187624058, 394800163, 565153843,
160896278, 387986483, 681172207, 324399365, 878766720, 147017939, 706088484, 423600812, 561230948, 249744696,
540719324, 64453245, 119305400, 757371917, 682905995, 641339592, 792369460, 153158432, 498831755, 975022750,
586680437, 558425473, 290690938, 79923568, 678815514, 681093096, 397758773, 220439711, 832264577, 979680474,
614275618, 894113965, 852590492, 1448654, 818952320, 816948933, 560744034, 139398651, 303127788, 983986087,
462831353, 870473196, 978848659, 293528318, 845109049, 449912518, 230080550, 915563696, 899889531, 844737665,
268901342, 416011560, 928277651, 982204940, 603751684, 150277471, 581164677, 448665374, 905316629, 851548902,
673936517, 353122719, 313256925, 878649407, 672681850, 516459158, 173658410, 800144604, 874718545, 54953121,
57581489, 316619191, 290826623, 318166098, 540098947, 238808718, 361244021, 622999415, 28556490, 133325844,
951165633, 487595480, 358137195, 752229264, 217316477, 205549416, 444067166, 310974828, 258052639, 556346226,
274542004, 751249365, 897031337, 326876680, 944306762, 486295545, 900969939, 625907594, 314731690, 597945051,
600920083, 260193963, 467758370, 399251431, 815165912, 827820999, 635882070, 807846415, 152071072, 702771039,
406242365, 789819063, 343219877, 304166327, 693673970, 397797736, 595733544, 384493588, 215113115, 294466530,
463226116, 415565912, 450939639, 429657818, 428318973, 572124537, 479716309, 652423472, 51488744, 870408961,
286627950, 907913982, 743117891, 16676942, 994835139, 607339269, 161674535, 56481365, 162833167, 389090765,
122848222, 469172852, 114967025, 547057678, 463176568, 633227727, 154492624, 620870752, 352247542, 921015086,
760160132, 364236977, 519528626, 969487125, 754512677, 778816753, 726057270, 340197693, 799415939, 406679195,
190971851, 380083988, 323147208, 665170767, 385590655, 573053972, 296457247, 45401216, 989683992, 634981041,
135543540, 560732021, 568235762, 934557086, 524885418, 364863851, 301116941, 151937640, 986221557, 901298236,
92628692, 825838667, 63127451, 883738862, 474730687, 811219793, 372374087, 329172399, 848288198, 30905030,
466550665, 461803466, 410661305, 355065061, 899211304, 475208657, 587636857, 645919644, 460651373, 427339627,
58417653, 230410034, 279305371, 753740701, 351101428, 841331862, 116423745, 71657515, 616633301, 396024706,
746595790, 756875091, 381617300, 565858220, 223367364, 228151436, 956025057, 942717053, 208629048, 611120140};
int f[5000] = {
531950728, 368774859, 548996970, 422550956, 737935835, 309944332, 296716438, 65533322, 851076783, 457992974,
559938709, 118586228, 177829816, 830760447, 240586351, 611862881, 267145356, 334356152, 706226766, 107146451,
469491375, 469619345, 630906046, 658967159, 50180518, 287209856, 372045574, 702584502, 210306242, 373281933,
330131954, 179035946, 642845435, 293008185, 889591949, 832275593, 783222990, 698245208, 968856847, 559805077,
612250579, 425371772, 408721018, 227278675, 231684727, 711739673, 93615261, 795156156, 111810641, 154425679,
950741508, 384634755, 797824545, 581839401, 899281002, 343434222, 924042332, 973241307, 253333132, 679209364,
663967499, 840761205, 567656070, 152546903, 44613330, 82447511, 402958911, 571952764, 757842436, 526226141,
184978106, 402043945, 99111089, 19484938, 419049924, 253026585, 713158286, 874682245, 220437571, 644158465,
63869907, 114643102, 972816308, 728256514, 963945752, 933338751, 18380550, 857887831, 720850066, 730342129,
178869710, 711198175, 194146825, 768522507, 643362481, 281968565, 947088120, 949574384, 121835953, 641102369,
109638502, 95557900, 326621027, 900289182, 133296879, 193709591, 913263362, 763361375, 914429467, 99410016,
37566881, 762278277, 568977452, 450802930, 39384730, 978980893, 215810977, 178963016, 149849353, 363599536,
7140379, 644307576, 380850307, 970976656, 364780107, 645615947, 671507889, 554802750, 786867208, 361684231,
342987665, 166388559, 575582303, 423495014, 488491853, 599324778, 584412720, 524516928, 788517365, 539157852,
208076172, 309912428, 405169364, 391730470, 389835993, 461876969, 867688704, 228282702, 953528250, 448516387,
756266063, 464733081, 717603278, 747174214, 836986056, 105268330, 811775730, 484232675, 863319259, 309854856,
791000859, 654885071, 571169257, 626107772, 625068192, 290823778, 20398441, 776947971, 672459923, 95657988,
133553262, 566132883, 124281308, 210298093, 313981369, 91118293, 993848949, 107920626, 208013235, 663484182,
366791260, 234703007, 494290414, 204398116, 269699044, 186425259, 595502892, 997563081, 145597169, 311407840,
926615815, 144878079, 388595220, 556613616, 610493713, 964995672, 78655867, 144147701, 540757667, 578095319,
182023585, 567956875, 715709070, 713927313, 599197172, 386366402, 741756692, 254905284, 477042999, 229611066,
90277203, 588798688, 675861436, 406139787, 488627446, 259902463, 158270390, 358711381, 842360859, 765808214,
319425822, 57320645, 780502385, 804579112, 86051964, 245221129, 323122880, 100166484, 429884116, 142477924,
797700772, 394336530, 837652794, 84768784, 370848245, 773693635, 415819912, 207353911, 836171821, 585806050,
516133402, 417630828, 417310580, 53781022, 419651063, 814180888, 107760614, 113938820, 505770321, 119948046,
918381977, 338307041, 189790458, 181945979, 436915754, 126138202, 755674156, 128500086, 448673558, 579773866,
353589816, 692000143, 633756877, 502696859, 263155160, 999274167, 920050980, 690026830, 994023285, 816761238,
356057182, 24135035, 948179129, 328529587, 6473915, 258483850, 82483509, 20746709, 326007721, 861745250,
120374404, 991439199, 134639886, 269458512, 518475153, 676697911, 450788932, 99327228, 899634870, 639926530,
129966256, 909796355, 580376047, 225184152, 810710832, 964927245, 63794763, 68170371, 843038976, 5832229,
437917349, 661817850, 253333720, 349482043, 927766746, 833445122, 15627038, 252982080, 844203606, 630915411,
731823617, 404741687, 683792297, 74258051, 718929491, 522168074, 575142935, 200712629, 129996763, 242744764,
296139066, 981262511, 591433657, 562423733, 280841874, 277825666, 601792671, 749689770, 997070638, 932799119,
373780605, 591420871, 698320710, 491398664, 517522406, 527021329, 527821646, 657320079, 451288650, 899032987,
233011199, 586537067, 522306463, 429480764, 778629245, 15412658, 391314992, 191511660, 19438357, 929795683,
863835584, 475274178, 351886536, 646754835, 228635693, 68362865, 645773282, 791499308, 922662077, 150478174,
439262525, 524654786, 449093438, 853608742, 679118265, 940730881, 883983355, 896993199, 927404616, 609593566,
148779376, 301590868, 331095570, 577813278, 915960706, 266095145, 472798684, 90722866, 638210671, 627860803,
100733287, 725469553, 842103348, 865874883, 100705774, 388246708, 879578397, 205180048, 708303475, 358784546,
621316873, 225734993, 179012973, 352911192, 882844413, 901973881, 588956, 593445550, 616877548, 259081142,
102033703, 936670129, 280662953, 11763650, 989668922, 593517530, 24385078, 757001165, 448988052, 57134788,
449124811, 321015244, 756382867, 846003680, 647967117, 104353275, 871290206, 591707600, 167176616, 544918953,
861347833, 679358932, 19142048, 157040445, 680500135, 353042626, 830736523, 400836667, 969137511, 8837465,
191816828, 648266423, 256505495, 499252163, 331159624, 352655151, 6123024, 455550222, 773253065, 907400235,
5371039, 9402362, 800465608, 653054812, 296312519, 881847648, 851727639, 14315920, 264226673, 59433257,
112668247, 78752284, 725220578, 629842615, 715043905, 94434428, 685057729, 290920343, 428820162, 421968194,
87300302, 966025980, 282235939, 750935643, 140098561, 21859577, 414930400, 996350995, 858728049, 500425006,
654923658, 317971573, 779976013, 798587112, 777579921, 664950480, 54362352, 547824425, 241045830, 278955367,
570390917, 992436148, 603601740, 61484867, 639327128, 316877991, 380235634, 102296360, 563214762, 248057675,
883391415, 452630670, 963494262, 690546099, 226329426, 951438755, 883897854, 330112138, 591077112, 974067448,
669819576, 951290850, 884784644, 249922747, 307817830, 999102943, 254712899, 359147559, 139491276, 293296655,
154643304, 543219446, 604350964, 821640849, 785583772, 806500179, 914406984, 6081291, 685788590, 996965954,
736309234, 373613935, 2198258, 498281626, 443699470, 4290773, 126749673, 718570064, 817490543, 212873022,
255883314, 927672414, 42775058, 802107029, 757738629, 957515645, 503850590, 483956762, 413385760, 473966292,
233609366, 121552775, 749183329, 530975087, 2286180, 962644125, 224433550, 92438394, 71931631, 261465122,
865255636, 397909416, 863559202, 235252240, 842495446, 649514270, 159127121, 273350277, 754888779, 479920311,
240612732, 471088657, 65783789, 321510031, 536493030, 85643309, 622963656, 261711044, 690466918, 214054614,
286975960, 724426743, 785837958, 945124374, 603788888, 638274086, 887817346, 395689696, 321716936, 752161465,
127419348, 111709550, 357920454, 984036257, 110571266, 306652079, 933642435, 245528064, 958357010, 719792849,
921312862, 333649842, 523626215, 197916266, 345012890, 744789854, 843737267, 518072889, 65074517, 316220877,
762577747, 510449118, 709526639, 490580711, 470413814, 388118547, 972855612, 491048140, 708665108, 224748329,
794715527, 163734788, 234487362, 745843412, 681336536, 320372688, 972376398, 355680108, 322099018, 1575312,
996995986, 214913898, 683411025, 882929858, 971390710, 80040055, 1127450, 557441655, 769331567, 652382508,
147971545, 762478847, 696809890, 862729281, 790808019, 657415775, 222699779, 454358148, 293220799, 620898940,
637632434, 434848287, 154888497, 660652034, 835711306, 763799927, 283971670, 820254659, 439907802, 663134272,
679231367, 100891620, 668484466, 746609325, 118052375, 230697481, 587856051, 273735618, 964687756, 405577532,
429687732, 967364425, 439147522, 481667258, 530710868, 194816451, 91282387, 307744960, 357637510, 116225742,
890933483, 853107479, 519778544, 201963816, 881294189, 218513406, 983422042, 911019143, 403028410, 956413299,
382936671, 91793660, 474666192, 656352962, 160901276, 805511371, 611753354, 260354590, 854726044, 257438891,
994000129, 364267956, 100734718, 620583141, 351539460, 117825898, 285078866, 778416365, 100312619, 690120224,
137056381, 441853031, 341061004, 542766734, 185548109, 289631299, 430190929, 620776734, 125418099, 437383740,
439164528, 543821215, 453371329, 161010321, 56989650, 521137813, 899350871, 202363850, 760784671, 24521750,
369706448, 757308650, 794492693, 349699693, 31722990, 369840340, 454993657, 162557471, 253816841, 596209708,
648161443, 584051900, 651407615, 78893753, 556794713, 272637600, 353587878, 680008175, 164570022, 576078970,
942717526, 20530689, 839974497, 280627739, 235524165, 671241021, 482157040, 580127881, 260041446, 304661605,
292089604, 287625184, 474210694, 214982895, 983163686, 593388415, 602338620, 861159694, 559550329, 929871923,
104163213, 481731680, 345792811, 605169479, 72838794, 857034356, 156759214, 26325004, 478974963, 412584039,
212742514, 657212884, 260744139, 849780883, 707692373, 499625172, 972518981, 294562867, 359168258, 14422365,
715101807, 109100485, 880341765, 113759222, 167973716, 565617053, 867201099, 278176947, 530114333, 604303898,
20424858, 756732631, 136124970, 571843251, 958404835, 203903676, 857326306, 824420451, 999116122, 251368199,
866178693, 696493031, 361670400, 585588816, 55984007, 92480901, 50021058, 415566358, 519914454, 808427728,
95007341, 167591158, 902428872, 985727438, 805496186, 898480470, 385474266, 729990405, 371595334, 582439362,
493287245, 809562386, 845964819, 531232752, 963306784, 437410532, 946459111, 297971990, 301916481, 55596303,
931298610, 498873691, 678309936, 33973619, 832354773, 801848947, 637716982, 793709021, 112306500, 220087090,
5833269, 462952466, 900310662, 259354804, 413928533, 128011067, 845302169, 477229992, 112486339, 704262886,
713219701, 754355048, 457267418, 746662664, 509945103, 39200118, 504082947, 907964432, 678609994, 98361446,
746081752, 161056098, 204812911, 138816119, 677950817, 302188023, 671373064, 313116049, 299145844, 295620142,
348220320, 94250003, 186193096, 325139593, 579475748, 182649597, 843518213, 440370563, 778246168, 763414075,
760659245, 399049059, 391519779, 269228005, 319125399, 932024825, 172182938, 542031550, 765220691, 927340096,
369460645, 29977692, 283920363, 604285098, 328790613, 264272770, 536817947, 103036384, 948470522, 980250487,
287715948, 394574702, 411001514, 922143549, 330056603, 140133162, 357941890, 288319832, 651855931, 248981102,
808082423, 196850608, 780589811, 217994575, 964434455, 193469902, 221250042, 102306235, 218168278, 618104354,
441398178, 821249479, 362328540, 28956144, 734818225, 449815594, 439795759, 197199227, 902493900, 839684660,
504848360, 667918355, 489180739, 92886066, 136210937, 192832619, 623324320, 589612583, 25307760, 398723029,
608825679, 638913084, 684331067, 715035298, 998464842, 456262384, 542916628, 787328412, 347632589, 386267146,
681976688, 686904244, 919088953, 181347051, 420957718, 37177550, 967312122, 589423400, 744413976, 764421236,
191490088, 484003262, 40086362, 27852998, 798904593, 977996308, 738968957, 670300615, 573552978, 558837848,
995800952, 324804106, 260671106, 18423114, 100884205, 242298707, 993938025, 294010113, 802456388, 476998749,
672271195, 393795045, 256610031, 860389494, 445376476, 38167081, 271876065, 674200328, 171579242, 345911460,
282837859, 951321912, 400876043, 661753662, 57779540, 565726792, 604964758, 976172400, 852610693, 682498929};
// void biao() {
// g[1] = 1;
// // ll temp = 1;
// REP(i, 2, 10000001) {
// g[i] = g[i - 1] * i % 1000000007;
// }
// }
void stay(int n) {
int temp = n / 10000;
ll F = 1;
ll G = 1;
temp--;
if (temp < 0) {
REP(i, 2, n + 1) {
F = F * i % 1000000007;
G = G * F % 1000000007;
}
cout << G << endl;
} else {
F = f[temp];
G = gg[temp];
REP(i, (temp + 1) * 10000 + 1, n + 1) {
F = F * i % 1000000007;
G = G * F % 1000000007;
}
cout << G << endl;
}
}
int n;
int main() {
ios::sync_with_stdio(0);
// testin;
// testout;
// biao();
// cout << "{";
// REP(i, 1, 10000001) {
// if (i % 10000 == 0) {
// cout << g[i] << ",";
// }
// }
// cout << "}";
while (cin >> n) {
stay(n);
}
return 0;
} | [
"[email protected]"
] | |
993720ba44127d1e561c98c0cc6e9b4a70040cc0 | 88b901475cf85cab913fb44909446a054f3657cd | /Classes/RedEnemy.h | 0523d9790a939bf2f88623d7551866c1ac77c61d | [] | no_license | Jeff0029/MobileTest | 0c017b129673920d90367b1218cc6d4d1264e100 | 48fcc55769e1c9bfbddef2aa8ea09972ba192b99 | refs/heads/master | 2016-09-06T08:10:59.979414 | 2014-10-30T00:55:47 | 2014-10-30T00:55:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | h | //
// RedEnemy.h
// ArcticTest
//
// Created by Jean-Francois Vienneau on 2014-10-10.
//
//
#ifndef __ArcticTest__RedEnemy__
#define __ArcticTest__RedEnemy__
#include <iostream>
#include "Enemy.h"
#include "OrangeEnemy.h"
namespace ArcticTest
{
class RedEnemy : public OrangeEnemy
{
RedEnemy();
virtual ~RedEnemy();
protected:
virtual void Activate();
public:
static RedEnemy* Create();
private:
void SwitchSide(float dt);
float switchingIntervalTime = 3;
};
}
#endif /* defined(__ArcticTest__RedEnemy__) */
| [
"[email protected]"
] | |
74e089d93b545c6326382192c2f716ba015dae0c | 157fd7fe5e541c8ef7559b212078eb7a6dbf51c6 | /TRiAS/TRiAS/TRiAS03/ManageObjectPropertiesDlg.h | 4bf6ccdb06d47958628e0ffbd1ab5813fe4fde6a | [] | no_license | 15831944/TRiAS | d2bab6fd129a86fc2f06f2103d8bcd08237c49af | 840946b85dcefb34efc219446240e21f51d2c60d | refs/heads/master | 2020-09-05T05:56:39.624150 | 2012-11-11T02:24:49 | 2012-11-11T02:24:49 | null | 0 | 0 | null | null | null | null | IBM852 | C++ | false | false | 1,361 | h | // $Header: $
// Copyrightę 1999-2004 Hartmut Kaiser, All rights reserved
// Created: 07.02.2003 11:39:15
//
// @doc
// @module ManageObjectPropertiesDlg.h | Declaration of the <c CManageObjectPropertiesDlg> class
#if !defined(_MANAGEOBJECTPROPERTIESDLG_H__7CA88B2D_3F35_4CEB_8E37_3F3FEC17D3C3__INCLUDED_)
#define _MANAGEOBJECTPROPERTIESDLG_H__7CA88B2D_3F35_4CEB_8E37_3F3FEC17D3C3__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// Header include diagnostics
#if defined(_TRIAS_DBG_HEADER_DIAGNOSTICS)
#pragma message(__TIME__": include " __FILE__ )
#endif
#include <SelObjProp.h>
///////////////////////////////////////////////////////////////////////////////
//
class CManageObjectPropertiesDlg :
public CPropertyPage
{
public:
CManageObjectPropertiesDlg(ResourceFile &rRF);
~CManageObjectPropertiesDlg();
void WindowInit(Event e);
void ButtonClick(ControlEvt e);
void OnSelChanged(NotifyEvt e);
HPROPSHEETPAGE CreatePage() { return CPropertyPage::CreatePage(); }
protected:
void OnNewObjProp();
void ObDelObjProp();
void ObObjPropProperties();
void AdjustButtons();
private:
CSelObjPropTree m_ObjProps;
PushButton m_pbDelete;
PushButton m_pbProperties;
};
#endif // !defined(_MANAGEOBJECTPROPERTIESDLG_H__7CA88B2D_3F35_4CEB_8E37_3F3FEC17D3C3__INCLUDED_)
| [
"Windows Live ID\\[email protected]"
] | Windows Live ID\[email protected] |
6fea893f96b84859e7839180aea9382862f121ab | 561e985145b1e74fd956ba4f07acd13e8ac11ebc | /IOS Build/TestARKit/Classes/Native/AssemblyU2DCSharp_UnityStandardAssets_CrossPlatform113868641.h | 8f610968799caba70baaf9118a68f358efccfc8d | [] | no_license | thanhitpro/Jump | 04eaaef2dd5afda806d48c5b9d86dbc30bce2feb | 45769ecf15c8496d20b91c493e9389de27bbb367 | refs/heads/master | 2021-01-20T23:09:18.815748 | 2017-09-07T08:14:18 | 2017-09-07T08:14:18 | 101,840,580 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,043 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Enum2459695545.h"
#include "AssemblyU2DCSharp_UnityStandardAssets_CrossPlatform113868641.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityStandardAssets.CrossPlatformInput.TouchPad/ControlStyle
struct ControlStyle_t113868641
{
public:
// System.Int32 UnityStandardAssets.CrossPlatformInput.TouchPad/ControlStyle::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ControlStyle_t113868641, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"[email protected]"
] | |
402309becf19b6e4effd31c61b217a0506ea3a71 | 8d0239cf514b50ac3445c6440da77d16d3d12e91 | /OpenGL/gl3.cpp | 68dead29f09de8384fd56bb645ca53b9941bb785 | [] | no_license | 7hi4g0/Codes | 2857fa832622157e523d9dbbf28ea75269f26b56 | 9ed7d71aaba29ef1fd5c135d06819f898d7f8644 | refs/heads/codes | 2023-02-22T00:43:40.720754 | 2023-02-09T16:00:11 | 2023-02-09T16:00:11 | 8,489,561 | 0 | 0 | null | 2022-06-06T18:52:54 | 2013-02-28T22:29:28 | Python | UTF-8 | C++ | false | false | 8,600 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <GL/gl.h>
#include <GL/glx.h>
#define GLX_CONTEXT_MAJOR_VERSION_ARB 0x2091
#define GLX_CONTEXT_MINOR_VERSION_ARB 0x2092
typedef GLXContext (*glXCreateContextAttribsARBProc)(Display*, GLXFBConfig, GLXContext, Bool, const int*);
// Helper to check for extension string presence. Adapted from:
// http://www.opengl.org/resources/features/OGLextensions/
static bool isExtensionSupported(const char *extList, const char *extension)
{
const char *start;
const char *where, *terminator;
/* Extension names should not have spaces. */
where = strchr(extension, ' ');
if ( where || *extension == '\0' )
return false;
/* It takes a bit of care to be fool-proof about parsing the
OpenGL extensions string. Don't be fooled by sub-strings,
etc. */
for ( start = extList; ; ) {
where = strstr( start, extension );
if ( !where )
break;
terminator = where + strlen( extension );
if ( where == start || *(where - 1) == ' ' )
if ( *terminator == ' ' || *terminator == '\0' )
return true;
start = terminator;
}
return false;
}
static bool ctxErrorOccurred = false;
static int ctxErrorHandler( Display *dpy, XErrorEvent *ev )
{
ctxErrorOccurred = true;
return 0;
}
int main (int argc, char ** argv)
{
Display *display = XOpenDisplay(0);
if ( !display )
{
printf( "Failed to open X display\n" );
exit(1);
}
// Get a matching FB config
static int visual_attribs[] =
{
GLX_X_RENDERABLE , True,
GLX_DRAWABLE_TYPE , GLX_WINDOW_BIT,
GLX_RENDER_TYPE , GLX_RGBA_BIT,
GLX_X_VISUAL_TYPE , GLX_TRUE_COLOR,
GLX_RED_SIZE , 8,
GLX_GREEN_SIZE , 8,
GLX_BLUE_SIZE , 8,
GLX_ALPHA_SIZE , 8,
GLX_DEPTH_SIZE , 24,
//GLX_STENCIL_SIZE , 8,
GLX_DOUBLEBUFFER , True,
GLX_SAMPLE_BUFFERS , 1,
GLX_SAMPLES , 8,
None
};
int glx_major, glx_minor;
// FBConfigs were added in GLX version 1.3.
if ( !glXQueryVersion( display, &glx_major, &glx_minor ) ||
( ( glx_major == 1 ) && ( glx_minor < 3 ) ) || ( glx_major < 1 ) )
{
printf( "Invalid GLX version" );
exit(1);
}
printf( "Getting matching framebuffer configs\n" );
int fbcount;
GLXFBConfig *fbc = glXChooseFBConfig( display, DefaultScreen( display ),
visual_attribs, &fbcount );
if ( !fbc )
{
printf( "Failed to retrieve a framebuffer config\n" );
exit(1);
}
printf( "Found %d matching FB configs.\n", fbcount );
// Pick the FB config/visual with the most samples per pixel
printf( "Getting XVisualInfos\n" );
int best_fbc = -1, worst_fbc = -1, best_num_samp = -1, worst_num_samp = 999;
int i;
for ( i = 0; i < fbcount; i++ )
{
XVisualInfo *vi = glXGetVisualFromFBConfig( display, fbc[i] );
if ( vi )
{
int samp_buf, samples;
glXGetFBConfigAttrib( display, fbc[i], GLX_SAMPLE_BUFFERS, &samp_buf );
glXGetFBConfigAttrib( display, fbc[i], GLX_SAMPLES , &samples );
printf( " Matching fbconfig %d, visual ID 0x%2x: SAMPLE_BUFFERS = %d,"
" SAMPLES = %d\n",
i, vi -> visualid, samp_buf, samples );
if ( best_fbc < 0 || samp_buf && samples > best_num_samp )
best_fbc = i, best_num_samp = samples;
if ( worst_fbc < 0 || !samp_buf || samples < worst_num_samp )
worst_fbc = i, worst_num_samp = samples;
}
XFree( vi );
}
GLXFBConfig bestFbc = fbc[ best_fbc ];
// Be sure to free the FBConfig list allocated by glXChooseFBConfig()
XFree( fbc );
// Get a visual
XVisualInfo *vi = glXGetVisualFromFBConfig( display, bestFbc );
printf( "Chosen visual ID = 0x%x\n", vi->visualid );
printf( "Creating colormap\n" );
XSetWindowAttributes swa;
Colormap cmap;
swa.colormap = cmap = XCreateColormap( display,
RootWindow( display, vi->screen ),
vi->visual, AllocNone );
swa.background_pixmap = None ;
swa.border_pixel = 0;
swa.event_mask = StructureNotifyMask;
printf( "Creating window\n" );
Window win = XCreateWindow( display, RootWindow( display, vi->screen ),
0, 0, 100, 100, 0, vi->depth, InputOutput,
vi->visual,
CWBorderPixel|CWColormap|CWEventMask, &swa );
if ( !win )
{
printf( "Failed to create window.\n" );
exit(1);
}
// Done with the visual info data
XFree( vi );
XStoreName( display, win, "GL 3.0 Window" );
printf( "Mapping window\n" );
XMapWindow( display, win );
// Get the default screen's GLX extension list
const char *glxExts = glXQueryExtensionsString( display,
DefaultScreen( display ) );
// NOTE: It is not necessary to create or make current to a context before
// calling glXGetProcAddressARB
glXCreateContextAttribsARBProc glXCreateContextAttribsARB = 0;
glXCreateContextAttribsARB = (glXCreateContextAttribsARBProc)
glXGetProcAddressARB( (const GLubyte *) "glXCreateContextAttribsARB" );
GLXContext ctx = 0;
// Install an X error handler so the application won't exit if GL 3.0
// context allocation fails.
//
// Note this error handler is global. All display connections in all threads
// of a process use the same error handler, so be sure to guard against other
// threads issuing X commands while this code is running.
ctxErrorOccurred = false;
int (*oldHandler)(Display*, XErrorEvent*) =
XSetErrorHandler(&ctxErrorHandler);
// Check for the GLX_ARB_create_context extension string and the function.
// If either is not present, use GLX 1.3 context creation method.
if ( !isExtensionSupported( glxExts, "GLX_ARB_create_context" ) ||
!glXCreateContextAttribsARB )
{
printf( "glXCreateContextAttribsARB() not found"
" ... using old-style GLX context\n" );
ctx = glXCreateNewContext( display, bestFbc, GLX_RGBA_TYPE, 0, True );
}
// If it does, try to get a GL 3.0 context!
else
{
int context_attribs[] =
{
GLX_CONTEXT_MAJOR_VERSION_ARB, 3,
GLX_CONTEXT_MINOR_VERSION_ARB, 0,
//GLX_CONTEXT_FLAGS_ARB , GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB,
None
};
printf( "Creating context\n" );
ctx = glXCreateContextAttribsARB( display, bestFbc, 0,
True, context_attribs );
// Sync to ensure any errors generated are processed.
XSync( display, False );
if ( !ctxErrorOccurred && ctx )
printf( "Created GL 3.0 context\n" );
else
{
// Couldn't create GL 3.0 context. Fall back to old-style 2.x context.
// When a context version below 3.0 is requested, implementations will
// return the newest context version compatible with OpenGL versions less
// than version 3.0.
// GLX_CONTEXT_MAJOR_VERSION_ARB = 1
context_attribs[1] = 1;
// GLX_CONTEXT_MINOR_VERSION_ARB = 0
context_attribs[3] = 0;
ctxErrorOccurred = false;
printf( "Failed to create GL 3.0 context"
" ... using old-style GLX context\n" );
ctx = glXCreateContextAttribsARB( display, bestFbc, 0,
True, context_attribs );
}
}
// Sync to ensure any errors generated are processed.
XSync( display, False );
// Restore the original error handler
XSetErrorHandler( oldHandler );
if ( ctxErrorOccurred || !ctx )
{
printf( "Failed to create an OpenGL context\n" );
exit(1);
}
// Verifying that context is a direct context
if ( ! glXIsDirect ( display, ctx ) )
{
printf( "Indirect GLX rendering context obtained\n" );
}
else
{
printf( "Direct GLX rendering context obtained\n" );
}
printf( "Making context current\n" );
glXMakeCurrent( display, win, ctx );
glClearColor ( 0, 0.5, 1, 1 );
glClear ( GL_COLOR_BUFFER_BIT );
glXSwapBuffers ( display, win );
sleep( 10 );
glClearColor ( 1, 0.5, 0, 1 );
glClear ( GL_COLOR_BUFFER_BIT );
glXSwapBuffers ( display, win );
sleep( 10 );
glXMakeCurrent( display, 0, 0 );
glXDestroyContext( display, ctx );
XDestroyWindow( display, win );
XFreeColormap( display, cmap );
XCloseDisplay( display );
}
| [
"thiago@thiago-desktop.(none)"
] | thiago@thiago-desktop.(none) |
e02fadffaf0a1e3c2f9188e61e62d805e72d5530 | 4a6eb31b6efd60be0f3d4c32b3a88e02cc1885ac | /jcpp/src/test/cpp/jcpp/lang/JNullPointerExceptionTest.cpp | 14178bf19890040d8729a0a73149ab218a96a8f6 | [] | no_license | jeffedlund/rpc | 3f84389973651ff77ad09b53459778953843e310 | 17cba8f2ab4fce50361693db8f59ccf46c19ae78 | refs/heads/master | 2021-01-10T20:14:04.687475 | 2013-06-10T09:16:29 | 2013-06-10T09:16:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | cpp | #include "JNullPointerExceptionTest.h"
namespace jcpp{
namespace lang{
JNullPointerExceptionTest::JNullPointerExceptionTest():JRuntimeExceptionTest(){
}
JString JNullPointerExceptionTest::getFileName(){
return "NullPointerException.ser";
}
JThrowable* JNullPointerExceptionTest::createFirstCause(){
return new JNullPointerException();
}
JThrowable* JNullPointerExceptionTest::createSecondCause(){
return new JNullPointerException();
}
JString JNullPointerExceptionTest::getThrowableClassName(){
return "java.lang.NullPointerException";
}
JNullPointerExceptionTest::~JNullPointerExceptionTest(){
}
}
}
| [
"[email protected]"
] | |
1aeb517a31962f41c0d8c483b88b7a82158db8ae | 560090526e32e009e2e9331e8a2b4f1e7861a5e8 | /Compiled/blaze-3.2/blazetest/src/mathtest/dmatsmatmult/HDbUCa.cpp | f2e40537fbccd0fee23354c9eb1d303fd1dd9851 | [
"BSD-3-Clause"
] | permissive | jcd1994/MatlabTools | 9a4c1f8190b5ceda102201799cc6c483c0a7b6f7 | 2cc7eac920b8c066338b1a0ac495f0dbdb4c75c1 | refs/heads/master | 2021-01-18T03:05:19.351404 | 2018-02-14T02:17:07 | 2018-02-14T02:17:07 | 84,264,330 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,508 | cpp | //=================================================================================================
/*!
// \file src/mathtest/dmatsmatmult/HDbUCa.cpp
// \brief Source file for the HDbUCa dense matrix/sparse matrix multiplication math test
//
// Copyright (C) 2012-2017 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// 3. Neither the names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <cstdlib>
#include <iostream>
#include <blaze/math/CompressedMatrix.h>
#include <blaze/math/DynamicMatrix.h>
#include <blaze/math/HermitianMatrix.h>
#include <blaze/math/UpperMatrix.h>
#include <blazetest/mathtest/Creator.h>
#include <blazetest/mathtest/dmatsmatmult/OperationTest.h>
#include <blazetest/system/MathTest.h>
//=================================================================================================
//
// MAIN FUNCTION
//
//=================================================================================================
//*************************************************************************************************
int main()
{
std::cout << " Running 'HDbUCa'..." << std::endl;
using blazetest::mathtest::NumericA;
using blazetest::mathtest::NumericB;
try
{
// Matrix type definitions
typedef blaze::HermitianMatrix< blaze::DynamicMatrix<NumericB> > HDb;
typedef blaze::UpperMatrix< blaze::CompressedMatrix<NumericA> > UCa;
// Creator type definitions
typedef blazetest::Creator<HDb> CHDb;
typedef blazetest::Creator<UCa> CUCa;
// Running tests with small matrices
for( size_t i=0UL; i<=6UL; ++i ) {
for( size_t j=0UL; j<=UCa::maxNonZeros( i ); ++j ) {
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( i ), CUCa( i, j ) );
}
}
// Running tests with large matrices
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 31UL ), CUCa( 31UL, 7UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 67UL ), CUCa( 67UL, 7UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 127UL ), CUCa( 127UL, 13UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 32UL ), CUCa( 32UL, 8UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 64UL ), CUCa( 64UL, 8UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CHDb( 128UL ), CUCa( 128UL, 16UL ) );
}
catch( std::exception& ex ) {
std::cerr << "\n\n ERROR DETECTED during dense matrix/sparse matrix multiplication:\n"
<< ex.what() << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
//*************************************************************************************************
| [
"[email protected]"
] | |
9f4677408ff8d91f64071f28ef61647f56cd428e | f31e60bfa6229959c7e32684be96cd7f43dedcc9 | /aaa/n_divides_m/main.cpp | 379255cbd8498860982ae107f2c5f0816ed0c486 | [] | no_license | henriquenunez/trabs_usp | 618efc26f346ac7ff52784a5b08eee7652d8ac79 | 030d713b17091a26cae2801505b4e127b8cda90b | refs/heads/master | 2022-05-10T14:45:40.278343 | 2022-05-05T08:15:30 | 2022-05-05T08:15:30 | 182,876,028 | 0 | 4 | null | 2022-02-22T19:28:50 | 2019-04-22T22:14:30 | C | UTF-8 | C++ | false | false | 3,831 | cpp | #include <cstdio>
#include <vector>
#include <cmath>
#include <cstring>
#include <utility>
#include <cstdlib>
#include <unordered_map>
/* We must only check values up to sqrt(2^31-1)
* Since we're able to say whether it's a prime or not, by the factors.
* */
#define MAX_N 46341
void sieve_of_eratosthenes(int *PRIMES, std::vector<int> &primes_vec)
{
primes_vec.clear();
int i;
//Setting everyone to 1
memset(PRIMES, 0xFF, (MAX_N+1)*sizeof(int) );
for (i = 2; i <= MAX_N; i++)
{
if (!PRIMES[i]) continue;
primes_vec.push_back(i);
int j = i*2;
while (j < MAX_N)
{
PRIMES[j] = 0;
j += i;
}
}
}
/* How many times a prime p
* occurs in n!
* */
int prime_factors_on_factorial(int n, int p)
{
int ret = 0;
for (int power = p ; power <= n ; power *= p)
ret += n/power;
return ret;
}
void prime_factors(long int val, std::vector<int> &primes_vec, std::unordered_map<int, int> &factors)
{
std::vector<int> factor_amount;
std::vector<int>::iterator curr_prime;
//std::unordered_map<int, int>::iterator curr_prime_amount;
//int prime_n = 1;
factor_amount.resize(primes_vec.size(), 0);
curr_prime = primes_vec.begin();
//curr_prime_amount = factor_amount.begin();
//Now, decomposing it.
while(val != 1 && curr_prime != primes_vec.end())
{
//printf("Val is : %d\n", val);
if (val % (*curr_prime) == 0)
{
val /= *curr_prime;
// Check if prime exists in map
// and add to it.
if (factors.find(*curr_prime) != factors.end())
{
factors[*curr_prime]++;
}
else
{
factors[*curr_prime] = 1;
}
}
else
{
curr_prime++;
//curr_prime_amount++;
//prime_n++;
}
}
if (val > 1) //Could not be factored.
{
factors[val] = 1;
}
/*
if (curr_prime == primes_vec.end())
return std::make_pair(factor_amount, 0);
return std::make_pair(factor_amount, prime_n);
*/
}
// m divides n! ??
bool check_divides(long int n, long int m, std::vector<int> &primes_vec)
{
if (m == 0) return false;
if (m <= n) return true;
//Maps a value.
// Let's find the factorial of the divisor first.
std::unordered_map<int, int> m_factors;
prime_factors(m, primes_vec, m_factors);
//Print
/*
for(int a : asw_m.first)
printf("%3d ", a);
printf("\n");
*/
// Now, to check if divides, for each prime in m's
// factoration, check if the amount is lower than of
// n!'s factoration.
for (auto prime_factor : m_factors)
{
//printf("Trying %d!\n", i);
// First represents the key, or the actual prime number
// Second represents the prime number amount in the factoration.
if (prime_factors_on_factorial(n, prime_factor.first) < prime_factor.second)
return false;
}
return true;
}
int main()
{
std::vector<int> primes_vec;
int *PRIMES = (int*) malloc((MAX_N+1) * sizeof(int));
//Initialize primes.
sieve_of_eratosthenes(PRIMES, primes_vec);
/*
for (int i = 2 ; i <= MAX_N ; i++)
{
if (PRIMES[i])
{
primes_vec.push_back(i);
//printf("%d ", i);
}
}
*/
long int n, m;
size_t line_len = 0;
char *line = NULL;
while(getline(&line, &line_len, stdin) > 0)
{
//printf("Input was {%s}\n", line);
sscanf(line, "%ld %ld", &n, &m);
printf("%ld %s %ld!\n", m, check_divides(n, m, primes_vec) ? "divides" : "does not divide", n);
}
free(line);
free(PRIMES);
return 0;
}
| [
"[email protected]"
] | |
e4e3bf4f50652b0ae0d07749ef3a9d9446420d67 | 077d186bc928cc74b2ce16490f3835762409ac43 | /Data Structure Alogirtm/19_LongestCommonSubsequence.cpp | 5efc47fc5e4c62f5705df91a322733947900a963 | [] | no_license | suvaw/Datastructure | 52e21ec6d2de4dd113c502b508f453a2aa90ffdb | 648d2c55936b58df3dc96679018ac2dbaceebabf | refs/heads/main | 2022-12-26T02:34:10.045434 | 2020-10-04T19:07:34 | 2020-10-04T19:07:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,348 | cpp | //C Program for Longest Common Subsequence Problem
#include<stdio.h>
#include<string.h>
int i,j,m,n,c[20][20];
char x[20],y[20],b[20][20];
void print(int i,int j)
{
if(i==0 || j==0)
return;
if(b[i][j]=='c')
{
print(i-1,j-1);
printf("%c",x[i-1]);
}
else if(b[i][j]=='u')
print(i-1,j);
else
print(i,j-1);
}
void lcs()
{
m=strlen(x);
n=strlen(y);
for(i=0;i<=m;i++)
c[i][0]=0;
for(i=0;i<=n;i++)
c[0][i]=0;
//c, u and l denotes cross, upward and downward directions respectively
for(i=1;i<=m;i++)
for(j=1;j<=n;j++)
{
if(x[i-1]==y[j-1])
{
c[i][j]=c[i-1][j-1]+1;
b[i][j]='c';
}
else if(c[i-1][j]>=c[i][j-1])
{
c[i][j]=c[i-1][j];
b[i][j]='u';
}
else
{
c[i][j]=c[i][j-1];
b[i][j]='l';
}
}
}
int main()
{
printf("Enter 1st sequence:");
scanf("%s",x);
printf("Enter 2nd sequence:");
scanf("%s",y);
printf("\nThe Longest Common Subsequence is ");
lcs();
print(m,n);
return 0;
} | [
"[email protected]"
] | |
7bfdc014b7ff9e9ef3451fa2f16f0a1fce367310 | a668c69f776ecf887ceddb29c58a1ad2991703bf | /main.cpp | 3c8b5cd19b00843dc64718730d2a4997f5b42c5d | [] | no_license | Mulperi/mulperi-engine | 1fde0d81c8c9a7592c824f3512694852750c7304 | 7fc3505477a478f405925e40df174d28d01347d2 | refs/heads/main | 2023-06-14T12:58:27.190621 | 2021-07-11T11:26:29 | 2021-07-11T11:26:29 | 382,315,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,563 | cpp | #include "include/SDL2/SDL.h"
#include <stdio.h>
#include "mulperi.hpp"
#include "mulperi_sdl.hpp"
#include <string>
#include "include/box2d/box2d.h"
// Windows compile: g++ main.cpp -o main.exe -I include -L . -lmingw32 -lSDL2 -lSDL2main -lbox2d
// Linux compile: g++ main.cpp -o main I /usr/include -lSDL2 -lbox2d
// Actor need to call base class constructor with pointer to input manager.
class Player : public Mulperi::Actor
{
public:
Player(Mulperi::Input *i, std::string type, float x, float y, Mulperi::BODY_TYPE bodyType, b2World *world) : Mulperi::Actor(i, type, x, y, bodyType, world){};
void Update() override
{
if (input->keyboard.up)
{
pos.y--;
}
if (input->keyboard.down)
{
pos.y++;
}
if (input->keyboard.left)
{
pos.x--;
}
if (input->keyboard.right)
{
pos.x++;
}
}
void Render() override
{
}
};
class Peli : public Mulperi::Game
{
public:
Peli(Mulperi::Config gameConfig,
Mulperi::Renderer *gameRenderer,
Mulperi::Input *gameInput) : Mulperi::Game(gameConfig, gameRenderer, gameInput)
{
}
~Peli() {}
void Update() override
{
if (uptime > 3)
{
sceneManager.currentSceneName = "level1";
}
if (sceneManager.currentSceneName == "menu")
{
std::cout << "scene: menu" << std::endl;
}
if (sceneManager.currentSceneName == "level1")
{
std::cout << "scene: level1" << std::endl;
}
}
};
class Level : public Mulperi::Scene
{
public:
Level(Mulperi::Input *input) : Mulperi::Scene(input) {}
void Update() override
{
}
};
int main(int argc, char *argv[])
{
Mulperi::Config config = {"mulperi engine", 512, 512, false, 60};
Mulperi::RendererWrapperSDL renderer;
Mulperi::InputWrapperSDL input;
Peli peli(config, &renderer, &input);
Player player1(&input, "rect", 100, 100, Mulperi::BODY_DYNAMIC, peli.GetWorld());
// b2Vec2 gravity(0, -10);
// b2World world(gravity);
Level level1(&input);
level1.AttachActor("player", &player1);
peli.sceneManager.AttachScene("level1", &level1);
peli.sceneManager.SetCurrentSceneName("level1");
peli.Run();
return EXIT_SUCCESS;
}
// peli.sceneManager.AttachActorToScene("player", &player1, "level1");
// peli.sceneManager.AttachActorToScene("player", &player1, "menu");
// peli.sceneManager.SetCurrentSceneName("menu");
| [
"[email protected]"
] | |
84c307aa7f2f51ff85c7a66f06f41b9b82f2e32e | 15ea215714d51a582bd65ba4b358bfcc5dcf8495 | /include/UserInterface/simobjectproperties.h | c346b68eae3e0fb5fc8030a2bf153ac2f874031b | [] | no_license | IdrisMiles/masterclass | 40d72103dd9da6a09a0700a5c84754d88abb18dd | 1fa32797deeb3738addb4db1ea0c1bd316c90923 | refs/heads/master | 2021-05-01T01:57:38.941026 | 2017-01-11T21:45:26 | 2017-01-11T21:45:26 | 70,266,235 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,006 | h | #ifndef PHSYICSBODYPROPERTIES_H
#define PHSYICSBODYPROPERTIES_H
#include <glm/glm.hpp>
class OpenGLScene;
enum ConstraintTypes {Fixed, Generic6DOFSpring};
struct SimObjectProperties
{
public:
// Physics
struct PHYSBODY
{
unsigned int numSpheres;
float minSphereRad;
float maxSphereRad;
bool overlapSpheres;
bool selfCollisions;
bool reload;
float mass;
float yieldStrength;
float internalSpringStiffness;
float internalSpringDamping;
float GlueStrength;
glm::vec3 linearLowerLimit;
glm::vec3 linearUpperLimit;
glm::vec3 angularLowerLimit;
glm::vec3 angularUpperLimit;
ConstraintTypes constraintType;
float constraintRadius;
}PhysBody;
// Visualsation
struct RENDERMESH
{
glm::vec3 colour;
bool drawMesh;
bool drawSpheres;
bool drawWireframe;
}RenderMesh;
};
#endif // PHSYICSBODYPROPERTIES_H
| [
"[email protected]"
] | |
68bff94579f7228243ce4dbea89340a33670281d | 18fe661d6b2b85d1ef56dfd84054b18687e86a71 | /Software/Signalgenerator/GUI/color.hpp | c808d647bca96e688d21501a6740dd5971aa60b7 | [] | no_license | jankae/Signalgenerator | 48759b95d6f9139b900aee281b43f6e73dd67691 | d6a2e1b0d0a1e50f169ecdedde816751158b143e | refs/heads/master | 2023-02-02T11:04:07.942520 | 2023-02-01T13:38:07 | 2023-02-01T13:38:07 | 189,094,174 | 23 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 996 | hpp | /*
* color.h
*
* Created on: Mar 14, 2017
* Author: jan
*/
#ifndef COLOR_HPP_
#define COLOR_HPP_
#include <stdint.h>
#define COLOR(r, g, b) (uint16_t)(((r>>3)<<11)|((g>>2)<<5)|(b>>3))
#define COLOR_RED COLOR(255,0,0)
#define COLOR_GREEN COLOR(0,255,0)
#define COLOR_BLUE COLOR(0,0,255)
#define COLOR_YELLOW COLOR(255,255,0)
#define COLOR_ORANGE COLOR(240, 120, 72)
#define COLOR_WHITE COLOR(255,255,255)
#define COLOR_BLACK COLOR(0,0,0)
#define COLOR_GRAY COLOR(150, 150, 150)
#define COLOR_DARKGREEN COLOR(0, 100, 0)
#define COLOR_LIGHTGRAY COLOR(180, 180, 180)
#define COLOR_R(c) ((c&0xf800)>>8)
#define COLOR_G(c) ((c&0x07E0)>>3)
#define COLOR_B(c) ((c&0x001F)<<3)
#define COLOR_BG_DEFAULT COLOR_WHITE//COLOR_LIGHTGRAY
#define COLOR_FG_DEFAULT COLOR_BLACK
#define COLOR_UNSELECTABLE COLOR_LIGHTGRAY
#define COLOR_SELECTED COLOR_RED
typedef uint16_t color_t;
color_t color_Tint(color_t orig, color_t tint, uint8_t factor);
#endif /* COLOR_HPP_ */
| [
"[email protected]"
] | |
d591f2f813177823cca7781b8ebce4230adc8c83 | 7ee895037c65022ab61e8547e07251e3ef70bd6c | /Compilers/Project1/main.cpp | b6954a9bd9e301bb795bfcaab0f0387e704e5bd2 | [] | no_license | Shossain97/School | 498fd9fcc56f749a1a9631b57ba6d6d66782408b | 2e6e240f8ffb8fd2a5cfe68b46951670a4451589 | refs/heads/master | 2020-06-02T05:13:28.481926 | 2019-06-09T20:33:44 | 2019-06-09T20:33:44 | 191,048,271 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,438 | cpp | /*
*Name: Shafeen Hossain
*EECS 665 Compilers Assignment 1
* this is the main file it handles all input, transforms from NFA
* to DFA. And ouputs it to the console
*/
#include <iostream>
#include <string>
#include <fstream>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <vector>
#include "list.hpp"
#include "node.hpp"
#include <deque>
void printStateList(DoublyLinkedList* aList);
/*
* creates the list of final states in our DFA
*/
DoublyLinkedList* getFinalState(std::vector<DoublyLinkedList*>* stateVec, DoublyLinkedList* finalStates){
DoublyLinkedList* finalList=new DoublyLinkedList();
std::string finalState;
for(int j=0;j<finalStates->size();j++){
finalState=finalStates->getNode(j)->getItem();
for(int i=0;i<(int)stateVec->size();i++){
if(stateVec->at(i)->contains(finalState)&&!finalList->contains(std::to_string(i+1))){
finalList->addBack(std::to_string(i+1));
}
}
}
printStateList(finalList);
return finalList;
}
/*
* Since each list stores the transition e.g "a" and the states that transition goes to follows
* the final output cannot have the transition thus this function is necessary
*/
void printStateOnly(DoublyLinkedList* aList, std::string inputsString, int inputs){
std::string string=inputsString.substr(0,inputsString.length()-1);
for(int i=0;i<aList->size();i++){
if(string.find(aList->getNode(i)->getItem())!=std::string::npos){
if(i==0){
std::cout<<"{";
}
else{
std::cout<<"} {";
}
}
/*
*each transition has at most one output so we print the state it goes to and the end bracket
*/
if((aList->getNode(i+1)!=nullptr)&&inputsString.find(aList->getNode(i+1)->getItem())==std::string::npos)
{
std::cout<<aList->getNode(i+1)->getItem();
if(i==aList->size()-1){
std::cout<<"}";
}
}
// the final bracket in a line
if(i==aList->size()-1){
std::cout<<"}";
}
}
}
/*
* Was used for debugging and any simple lists that needed printing
* like the final states list
*/
void printStateList(DoublyLinkedList* aList){
std::cout<<"{";
for(int i=0; i<aList->size();i++){
if(i==0){
std::cout<<aList->getNode(i)->getItem();
}
else{
std::cout<<",";
std::cout<<aList->getNode(i)->getItem();
}
}
std::cout<<"}";
}
/*
* prints the final DFA that was created
*/
void printVector(std::vector<DoublyLinkedList*>* aVec, std::string inputsString, int inputs){
for(int i=0;i<(int)aVec->size();i++){
std::cout<<i+1<<" ";
printStateOnly(aVec->at(i), inputsString, inputs);
std::cout<<"\n";
}
}
/*
* This is to make sure we get no repeat states in our vector that only stores the
* NFA states that make up our DFA states
* which will also prevent repeats in our DFA
*/
bool checkContains(std::vector<DoublyLinkedList*>* outputVec, DoublyLinkedList* stateList){
bool doesContain=false;
for(int i=0;i<(int)outputVec->size();i++){
if(outputVec->at(i)->size()==stateList->size()){
doesContain=outputVec->at(i)->isEqual(stateList);
if(doesContain==true){
doesContain=stateList->isEqual(outputVec->at(i));
if(doesContain==true){
break;
}
else{
doesContain=false;
}
}
}
}
return doesContain;
}
/*
* After some testing this function was added later. If state vector does indeed contains a newly created list
* this function will return the state number that the list is equal to
*/
int whereContains(std::vector<DoublyLinkedList*>* outputVec, DoublyLinkedList* stateList){
int position;
bool doesContain=false;
for(int i=0;i<(int)outputVec->size();i++){
if(outputVec->at(i)->size()==stateList->size()){
doesContain=outputVec->at(i)->isEqual(stateList);
if(doesContain==true){
doesContain=stateList->isEqual(outputVec->at(i));
if(doesContain==true){
position=i+1;
break;
}
else{
doesContain=false;
}
}
}
}
return position;
}
/*
* This function takes a new state, and the state we are finding transitions for
* and the DFA vector and creates all the different transitions a state will have
*/
void addTransitions(std::vector<DoublyLinkedList*>* vec, DoublyLinkedList* workingState, DoublyLinkedList* newState, int inputs, std::string startInput, std::string endInput){
//working state is the old state we are developing the new state from
Node* vecNode=nullptr;
int listSize=workingState->size();
Node* listNode=nullptr;
DoublyLinkedList* vecList=nullptr;
for(int i=0;i<listSize;i++){
listNode=workingState->getNode(i);
vecList=vec->at(std::stoi(listNode->getItem())-1);
vecNode=vecList->getNode(vecList->find(startInput));
vecNode=vecNode->getNextNode();
while(vecNode->getItem()!=endInput){
if(!newState->contains(vecNode->getItem())){
newState->addBack(vecNode->getItem());
}
vecNode=vecNode->getNextNode();
}
}
}
/*
* this function takes a new state (list) and the DFA vector and creates the epsilon enclosures
*/
void epsilonEnclosurize(std::vector<DoublyLinkedList*>* vec, DoublyLinkedList* newState, int inputs, std::string startInput){
Node* listNode=nullptr;
Node* vecNode=nullptr;
DoublyLinkedList* vecList=nullptr;
//the size of the list increases as more epsilon transition states are added
//thus more transitions need to be found for the added states as well
for(int i=0;i<newState->size();i++){
listNode=newState->getNode(i);
vecList=vec->at(std::stoi(listNode->getItem())-1);
vecNode=vecList->getNode(vecList->find("E"));//getting the start of the epislon transitions
vecNode=vecNode->getNextNode();//first epsilon transition if it exists
while(vecNode!=nullptr){
//continually adding any epsilon transitions
if(!newState->contains(vecNode->getItem())){
newState->addBack(vecNode->getItem());
}
vecNode=vecNode->getNextNode();
}
}
}
/*This function takes the nfa we stored into the Vector of lists and converts to DFA
*/
void transform(std::vector<DoublyLinkedList*>* vec, std::string inputString, std::string initialState, DoublyLinkedList* finalStates, int inputs){
/*
* declaring the necessary variables
*/
int initial=std::stoi(initialState);
initial=initial-1;
std::vector<DoublyLinkedList*>* stateVec=new std::vector<DoublyLinkedList*>();
//State vector stores all the different states from the NFA that make a new state in the DFA
std::deque<DoublyLinkedList*> stateQueue;
//This deque helps monitor what states we have already found transitions for.
DoublyLinkedList* startState=new DoublyLinkedList();
startState->addBack(initialState);
//Doing the initial enclosure and printing output
std::cout<<"E-enclosure(IO) = ";
epsilonEnclosurize(vec, startState, inputs, inputString);
printStateList(startState);
std::cout<<" = ";
stateVec->push_back(startState);
std::cout<<(int)stateVec->size();
std::cout<<"\n";
/*
* preparing for finding the rest of the transitions
*/
DoublyLinkedList* newState=nullptr;
std::vector<DoublyLinkedList*>*printVec=new std::vector<DoublyLinkedList*>();
// this vector stores all the transitions from state to state for the DFA that we will create
DoublyLinkedList* printList=nullptr;
// a list that will be input into the print Vector
stateQueue.push_front(startState);//adding to deque because we have not found the input transitions yet
std::string tempItem;
int mark=1;
while(stateQueue.empty()==false){
/*
* for every item in the deque (stateQueue) we will try to create a new state
* once every input is exhausted we will pop the item
*/
std::cout<<"\nMark "<<mark<<"\n";
printList=new DoublyLinkedList();
for(int j=0;j<inputs;j++){
printList->addBack(inputString.substr(j,1));
//for the storing of different states
newState=new DoublyLinkedList();
addTransitions(vec, stateQueue.front(), newState, inputs, inputString.substr(j,1),inputString.substr((j+1),1));
if(!newState->isEmpty()){
printStateList(stateQueue.front());
std::cout<<" --"<<inputString.at(j);
std::cout<<"--> ";
printStateList(newState);
std::cout<<"\n";
std::cout<<"E-closure";
printStateList(newState);
epsilonEnclosurize(vec, newState, inputs, inputString);
std::cout<<" = ";
printStateList(newState);
std::cout<<" = ";
//add new state to queue if it's not in the vector of all different states
if((!checkContains(stateVec, newState))&&(!newState->isEmpty())){
stateQueue.push_back(newState);
stateVec->push_back(newState);
printList->addBack(std::to_string((int)stateVec->size()));
std::cout<<stateVec->size();
std::cout<<"\n";
}
else{
printList->addBack(std::to_string(whereContains(stateVec,newState)));
std::cout<<whereContains(stateVec,newState);
std::cout<<"\n";
}
}
}
printVec->push_back(printList);
stateQueue.pop_front();
//popping off the state because we found all its transitions
mark+=1;
}
/*
*printing all the output
*/
std::cout<<"\n";
std::cout<<"Initial State: {1}\n";//will always be 1
std::cout<<"Final States: ";
getFinalState(stateVec, finalStates);
std::cout<<"\n";
std::cout<<"Total States: "<<(int)stateVec->size();
std::cout<<"\n";
printVector(printVec, inputString, inputs);
}
void skipWhiteSpace(std::stringstream &Stream){
while (isspace(Stream.peek())){
Stream.ignore();
}
}
void ReadInUsingStringStream()
{
DoublyLinkedList* tempList=nullptr;
std::vector<DoublyLinkedList*>* inputStates=nullptr;
int curState=0;
std::string Temp;
std::stringstream StorageStream;
StorageStream << std::cin.rdbuf();
DoublyLinkedList* finalStates;
int phase=0; //there are different phases to this file Initial State phase
//Final state phase, Total states phase, the types of input phase,
//and the actual connections between the states. So five states plus a sixth null 0 state.
/* Initial State: {1}
Final States: {11}
Total States: 11
State a b E
1 {} {} {2,5}
2 {3} {} {}
3 {} {4} {}
4 {} {} {8}
5 {} {6} {}
6 {7} {} {}
7 {} {} {8}
8 {} {} {9,11}
9 {10} {} {}
10 {} {} {9,11}
11 {} {} {}
*/
std::string itemStart, itemEnd, somethingElse, numOfStates, initialState, finalState, inputsString,everythingString, temp;
inputsString="";
if( (char ) StorageStream.peek() =='I'){
//detecting the I in Initial State
phase=1;
}
int inputs=0;
while (StorageStream) {
// While stream has characters
if( phase==1){
/*
* This phase just gets the initial state
*/
skipWhiteSpace(StorageStream);
while((char) StorageStream.peek()!='{'){
//getting first bracket
StorageStream.ignore();
}
if((char) StorageStream.peek()=='{'){
StorageStream.ignore();
initialState="";
std::getline(StorageStream, initialState, '}');
phase=2;
}
}
else if(phase==2){
/*
* This phase gets the list of final states
*/
skipWhiteSpace(StorageStream);
while((char) StorageStream.peek()!='{'){
StorageStream.ignore();
}
if((char) StorageStream.peek()=='{'){
StorageStream.ignore();
finalStates=new DoublyLinkedList();
temp="";
finalState="";
while((char) StorageStream.peek()!='}'){
if(!StorageStream){
break;
}
if((char)StorageStream.peek()==','){
finalStates->addBack(finalState);
temp="";
finalState="";
StorageStream.ignore();
}
else{
temp=(char)StorageStream.get();
finalState+=temp;
}
}
finalStates->addBack(finalState);
phase=3;
}
}
else if(phase==3){
/*
* this phase gets the number of states
*/
skipWhiteSpace(StorageStream);
while((char) StorageStream.peek()!=':'){
StorageStream.ignore();
}
StorageStream.ignore();
//ignoring the :
skipWhiteSpace(StorageStream);
numOfStates="";
std::getline(StorageStream, numOfStates, '\n');
phase=4;
}
else if(phase==4){
/*
* This phase gets all the inputs
*/
temp="";
while((char) StorageStream.peek()!='e'){
StorageStream.ignore();
}//end of state word
StorageStream.ignore();//ignores the last e that we ended on in state
skipWhiteSpace(StorageStream);
inputs=0;
while((char) StorageStream.peek()!='E'){
//The end of this line will always have the epsilon
skipWhiteSpace(StorageStream);
temp="";
temp=(char)StorageStream.get();
inputs+=1;
skipWhiteSpace(StorageStream);
inputsString+=temp;
}
inputsString+='E';
if( (char) StorageStream.peek()=='E'){
StorageStream.ignore();
}
phase=5;
inputStates=new std::vector<DoublyLinkedList*>();
}
else if(phase==5){
/*
* this phase will generate the NFA vector of lists
*/
tempList=new DoublyLinkedList();
for(int i=0;i<inputs+1;i++){
temp="";
tempList->add(inputsString.substr(i,1), tempList->size());
//add to linkedlist inputString(i) which will denote the start of the transitions of the next state
skipWhiteSpace(StorageStream);
while((char) StorageStream.peek()!='{'){
StorageStream.ignore();
if(!StorageStream){
break;
}
}
skipWhiteSpace(StorageStream);
if(!StorageStream){
break;
}
if((char)StorageStream.peek()=='{'){
StorageStream.ignore();
}
temp="";
everythingString="";
while((char) StorageStream.peek()!='}'){
if(!StorageStream){
break;
}
if((char)StorageStream.peek()==','){
//add to linked list temp and reset our input strings
tempList->addBack(everythingString);
temp="";
everythingString="";
StorageStream.ignore();
}
else{
//since we don't know how many digits are in the state we take in a
//char and keep adding it to a string until we reach either a comma or the end
temp=(char)StorageStream.get();
everythingString+=temp;
}
}
if(everythingString!=""){
//this is the end of the line of a transition table thus the last piece
//of data for the line has been read so we need to input it
tempList->addBack(everythingString);
everythingString="";
}
if((char) StorageStream.peek()=='}'){
StorageStream.ignore();
}
skipWhiteSpace(StorageStream);
}
if(!StorageStream)
break;
everythingString="";
curState+=1;
inputStates->push_back(tempList);
tempList=nullptr;
skipWhiteSpace(StorageStream);
}
}
//calling transform which will create our DFA
transform(inputStates, inputsString, initialState, finalStates, inputs);
}
int main(int argc, char **argv){
ReadInUsingStringStream();
return 0;
}
| [
"[email protected]"
] | |
8e91a3f32c6ff7d5c01df4aeb66b3bb0028e0e77 | 7ffdb6ed8100b6afaf94a778c17aef5469ba5249 | /RoundRobin/upfront/upfront/main.cpp | b4a7477588db9c1233839f0b779f9a320bc27df4 | [] | no_license | mprufer/mprufer | ae79079f5d7f31c2fb17ba0d60a342ac1b85b28f | afbef8b11c3c5ffbb11d0c2cd1266697a6982cdf | refs/heads/master | 2021-05-07T04:55:35.329389 | 2018-03-01T22:41:29 | 2018-03-01T22:41:29 | 111,334,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 261 | cpp | //
// main.cpp
// upfront
//
// Created by minnah on 2/8/18.
// Copyright © 2018 minnah. All rights reserved.
//
#include <iostream>
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
| [
"[email protected]"
] | |
765b66028922791c73e66a23e48501e7d34b7188 | cfa91d5f5f258fb89e3f99da71b6b5630cfdbe8e | /google/cloud/bigtable/internal/async_retry_unary_rpc_and_poll_test.cc | 914e3dd86e71ff5046f46e98331fad002dc237c7 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | VPeruS/google-cloud-cpp | 6c712fcbbe051eca5a5a76b2a50f49df5696972a | 727bc4f4676a75a97cec91247bcdd78741cf7204 | refs/heads/master | 2021-07-29T23:27:55.966634 | 2021-07-23T20:25:56 | 2021-07-23T20:25:56 | 193,929,100 | 0 | 0 | Apache-2.0 | 2021-07-25T11:59:56 | 2019-06-26T15:13:45 | C++ | UTF-8 | C++ | false | false | 10,381 | cc | // Copyright 2020 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 "google/cloud/bigtable/internal/async_retry_unary_rpc_and_poll.h"
#include "google/cloud/bigtable/admin_client.h"
#include "google/cloud/bigtable/completion_queue.h"
#include "google/cloud/bigtable/internal/async_retry_op.h"
#include "google/cloud/bigtable/testing/mock_instance_admin_client.h"
#include "google/cloud/bigtable/testing/mock_response_reader.h"
#include "google/cloud/bigtable/testing/table_test_fixture.h"
#include "google/cloud/testing_util/chrono_literals.h"
#include "google/cloud/testing_util/fake_completion_queue_impl.h"
#include "google/cloud/testing_util/mock_async_response_reader.h"
#include "google/cloud/testing_util/status_matchers.h"
#include <google/bigtable/admin/v2/bigtable_table_admin.grpc.pb.h>
#include <gmock/gmock.h>
#include <thread>
namespace google {
namespace cloud {
namespace bigtable {
inline namespace BIGTABLE_CLIENT_NS {
namespace internal {
namespace {
namespace btproto = google::bigtable::admin::v2;
using ::google::cloud::testing_util::IsContextMDValid;
using ::google::cloud::testing_util::chrono_literals::operator"" _ms;
using MockAsyncLongrunningOpReader =
::google::cloud::testing_util::MockAsyncResponseReader<
google::longrunning::Operation>;
class AsyncStartPollAfterRetryUnaryRpcTest
: public bigtable::testing::TableTestFixture {
public:
AsyncStartPollAfterRetryUnaryRpcTest()
: TableTestFixture(CompletionQueue(
std::make_shared<testing_util::FakeCompletionQueueImpl>())),
k_project_id("the-project"),
k_instance_id("the-instance"),
k_cluster_id("the-cluster"),
k_table_id("the-table"),
no_retries{
std::chrono::hours(0),
std::chrono::hours(0),
std::chrono::hours(0),
},
polling_policy(bigtable::DefaultPollingPolicy(no_retries)),
rpc_retry_policy(
bigtable::DefaultRPCRetryPolicy(internal::kBigtableLimits)),
rpc_backoff_policy(
bigtable::DefaultRPCBackoffPolicy(internal::kBigtableLimits)),
metadata_update_policy(
"projects/" + k_project_id + "/instances/" + k_instance_id,
MetadataParamTypes::PARENT),
client(std::make_shared<testing::MockInstanceAdminClient>(
ClientOptions().DisableBackgroundThreads(cq_))),
create_cluster_reader(
absl::make_unique<MockAsyncLongrunningOpReader>()),
get_operation_reader(
absl::make_unique<MockAsyncLongrunningOpReader>()) {
EXPECT_CALL(*client, project())
.WillRepeatedly(::testing::ReturnRef(k_project_id));
}
void ExpectCreateCluster(grpc::StatusCode mocked_code) {
EXPECT_CALL(*create_cluster_reader, Finish)
.WillOnce([mocked_code](longrunning::Operation* response,
grpc::Status* status, void*) {
response->set_name("create_cluster_op_1");
*status = mocked_code != grpc::StatusCode::OK
? grpc::Status(mocked_code, "mocked-status")
: grpc::Status::OK;
});
EXPECT_CALL(*client, AsyncCreateCluster)
.WillOnce([this](grpc::ClientContext* context,
btproto::CreateClusterRequest const& request,
grpc::CompletionQueue*) {
EXPECT_STATUS_OK(IsContextMDValid(
*context,
"google.bigtable.admin.v2.BigtableInstanceAdmin.CreateCluster",
google::cloud::internal::ApiClientHeader()));
EXPECT_EQ("my_newly_created_cluster", request.cluster_id());
// This is safe, see comments in MockAsyncResponseReader.
return std::unique_ptr<
grpc::ClientAsyncResponseReaderInterface<longrunning::Operation>>(
create_cluster_reader.get());
});
}
void ExpectPolling(bool polling_finished,
grpc::StatusCode polling_error_code) {
EXPECT_CALL(*get_operation_reader, Finish)
.WillOnce([polling_finished, polling_error_code](
longrunning::Operation* response, grpc::Status* status,
void*) {
if (!polling_finished) {
*status = (polling_error_code != grpc::StatusCode::OK)
? grpc::Status(polling_error_code, "mocked-status")
: grpc::Status::OK;
return;
}
response->set_done(true);
if (polling_error_code != grpc::StatusCode::OK) {
auto error = absl::make_unique<google::rpc::Status>();
error->set_code(polling_error_code);
error->set_message("something is broken");
response->set_allocated_error(error.release());
} else {
btproto::Cluster response_content;
response_content.set_name("my_newly_created_cluster");
auto any = absl::make_unique<google::protobuf::Any>();
any->PackFrom(response_content);
response->set_allocated_response(any.release());
}
});
EXPECT_CALL(*client, AsyncGetOperation)
.WillOnce([this](grpc::ClientContext* context,
longrunning::GetOperationRequest const& request,
grpc::CompletionQueue*) {
EXPECT_STATUS_OK(IsContextMDValid(
*context, "google.longrunning.Operations.GetOperation",
google::cloud::internal::ApiClientHeader()));
EXPECT_EQ("create_cluster_op_1", request.name());
// This is safe, see comments in MockAsyncResponseReader.
return std::unique_ptr<
grpc::ClientAsyncResponseReaderInterface<longrunning::Operation>>(
get_operation_reader.get());
});
}
future<StatusOr<btproto::Cluster>> SimulateCreateCluster() {
btproto::CreateClusterRequest request;
request.set_cluster_id("my_newly_created_cluster");
auto fut = internal::AsyncStartPollAfterRetryUnaryRpc<btproto::Cluster>(
__func__, std::move(polling_policy), std::move(rpc_retry_policy),
std::move(rpc_backoff_policy),
internal::ConstantIdempotencyPolicy(
google::cloud::internal::Idempotency::kNonIdempotent),
std::move(metadata_update_policy), client,
[this](grpc::ClientContext* context,
btproto::CreateClusterRequest const& request,
grpc::CompletionQueue* cq) {
return client->AsyncCreateCluster(context, request, cq);
},
std::move(request), cq_);
EXPECT_EQ(std::future_status::timeout, fut.wait_for(1_ms));
EXPECT_EQ(1U, cq_impl_->size()); // AsyncCreateCluster
cq_impl_->SimulateCompletion(true);
return fut;
}
std::string const k_project_id;
std::string const k_instance_id;
std::string const k_cluster_id;
std::string const k_table_id;
internal::RPCPolicyParameters const no_retries;
std::unique_ptr<PollingPolicy> polling_policy;
std::unique_ptr<RPCRetryPolicy> rpc_retry_policy;
std::unique_ptr<RPCBackoffPolicy> rpc_backoff_policy;
MetadataUpdatePolicy metadata_update_policy;
std::shared_ptr<testing::MockInstanceAdminClient> client;
std::unique_ptr<MockAsyncLongrunningOpReader> create_cluster_reader;
std::unique_ptr<MockAsyncLongrunningOpReader> get_operation_reader;
};
TEST_F(AsyncStartPollAfterRetryUnaryRpcTest, EverythingSucceeds) {
ExpectCreateCluster(grpc::StatusCode::OK);
ExpectPolling(true, grpc::StatusCode::OK);
auto fut = SimulateCreateCluster();
EXPECT_EQ(std::future_status::timeout, fut.wait_for(1_ms));
EXPECT_EQ(1U, cq_impl_->size()); // AsyncGetOperation
cq_impl_->SimulateCompletion(true);
auto res = fut.get();
EXPECT_TRUE(cq_impl_->empty());
ASSERT_STATUS_OK(res);
EXPECT_EQ("my_newly_created_cluster", res->name());
}
TEST_F(AsyncStartPollAfterRetryUnaryRpcTest, NoPollingWhenCreateClusterFails) {
ExpectCreateCluster(grpc::StatusCode::PERMISSION_DENIED);
auto fut = SimulateCreateCluster();
auto res = fut.get();
ASSERT_FALSE(res);
EXPECT_EQ(StatusCode::kPermissionDenied, res.status().code());
}
TEST_F(AsyncStartPollAfterRetryUnaryRpcTest, PollTimesOutReturnsUnknown) {
ExpectCreateCluster(grpc::StatusCode::OK);
ExpectPolling(false, grpc::StatusCode::OK);
auto fut = SimulateCreateCluster();
EXPECT_EQ(std::future_status::timeout, fut.wait_for(1_ms));
EXPECT_EQ(1U, cq_impl_->size()); // AsyncGetOperation
cq_impl_->SimulateCompletion(true);
auto res = fut.get();
EXPECT_TRUE(cq_impl_->empty());
ASSERT_FALSE(res);
EXPECT_EQ(StatusCode::kUnknown, res.status().code());
}
TEST_F(AsyncStartPollAfterRetryUnaryRpcTest,
PollExhaustedOnFailuresReturnsLastError) {
ExpectCreateCluster(grpc::StatusCode::OK);
ExpectPolling(false, grpc::StatusCode::UNAVAILABLE);
auto fut = SimulateCreateCluster();
EXPECT_EQ(std::future_status::timeout, fut.wait_for(1_ms));
EXPECT_EQ(1U, cq_impl_->size()); // AsyncGetOperation
cq_impl_->SimulateCompletion(true);
auto res = fut.get();
EXPECT_TRUE(cq_impl_->empty());
ASSERT_FALSE(res);
EXPECT_EQ(StatusCode::kUnavailable, res.status().code());
}
TEST_F(AsyncStartPollAfterRetryUnaryRpcTest, FinalErrorIsPassedOn) {
ExpectCreateCluster(grpc::StatusCode::OK);
ExpectPolling(true, grpc::StatusCode::UNAVAILABLE);
auto fut = SimulateCreateCluster();
EXPECT_EQ(std::future_status::timeout, fut.wait_for(1_ms));
EXPECT_EQ(1U, cq_impl_->size()); // AsyncGetOperation
cq_impl_->SimulateCompletion(true);
auto res = fut.get();
EXPECT_TRUE(cq_impl_->empty());
ASSERT_FALSE(res);
EXPECT_EQ(StatusCode::kUnavailable, res.status().code());
}
} // namespace
} // namespace internal
} // namespace BIGTABLE_CLIENT_NS
} // namespace bigtable
} // namespace cloud
} // namespace google
| [
"[email protected]"
] | |
b6290ee7f3da08de279ae1a3ebfe71e31c4ce080 | 19f039b593be9401d479b15f97ecb191ef478f46 | /RSA-SW/PSME/common/agent-framework/include/agent-framework/module/logical_drive.hpp | 1cf78e4ddd5eab1675dacece751ef29511e17dab | [
"MIT",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | isabella232/IntelRackScaleArchitecture | 9a28e34a7f7cdc21402791f24dad842ac74d07b6 | 1206d2316e1bd1889b10a1c4f4a39f71bdfa88d3 | refs/heads/master | 2021-06-04T08:33:27.191735 | 2016-09-29T09:18:10 | 2016-09-29T09:18:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,882 | hpp | /*!
* @copyright
* Copyright (c) 2015 Intel Corporation
*
* @copyright
* 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
*
* @copyright
* http://www.apache.org/licenses/LICENSE-2.0
*
* @copyright
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* @file logical_drive.hpp
* @brief LogicalDrive
* */
#ifndef AGENT_FRAMEWORK_MODULE_LOGICAL_DRIVE_HPP
#define AGENT_FRAMEWORK_MODULE_LOGICAL_DRIVE_HPP
#include "agent-framework/module/collection.hpp"
#include "agent-framework/module/oem_data.hpp"
#include "agent-framework/module/block_device.hpp"
#include "agent-framework/module/hard_drive.hpp"
#include <string>
#include <vector>
#include <memory>
namespace agent_framework {
namespace generic {
/*! LogicalDrive */
class LogicalDrive : public BlockDevice {
public:
/*!
* Const strings for LVM names
* */
class LvmTypes {
public:
static constexpr const char VOLUME_GROUP[] = "LVG";
static constexpr const char LOGICAL_VOLUME[] = "LV";
static constexpr const char PHYSICAL_VOLUME[] = "PV";
};
/*! LogicalDrive pointers */
using LogicalDriveSharedPtr = std::shared_ptr<LogicalDrive>;
using LogicalDriveWeakPtr = std::weak_ptr<LogicalDrive>;
using HardDriveSharedPtr = HardDrive::HardDriveSharedPtr;
/*! LogicalDrive constructor */
LogicalDrive(const std::string& device_type) : BlockDevice(device_type) {}
/*! Creates LogicalDrive unique object */
static LogicalDriveSharedPtr make_logical_drive() {
return LogicalDriveSharedPtr{ new LogicalDrive("LogicalDrive") };
}
/*!
* Get Logical Drive size in GB
*
* @return Logical Drive size in GB
* */
double get_capacity_gb() const { return m_capacityGB; }
/*!
* @brief Set LogicalDrive size in GB
* @param[in] logical_drive_capacity_gb LogicalVolume's size in GB
* */
void set_capacity_gb(const double logical_drive_capacity_gb) {
m_capacityGB = logical_drive_capacity_gb;
}
/*!
* Get the name
*
* @return LogicalDrive name
* */
const std::string& get_name() const { return m_name; }
/*!
* @brief Set logical_drive name
* @param[in] logical_drive_name LogicalDrive name
* */
void set_name(const std::string& logical_drive_name) {
m_name = logical_drive_name;
}
/*!
* Get the type of logical drive
*
* @return LogicalDrive type
* */
const std::string& get_type() const { return m_type; }
/*!
* @brief Set logical_drive type
* @param[in] logical_drive_type LogicalDrive type
* */
void set_type(const std::string& logical_drive_type) {
m_type = logical_drive_type;
}
/*!
* Get the logical drive mode
*
* @return LogicalDrive mode
* */
const std::string& get_mode() const { return m_mode; }
/*!
* @brief Set logical_drive mode
* @param[in] logical_drive_mode LogicalDrive mode
* */
void set_mode(const std::string& logical_drive_mode) {
m_mode = logical_drive_mode;
}
/*!
* Get the logical drive master drive uuid
*
* @return LogicalDrive master drive uuid
* */
const std::string& get_master() const { return m_master; }
/*!
* @brief Set logical_drive master drive uuid
* @param[in] logical_drive_master LogicalDrive master drive uuid
* */
void set_master(const std::string& logical_drive_master) {
m_master = logical_drive_master;
}
/*!
* Get information about image populated on the logical drive
*
* @return LogicalDrive image info
* */
const std::string& get_image() const { return m_image; }
/*!
* @brief Set logical_drive image info
* @param[in] logical_drive_image LogicalDrive image info
* */
void set_image(const std::string& logical_drive_image) {
m_image = logical_drive_image;
}
/*!
* Get information if the logical drive is bootable
*
* @return LogicalDrive bootable option
* */
bool is_bootable() const { return m_bootable; }
/*!
* @brief Set if the logical_drive is bootable
* @param[in] logical_drive_is_bootable LogicalDrive bootable option
* */
void set_bootable(const bool logical_drive_is_bootable) {
m_bootable = logical_drive_is_bootable;
}
/*!
* Get information if the logical drive is write/delete protected
*
* @return LogicalDrive protected flag
* */
bool is_protected() const { return m_protected; }
/*!
* @brief Set the logical_drive write/delete protection flag
* @param[in] logical_drive_is_protected LogicalDrive protected flag
* */
void set_protected(const bool logical_drive_is_protected) {
m_protected = logical_drive_is_protected;
}
/*!
* Get information if the logical drive is snapshot
*
* @return LogicalDrive snapshot option
* */
bool is_snapshot() const { return m_snapshot; }
/*!
* @brief Set if the logical_drive is snapshot
* @param[in] snapshot_flag LogicalDrive snapshot option
* */
void set_snapshot(const bool snapshot_flag) {
m_snapshot = snapshot_flag;
}
/*!
* Get OEM specific data
*
* @return LogicalDrive OEM specific data
* */
const OEMData& get_oem() const { return m_oem; }
/*!
* @brief Set the logical_drive OEM specific data
* @param[in] logical_drive_oem LogicalDriveOEM data
* */
void set_oem(const OEMData& logical_drive_oem) {
m_oem = logical_drive_oem;
}
/*!
* @brief Add new logical drive to Logical Drives collection
*
* @param[in] logical_drive Pointer to new logical drive.
* */
void add_logical_drive(LogicalDriveSharedPtr logical_drive) {
m_logical_drives.push_back(logical_drive);
}
/*!
* @brief Return vector of logical drives.
*
* @return Reference to vector of logical drives.
* */
const std::vector<LogicalDriveSharedPtr>& get_logical_drives() const {
return m_logical_drives;
}
/*!
* @brief Find logical drive with given UUID
* @param[in] uuid Logical drive UUID
* @return Logical drive with given UUID
* */
LogicalDriveWeakPtr find_logical_drive(const string& uuid) const;
/*!
* @brief Delete logical drive with given UUID
* @param[in] uuid Logical drive UUID
* @return true if deleted successfuly, false otherwise
* */
bool delete_logical_drive(const std::string& uuid);
/*!
* @brief Add new hard drive to HardDrives collection
*
* @param[in] hard_drive Pointer to new physical drive.
* */
void add_hard_drive(const HardDriveSharedPtr& hard_drive) {
m_hard_drives.push_back(hard_drive);
}
/*!
* @brief Return vector of hard drives.
*
* @return Reference to vector of hard drives.
* */
const std::vector<HardDriveSharedPtr>& get_hard_drives() const {
return m_hard_drives;
}
/*!
* @brief Return collection object.
*
* @return Reference to collections.
* */
const Collection& get_collections() const {
return m_collections;
}
/*!
* @brief Add new collection
*
* @param[in] entry New collection entry.
* */
void add_collection(const Collection::CollectionEntry& entry) {
m_collections.add_collection_entry(entry);
}
/*!
* @brief Set volume group
*
* @param[in] volume_group Pointer to volume_group
* */
void set_volume_group(LogicalDriveSharedPtr& volume_group) {
m_volume_group = volume_group;
}
/*!
* @brief Return volume group
*
* @return Pointer to volume group
* */
const LogicalDriveSharedPtr& get_volume_group() const {
return m_volume_group;
}
~LogicalDrive();
private:
std::string m_name{};
double m_capacityGB{};
std::string m_type{};
std::string m_mode{};
std::string m_master{};
std::string m_image{};
bool m_bootable{};
bool m_protected{};
bool m_snapshot{};
OEMData m_oem{};
std::vector<LogicalDriveSharedPtr> m_logical_drives{};
std::vector<HardDriveSharedPtr> m_hard_drives{};
Collection m_collections{};
LogicalDriveSharedPtr m_volume_group{};
};
}
}
#endif /* AGENT_FRAMEWORK_MODULE_LOGICAL_DRIVE_HPP */
| [
"[email protected]"
] | |
93d0eb03fdde86bdb1c9f5a60ddb36abdc76ae45 | 28f23094618fca27f4479b790e3e3f98ddcf3933 | /MeshManipulation/Lab7/Temp/StagingArea/Data/il2cppOutput/mscorlib10.cpp | 16e840f9aae6d7a5cbfeac002a502a4ad96b9694 | [] | no_license | JustinOmariLao/Unity_ThreeJS_Projects | 02e833fa769e03445b6f46ee95cdfc04445afd07 | 9333b2ae1138af93f2ba012aca555d2ab525d7ee | refs/heads/main | 2022-12-30T11:30:53.833737 | 2020-10-09T20:16:07 | 2020-10-09T20:16:07 | 302,735,156 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,918,327 | 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.Runtime.Remoting.Contexts/Context.h"
#include "icalls/mscorlib/System.Runtime.Remoting.Messaging/AsyncResult.h"
#include "icalls/mscorlib/System.Runtime.Remoting.Proxies/RealProxy.h"
#include "icalls/mscorlib/System.Runtime.Remoting/RemotingServices.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 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);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
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>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
struct GenericVirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct GenericVirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
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, typename T3>
struct InterfaceActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
struct GenericInterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2;
// Mono.RuntimeStructs/MonoClass
struct MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301;
// Mono.RuntimeStructs/RemoteClass
struct RemoteClass_t36384D53B9A904B733FDF999D6378397DBD31D47;
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196;
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63;
// Mono.Xml.SmallXmlParser/IContentHandler
struct IContentHandler_tD4FEA788515878D2DFEA5CBE7F6A008DD7629B8E;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>
struct Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>
struct Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A;
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>
struct Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934;
// System.Collections.Generic.List`1<System.LocalDataStore>
struct List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>
struct List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal>
struct List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
// System.Collections.ICollection
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IDictionaryEnumerator
struct IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
// System.Collections.IList
struct IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA;
// System.Collections.Queue
struct Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3;
// System.Collections.Stack
struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643;
// System.ContextBoundObject
struct ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
// System.Func`2<System.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IDisposable
struct IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A;
// System.IO.MemoryStream
struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E;
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidCastException
struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE;
// System.LocalDataStoreElement[]
struct LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9;
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E;
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF;
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498;
// System.MonoTypeInfo
struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// 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.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF;
// 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.MethodInfo[]
struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B;
// System.Reflection.MonoMethod
struct MonoMethod_t;
// System.Reflection.ParameterInfo
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
// System.Reflection.RuntimeConstructorInfo
struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D;
// System.Reflection.StrongNameKeyPair
struct StrongNameKeyPair_tD9AA282E59F4526338781AFD862680ED461FCCFD;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1F5CB9960D7AD6C3305475C98A397BD0B9C64020;
// System.Runtime.Remoting.ActivatedClientTypeEntry
struct ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD;
// System.Runtime.Remoting.ActivatedServiceTypeEntry
struct ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818;
// System.Runtime.Remoting.Activation.IActivator
struct IActivator_t15974073F0D524FFDBDED25A50325BECD183BA87;
// System.Runtime.Remoting.Activation.IConstructionCallMessage
struct IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D;
// System.Runtime.Remoting.ChannelData
struct ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D;
// System.Runtime.Remoting.ChannelInfo
struct ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9;
// System.Runtime.Remoting.Channels.CrossAppDomainData
struct CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE;
// System.Runtime.Remoting.Channels.CrossAppDomainSink
struct CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73;
// System.Runtime.Remoting.ClientActivatedIdentity
struct ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416;
// System.Runtime.Remoting.ClientIdentity
struct ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9;
// System.Runtime.Remoting.ConfigHandler
struct ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376;
// System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724;
// System.Runtime.Remoting.Contexts.ContextCallbackObject
struct ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0;
// System.Runtime.Remoting.Contexts.CrossContextChannel
struct CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554;
// System.Runtime.Remoting.Contexts.CrossContextChannel/ContextRestoreSink
struct ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4;
// System.Runtime.Remoting.Contexts.CrossContextDelegate
struct CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection/DynamicPropertyReg
struct DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F;
// System.Runtime.Remoting.Contexts.IContextAttribute
struct IContextAttribute_t79D0ADC6F379C29D95950D6B8348D6DA4A356BD5;
// System.Runtime.Remoting.Contexts.IContextAttribute[]
struct IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C;
// System.Runtime.Remoting.Contexts.IContextProperty
struct IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311;
// System.Runtime.Remoting.Contexts.IContextProperty[]
struct IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB;
// System.Runtime.Remoting.Contexts.IDynamicMessageSink
struct IDynamicMessageSink_t8EECDC47E2C48FAF02D5E1507699FDDFD0DFE78D;
// System.Runtime.Remoting.Contexts.IDynamicProperty
struct IDynamicProperty_t8DD3BC470CC26DE9C84615CFD5B604D2E06FF13F;
// System.Runtime.Remoting.DisposerReplySink
struct DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13;
// System.Runtime.Remoting.EnvoyInfo
struct EnvoyInfo_tB3A3AF8D7FCFFF5C5468B6C3EDFE186015B1CD09;
// System.Runtime.Remoting.FormatterData
struct FormatterData_t3580FF512A069A7768CA03968B0D8A5F2EED6C6A;
// System.Runtime.Remoting.IChannelInfo
struct IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D;
// System.Runtime.Remoting.IEnvoyInfo
struct IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148;
// System.Runtime.Remoting.IRemotingTypeInfo
struct IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C;
// System.Runtime.Remoting.Identity
struct Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6;
// System.Runtime.Remoting.Lifetime.ILease
struct ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B;
// System.Runtime.Remoting.Lifetime.ISponsor
struct ISponsor_tE2236D41CBD818B492F52B2B3B135EFB2816A6EC;
// System.Runtime.Remoting.Lifetime.Lease
struct Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3;
// System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate
struct RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652;
// System.Runtime.Remoting.Lifetime.LeaseManager
struct LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727;
// System.Runtime.Remoting.Lifetime.LeaseSink
struct LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0;
// System.Runtime.Remoting.Messaging.ArgInfo
struct ArgInfo_t67419B6DE53980148631C33DF785307579134942;
// System.Runtime.Remoting.Messaging.AsyncResult
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2;
// System.Runtime.Remoting.Messaging.CADArgHolder
struct CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A;
// System.Runtime.Remoting.Messaging.CADMessageBase
struct CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B;
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
struct CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8;
// System.Runtime.Remoting.Messaging.CADMethodRef
struct CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759;
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
struct CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C;
// System.Runtime.Remoting.Messaging.CADObjRef
struct CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591;
// System.Runtime.Remoting.Messaging.CallContext
struct CallContext_tFB5D4D2D6BB4F51BA82A549CEA456DD9608CDA1A;
// System.Runtime.Remoting.Messaging.CallContextRemotingData
struct CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347;
// System.Runtime.Remoting.Messaging.CallContextSecurityData
struct CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF;
// System.Runtime.Remoting.Messaging.ClientContextReplySink
struct ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C;
// System.Runtime.Remoting.Messaging.ClientContextTerminatorSink
struct ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB;
// System.Runtime.Remoting.Messaging.ConstructionCall
struct ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE;
// System.Runtime.Remoting.Messaging.ConstructionCallDictionary
struct ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677;
// System.Runtime.Remoting.Messaging.ConstructionResponse
struct ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2;
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink
struct EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806;
// System.Runtime.Remoting.Messaging.ErrorMessage
struct ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D;
// System.Runtime.Remoting.Messaging.Header
struct Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C;
// System.Runtime.Remoting.Messaging.HeaderHandler
struct HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F;
// System.Runtime.Remoting.Messaging.Header[]
struct HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC;
// System.Runtime.Remoting.Messaging.IMessage
struct IMessage_t959A000023FFE2ED91C7AF8BB68CB6482888F8EB;
// System.Runtime.Remoting.Messaging.IMessageCtrl
struct IMessageCtrl_t51110C788CCAABE4722884C5FBAF98D97E90DA3D;
// System.Runtime.Remoting.Messaging.IMessageSink
struct IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C;
// System.Runtime.Remoting.Messaging.IMethodCallMessage
struct IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386;
// System.Runtime.Remoting.Messaging.IMethodMessage
struct IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420;
// System.Runtime.Remoting.Messaging.IMethodReturnMessage
struct IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF;
// System.Runtime.Remoting.Messaging.IllogicalCallContext
struct IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179;
// System.Runtime.Remoting.Messaging.LogicalCallContext
struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E;
// System.Runtime.Remoting.Messaging.MCMDictionary
struct MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434;
// System.Runtime.Remoting.Messaging.MessageDictionary
struct MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5;
// System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator
struct DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9;
// System.Runtime.Remoting.Messaging.MethodCall
struct MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA;
// System.Runtime.Remoting.Messaging.MethodResponse
struct MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907;
// System.Runtime.Remoting.Messaging.MethodReturnDictionary
struct MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48;
// System.Runtime.Remoting.Messaging.MonoMethodMessage
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234;
// System.Runtime.Remoting.Messaging.ObjRefSurrogate
struct ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547;
// System.Runtime.Remoting.Messaging.RemotingSurrogate
struct RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA;
// System.Runtime.Remoting.Messaging.RemotingSurrogateSelector
struct RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44;
// System.Runtime.Remoting.Messaging.ReturnMessage
struct ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03;
// System.Runtime.Remoting.Messaging.ServerContextTerminatorSink
struct ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0;
// System.Runtime.Remoting.Messaging.ServerObjectReplySink
struct ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8;
// System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink
struct ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD;
// System.Runtime.Remoting.Messaging.StackBuilderSink
struct StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897;
// System.Runtime.Remoting.Metadata.SoapAttribute
struct SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE;
// System.Runtime.Remoting.Metadata.SoapFieldAttribute
struct SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C;
// System.Runtime.Remoting.Metadata.SoapMethodAttribute
struct SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722;
// System.Runtime.Remoting.Metadata.SoapParameterAttribute
struct SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6;
// System.Runtime.Remoting.Metadata.SoapTypeAttribute
struct SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A;
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2;
// System.Runtime.Remoting.ProviderData
struct ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F;
// System.Runtime.Remoting.Proxies.ProxyAttribute
struct ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF;
// System.Runtime.Remoting.Proxies.RealProxy
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF;
// System.Runtime.Remoting.Proxies.RemotingProxy
struct RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9;
// System.Runtime.Remoting.Proxies.TransparentProxy
struct TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000;
// System.Runtime.Remoting.RemotingException
struct RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C;
// System.Runtime.Remoting.RemotingServices/CACD
struct CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2;
// System.Runtime.Remoting.SingleCallIdentity
struct SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083;
// System.Runtime.Remoting.SingletonIdentity
struct SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5;
// System.Runtime.Remoting.TypeInfo
struct TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE;
// System.Runtime.Remoting.WellKnownClientTypeEntry
struct WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053;
// System.Runtime.Remoting.WellKnownServiceTypeEntry
struct WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
// System.Runtime.Serialization.ISerializationSurrogate
struct ISerializationSurrogate_t23038B6F4E182A38826DE971AAC78E29FDBFA816;
// System.Runtime.Serialization.ISurrogateSelector
struct ISurrogateSelector_t4C99617DAC31689CEC0EDB09B067A65E80E1C3EA;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationBinder
struct SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Runtime.Serialization.SerializationInfoEnumerator
struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5;
// System.RuntimeType
struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Security.Principal.IPrincipal
struct IPrincipal_t63FD7F58FBBE134C8FE4D31710AAEA00B000F0BF;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
// 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.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// System.Threading.EventWaitHandle
struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98;
// System.Threading.ExecutionContext
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70;
// System.Threading.InternalThread
struct InternalThread_tA4C58C2A7D15AF43C3E7507375E6D31DBBE7D192;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.RegisteredWaitHandle
struct RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
// System.Threading.SynchronizationContext
struct SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7;
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
// System.Threading.Thread
struct Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7;
// System.Threading.ThreadAbortException
struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468;
// System.Threading.Timer
struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553;
// System.Threading.Timer/Scheduler
struct Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9;
// System.Threading.TimerCallback
struct TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219;
// System.Threading.WaitCallback
struct WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC;
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6;
// System.Threading.WaitOrTimerCallback
struct WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.Version
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.WeakReference
struct WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D;
IL2CPP_EXTERN_C RuntimeClass* ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgInfo_t67419B6DE53980148631C33DF785307579134942_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* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_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* CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CrossAppDomainChannel_tDB80218239B9773152AF9FEF5AFA01DD2E2C4FE6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_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* IActivator_t15974073F0D524FFDBDED25A50325BECD183BA87_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICloneable_tB0EF2757D90DF969033D641822566814815EB134_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConstructionReturnMessage_tD78C6B12128C5D713E531737E203DDB7CC447B2B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContributeClientContextSink_tD2FDF822E8DE6FFEAAF9CEEE8D3BC738267AB408_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContributeDynamicSink_t82A806D1417AFB21C9AC160C2D6B75C2AAEACC97_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContributeEnvoySink_tA10E4EC3942D2871B006A519489F2D637D760964_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContributeObjectSink_t9EBF2882BE76CE70E53BF0DBC22310F47F52644E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IContributeServerContextSink_t36D9256ED2C07E350009A8633130645D3FD55A4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_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* IDynamicMessageSink_t8EECDC47E2C48FAF02D5E1507699FDDFD0DFE78D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDynamicProperty_t8DD3BC470CC26DE9C84615CFD5B604D2E06FF13F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMessage_t959A000023FFE2ED91C7AF8BB68CB6482888F8EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISponsor_tE2236D41CBD818B492F52B2B3B135EFB2816A6EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISurrogateSelector_t4C99617DAC31689CEC0EDB09B067A65E80E1C3EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_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* LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodBase_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MonoMethod_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapServices_tFAC138D29909023A659225D2178FBA4155FAB007_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_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* TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE_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* 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* UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral04DB1C850A01E9BFAD67FBA52AECF4A8CCED88EC;
IL2CPP_EXTERN_C String_t* _stringLiteral05C3E4111A3A3C004AE8FD9B0119AE6147476CD0;
IL2CPP_EXTERN_C String_t* _stringLiteral07DFCDB678FEE21C701D5C01F0E1535F861A0DC8;
IL2CPP_EXTERN_C String_t* _stringLiteral09E7B44CD9E126BF4269DB4199BBB266729EC7C7;
IL2CPP_EXTERN_C String_t* _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B;
IL2CPP_EXTERN_C String_t* _stringLiteral0E810F1FD821A201599050611CC7E608D422CCF2;
IL2CPP_EXTERN_C String_t* _stringLiteral0F30FEF4F3C89AF3463EAA6EA1C157EBB2C73C9E;
IL2CPP_EXTERN_C String_t* _stringLiteral0F8BBF21C3911F7E9F5A73CF485536F943993601;
IL2CPP_EXTERN_C String_t* _stringLiteral11D295715C38C4B50C80282B2BD01540AEA807F8;
IL2CPP_EXTERN_C String_t* _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072;
IL2CPP_EXTERN_C String_t* _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B;
IL2CPP_EXTERN_C String_t* _stringLiteral12DEB7397540F4CB49127727B794E2DBDDF5B4D8;
IL2CPP_EXTERN_C String_t* _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D;
IL2CPP_EXTERN_C String_t* _stringLiteral149C777077FD576D6F5704802A5222F47F1E5F96;
IL2CPP_EXTERN_C String_t* _stringLiteral17D8071E94DF635DCEBD891F4F5F32CC30E49C02;
IL2CPP_EXTERN_C String_t* _stringLiteral1D30723C8E847BB815C011F9D9E7816C93AF3C57;
IL2CPP_EXTERN_C String_t* _stringLiteral20049BC069B0A04404C23D571B5E0B56F0660C02;
IL2CPP_EXTERN_C String_t* _stringLiteral21CAAEAE9C76B3BA9D8043DD9396DB7CADD6ABCE;
IL2CPP_EXTERN_C String_t* _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603;
IL2CPP_EXTERN_C String_t* _stringLiteral2C6D680F5C570BA21D22697CD028F230E9F4CD56;
IL2CPP_EXTERN_C String_t* _stringLiteral3000CCA461FD33CBF12893CAB789D35607E93370;
IL2CPP_EXTERN_C String_t* _stringLiteral32FFB506802FF06396CDB1D4AE5047B7C92C291A;
IL2CPP_EXTERN_C String_t* _stringLiteral35248C8DF276687B89A726AAA698BABD60A9FACF;
IL2CPP_EXTERN_C String_t* _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC;
IL2CPP_EXTERN_C String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
IL2CPP_EXTERN_C String_t* _stringLiteral3C694A0345C25A74B559228DDAE03172FB45D08C;
IL2CPP_EXTERN_C String_t* _stringLiteral3DB0359959A93C1D9B9A1168AFBC097D868141E1;
IL2CPP_EXTERN_C String_t* _stringLiteral3E9B8BBAE5A62534A34CD6C210F74575EBE07A9D;
IL2CPP_EXTERN_C String_t* _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95;
IL2CPP_EXTERN_C String_t* _stringLiteral41A0E6C504F277C7AE4F0B2B8FF2A27CCC207CA4;
IL2CPP_EXTERN_C String_t* _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8;
IL2CPP_EXTERN_C String_t* _stringLiteral467B258EFCB6710990F44818F8EF6EC13ADC3426;
IL2CPP_EXTERN_C String_t* _stringLiteral4EF06982247EA84F0B7630DD66DB4D378C32794E;
IL2CPP_EXTERN_C String_t* _stringLiteral50D8B4A941C26B89482C94AB324B5A274F9CED66;
IL2CPP_EXTERN_C String_t* _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E;
IL2CPP_EXTERN_C String_t* _stringLiteral52FCFAE6C8A919BB1C8FF1107EDCD54440FCDD8E;
IL2CPP_EXTERN_C String_t* _stringLiteral536963DC456C27EA6CD029F273CCC59D78CD8583;
IL2CPP_EXTERN_C String_t* _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787;
IL2CPP_EXTERN_C String_t* _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4;
IL2CPP_EXTERN_C String_t* _stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC;
IL2CPP_EXTERN_C String_t* _stringLiteral57D70182FAA877DF8421EC91CD375C8A7153B5DD;
IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
IL2CPP_EXTERN_C String_t* _stringLiteral5CE312D71CFEAA34E1D566E3EE3D2276A9F5884D;
IL2CPP_EXTERN_C String_t* _stringLiteral5E545F1F92BB780A4B143358ACBCE75340A23795;
IL2CPP_EXTERN_C String_t* _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB;
IL2CPP_EXTERN_C String_t* _stringLiteral61B24289B9E450D3D06AECD1EAD76C25BB842F02;
IL2CPP_EXTERN_C String_t* _stringLiteral63143B6F8007B98C53CA2149822777B3566F9241;
IL2CPP_EXTERN_C String_t* _stringLiteral64BB750FBDB619F316CF93F627402BE61ACFBFDF;
IL2CPP_EXTERN_C String_t* _stringLiteral6E4FE3A1EED889B1C0789FBDE05DBE96397121DF;
IL2CPP_EXTERN_C String_t* _stringLiteral6E617E4FC9DA3DE9693EAC5990613543B86C63F9;
IL2CPP_EXTERN_C String_t* _stringLiteral71EBC45A99149FABA869857D89F16B45445EA8ED;
IL2CPP_EXTERN_C String_t* _stringLiteral727B58A7FC9186C166DDD814CA82BE4811F6799D;
IL2CPP_EXTERN_C String_t* _stringLiteral76A6AB37C34BE2069368C556BD900065D9AE36FC;
IL2CPP_EXTERN_C String_t* _stringLiteral7C9C7E60AD7446E0ED2B8C40DF4B7346C3B6A8BA;
IL2CPP_EXTERN_C String_t* _stringLiteral823E61FC8E18DBC28C985881E45C958AC190E9B7;
IL2CPP_EXTERN_C String_t* _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C;
IL2CPP_EXTERN_C String_t* _stringLiteral8C906D9E0E2439238B3263E087AEE3D98FA86DEA;
IL2CPP_EXTERN_C String_t* _stringLiteral93ABFB176EA169C8B322EBDBC8C5D2EF7C64282C;
IL2CPP_EXTERN_C String_t* _stringLiteral95B30331D509ECCA7D2BF0051ED3FDEEB761CCDE;
IL2CPP_EXTERN_C String_t* _stringLiteral967099FDC06D0F7EBC032D6C004F9E779A07CF57;
IL2CPP_EXTERN_C String_t* _stringLiteral96FF587B5AF4D3566623718F3C85493DE70D7483;
IL2CPP_EXTERN_C String_t* _stringLiteral98584452752AD757DF2319F0B249A152EB630B1B;
IL2CPP_EXTERN_C String_t* _stringLiteral997002FC7C68C5F853A3B415767F78CDAEA8530B;
IL2CPP_EXTERN_C String_t* _stringLiteral9B47C032938820269CE9D24A72B299C9D2A50C6C;
IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B;
IL2CPP_EXTERN_C String_t* _stringLiteralA14EF6B2D92FF638BA1F29FDB232B6E9716749FC;
IL2CPP_EXTERN_C String_t* _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753;
IL2CPP_EXTERN_C String_t* _stringLiteralA375D72FEDD8B0C358E309FCD44457A7600155F5;
IL2CPP_EXTERN_C String_t* _stringLiteralA3D3F71C7FD222A10EC32CE224E2696273028F48;
IL2CPP_EXTERN_C String_t* _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC;
IL2CPP_EXTERN_C String_t* _stringLiteralACCC301353BCC7B4B2482313F9C3B54F189AD37B;
IL2CPP_EXTERN_C String_t* _stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722;
IL2CPP_EXTERN_C String_t* _stringLiteralAE9A210469B99538B4F81CFD2F6B381E09B6EE67;
IL2CPP_EXTERN_C String_t* _stringLiteralB14A93EE86D2F3528D90E99733A1A7840F13A308;
IL2CPP_EXTERN_C String_t* _stringLiteralB1656D104EAE97A10AFBECED472E7D72B11C31CC;
IL2CPP_EXTERN_C String_t* _stringLiteralB61CC23CD69A89A7F8E6D2B987A1B8AFF5827C63;
IL2CPP_EXTERN_C String_t* _stringLiteralB92D84A8F27E0C7C4D3CCA2349C778C50AE7F4E9;
IL2CPP_EXTERN_C String_t* _stringLiteralB9ACD739FC193901BC2AB819C3352A4A26425AA9;
IL2CPP_EXTERN_C String_t* _stringLiteralBA116CF06D94D1851DD437DF3914E487FD3FE2E2;
IL2CPP_EXTERN_C String_t* _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8;
IL2CPP_EXTERN_C String_t* _stringLiteralC610FB00E2FFDB47A2315F784CC70510A9DA7C63;
IL2CPP_EXTERN_C String_t* _stringLiteralC696EB742C71623D86826F5A28C356CAE89DAB61;
IL2CPP_EXTERN_C String_t* _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5;
IL2CPP_EXTERN_C String_t* _stringLiteralCA37D4F187DB9771FF88B0B456B50DA453F5AEB2;
IL2CPP_EXTERN_C String_t* _stringLiteralCBD006E28E8B11491E1DCC6DE6CFEC1DA02AFFFA;
IL2CPP_EXTERN_C String_t* _stringLiteralD073258B488473E169677942A609E003142161BA;
IL2CPP_EXTERN_C String_t* _stringLiteralD08F88DF745FA7950B104E4A707A31CFCE7B5841;
IL2CPP_EXTERN_C String_t* _stringLiteralD21048C5C5B019FA0A181ABA5C8DC41BEE59E376;
IL2CPP_EXTERN_C String_t* _stringLiteralD8079D9A09BDE9F565264C5213EE48C39514099E;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA7A68734367828E30B94927F4C2B43ED2C0F652;
IL2CPP_EXTERN_C String_t* _stringLiteralDB3D405B10675998C030223177D42E71B4E7A312;
IL2CPP_EXTERN_C String_t* _stringLiteralDFCA281A4A271D0820F8AD9496CADF6E93C3EAAC;
IL2CPP_EXTERN_C String_t* _stringLiteralE06623A71E0A981E5B21D3F01E8E4BFBF22EBD05;
IL2CPP_EXTERN_C String_t* _stringLiteralE158E5C88DB7AB83A15963EA2A8C50582C9A7236;
IL2CPP_EXTERN_C String_t* _stringLiteralE7064F0B80F61DBC65915311032D27BAA569AE2A;
IL2CPP_EXTERN_C String_t* _stringLiteralEC054789BE20BE3E91CE6095EEB8F7B63F951EE3;
IL2CPP_EXTERN_C String_t* _stringLiteralF6BFB4BB1E8BB268BF4184A1A38F419E2B7BCBD3;
IL2CPP_EXTERN_C String_t* _stringLiteralF93FB9ED2C33EDDD8CBC27B2631F0ADD20EFE43D;
IL2CPP_EXTERN_C String_t* _stringLiteralFA4EA1B5B5C1077DC1CE2C6F8189A488228480ED;
IL2CPP_EXTERN_C String_t* _stringLiteralFCFACB85BEA1A1CD285880B297479A7AB82A099A;
IL2CPP_EXTERN_C String_t* _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncResult_AsyncProcessMessage_mD2C85C8758130B39ECF51DCB9A0818A492912929_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncResult_U3C_ctorU3Eb__17_0_m474CBF97F60521F1B16BB3FA94D58A206C7015E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AsyncResult_WaitCallback_Context_mC3B4E29233E21283C4784C2BA86BC55FFD562F6E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ClientContextReplySink_AsyncProcessMessage_m2F8A1CBDFE1FE1DE047B298DD3CD7B33DFEC01AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConstructionCallDictionary_SetMethodProperty_mBCB5C41D19C6860AFEC1292C5E0E305EFBD1E482_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ContextRestoreSink_AsyncProcessMessage_m020C0B9143FF15E75928D6A5B03045184FD2C06F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Context_CreateNewContext_m8CB05DBC233D7CF7F723CADB93DA4BD3632E325B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DisposerReplySink_AsyncProcessMessage_m51BAAFF3E2BBBA10CE586CC03DE790B8D85B0443_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LeaseManager_ManageLeases_m37D536C2B194A5D8888523B87CD3994B6E2E0D09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Lease_ProcessSponsorResponse_mAB6D03A0D1EC3EBA8B285751DA7A76D1FED5E59D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m0C4AFFF9958408ADBD08F110FA8BA8A270DD44A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m18C9FAA850A588E909089F128743DB5C5C22EBA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m39D94023C478714179AA07FDBCF8F75B5BDAD44B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* LogicalCallContext_GetObjectData_m965F5294A13D24A58D7D291F51024C8F1CA9B246_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjRefSurrogate_GetObjectData_m5215896E51B5BDAF51568445949D95BB6375A06A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjRefSurrogate_SetObjectData_m027D3AFF272173FD3D0B53F75700524398479EE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ObjRef__ctor_mC40A5AC5E30196648D2FF727CE4AC99E52F045C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RealProxy_GetAppDomainTarget_m844FCA2DDE2B8FE0B93D0AC182C692E3E610FD2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingSurrogate_GetObjectData_m6BC88BFB014FA37D85D1A2746E78B4E193F0BF3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RemotingSurrogate_SetObjectData_mFFA5ECF9242A3DC294022F7D13CE9E2665D6B76A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ServerObjectReplySink_AsyncProcessMessage_mD3E1D4192E38ACDA62452A8720A177323FC6ADBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StackBuilderSink_U3CAsyncProcessMessageU3Eb__4_0_m389EA6A277AAF44FB53D63754900702DD1BD0E3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* OneWayAttribute_t848DB2BC395D34A01B2932EEC85CEA65CA9C9B43_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RemoteActivator_t1882A1F35EE36C9F6A639472386A46AB7E49180A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult_AsyncProcessMessage_mD2C85C8758130B39ECF51DCB9A0818A492912929_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult_SyncProcessMessage_m2570D8DF531719D2FDC7F5E4A3B2F8A897F568F1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult_U3C_ctorU3Eb__17_0_m474CBF97F60521F1B16BB3FA94D58A206C7015E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult_WaitCallback_Context_mC3B4E29233E21283C4784C2BA86BC55FFD562F6E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult__cctor_m3F1E9452417D0F66B50F5F1CB88D6A30FEE38A14_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult__ctor_mCFA5C491314CEE809D783894BC7A9B0358DA9D5A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t AsyncResult_get_AsyncWaitHandle_m2122EADF631DF9C8A3A83440CA9A0DC6FC8843BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetSignature_m8985787EA84A7BD76C53DAAE2EE9DA757DEC6855_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_IsPossibleToIgnoreMarshal_m4D7D2CC00D75417E9768294057FDA46A67297C04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage_Create_mBA25229E51DAEADB2E34731F004E6767FF6F927E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage_GetArguments_m439B2118804E94D73DDDB17290603428C3D000A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage__ctor_mA8B6D39FB99F741D7CA9B491281EBE8F23691331_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef__ctor_m3D6403DEB18F97243C60170212641E97C833512E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_Create_m4C63A24FC645651E4137AE00A6E7037F480E4062_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_GetArguments_mDBC49529C7A1827E77267AD5697D8E3BEA1D561A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_GetException_mD7E1261D3ABCF6432AF69C671940511C9D8C47D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage__ctor_mEB5A55493B58D60C094D7CEF0A6DC0B195F88D42_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CallContextRemotingData_Clone_m22B610119C2E3A1690E252AB1C3134CA39730230_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CallContextSecurityData_Clone_m45D64B92B764F05DA33F9D38635F14D1DBCD4720_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_get_CrossContextChannel_mC44A705B5F28920BC7740D453812154206294153mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextReplySink_AsyncProcessMessage_m2F8A1CBDFE1FE1DE047B298DD3CD7B33DFEC01AD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextReplySink_SyncProcessMessage_mE945005FC3C5A95BB33483DDBFBE0EDEF1952DEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextTerminatorSink_AsyncProcessMessage_m4944606B98FBE75128DF8F5804240029223052E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextTerminatorSink_SyncProcessMessage_m2A430A1D56C0AFC6DA6F498B949B6D2F6C25903D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCallDictionary_GetMethodProperty_mCA00EC05EC3CCA97DD8904CC7089EF1FD051ECF0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCallDictionary_SetMethodProperty_mBCB5C41D19C6860AFEC1292C5E0E305EFBD1E482_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCallDictionary__cctor_m87C32CF045AFEA9E6EB39509D52BF2FD97A53F61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCallDictionary__ctor_m1A254A0CA2D2A92199639A25FE06703282147E7C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCall_GetObjectData_mAEECB96EE52446974F6729CA04FA3ED4A8DAF357_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCall_InitDictionary_m502B7459E02793AAD1C61041D2B93E7C0EA65BCE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCall_InitMethodProperty_m5E46F320519245D28F9828AE0C23499DEC39B5C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCall_get_ActivationType_m051F97DFEBCF77C9C9BFBEE05F3A418A96771612_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConstructionCall_get_ContextProperties_mF309E2D852CA4EA619B15CB3267E9CD2755F7EA7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContextRestoreSink_AsyncProcessMessage_m020C0B9143FF15E75928D6A5B03045184FD2C06F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ContextRestoreSink_SyncProcessMessage_mB1B1A2B2F31C579A1F1AB0EBA01E95A53C674C58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_AllocateDataSlot_m291E142E57D6190094E17F213C9DDAE7141318C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_AllocateNamedDataSlot_m608AF50CFDEB39E022D12C9728BE0F69FB3F3B6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_CreateEnvoySink_mDAB32FB13E9205D9EE9CD4996779A51C6B46BC09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_CreateNewContext_m8CB05DBC233D7CF7F723CADB93DA4BD3632E325B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_CreateServerObjectSinkChain_m6923378542152C208060176D6C466905C1AE7B25_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_DoCallBack_mE91932592028ADCE6B7C003AC188855E25A723FB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_Finalize_mB1CDF6B5E9AEC929352D0225929A174A12BE9340_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_FreeNamedDataSlot_m722B6FFD3FD85A9582B05CB868D0AC0D723CEB62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_Freeze_mCA2526FFB25B5005253EA8E8DEB8345FF2A798A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_GetNamedDataSlot_m657624F3E8381E909219E2F4B95618440AA0522B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_GetProperty_m991B509328882BC3BE4EA2F2020665CC2DEAC0C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_GetServerContextSinkChain_m50A40BEC6E5E52CCD2CD63F78C8E39327361D902_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_RegisterDynamicProperty_m3EF2DCB7EF2D4A318C33503A1CB608C3391DED30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_ToString_mDA84EBC853B32233677C1ADB2761084680649E08_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_UnregisterDynamicProperty_mB141BFF85AF99F8B7AFC2826A6E8BF48690D2A74_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context__cctor_mC9A543FDFC2215E0E3560414E453324515CD3B40_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context__ctor_mAF138F36380F34582B1EA4F743AB4806257029A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_get_ContextProperties_m644534786462094D646FC59BD200D347F0ECE560_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_get_HasExitSinks_m4F058AE201A183546F6A26122345BE7657EB43A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Context_get_NeedsContextSink_m87D439FC7478E73CD069A510E641F23EF6B575CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CrossContextChannel_AsyncProcessMessage_m7A467BB10101E5AE3316FE547DB1BFBC00C73118_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CrossContextChannel_SyncProcessMessage_m9413B3BDD24E7161604BFECBA353AB5772FC3F04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DictionaryEnumerator_MoveNext_mB1768E3DC0980322503D658FE95B9443812991C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DictionaryEnumerator_Reset_m13E09097E0CEBBB90906F8A85DAE7E4B41AF450E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DictionaryEnumerator_get_Current_m6DDDCF2A497034F7A84013A02B3B046CB0AC74C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DisposerReplySink_AsyncProcessMessage_m51BAAFF3E2BBBA10CE586CC03DE790B8D85B0443_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DisposerReplySink_SyncProcessMessage_mA5CB9FCC0970065B382384F28773E84E96F785E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EnvoyTerminatorSink_AsyncProcessMessage_mAA66C91C0B2AAD5CC2A286039D78D6068ACC9414_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EnvoyTerminatorSink_SyncProcessMessage_m38F1AF9DB08737CB3F1082ADA3F45C23B7E54C8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EnvoyTerminatorSink__cctor_m3A4CB887FD1A33EBC3785AFC497A1F969B773486_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ErrorMessage__ctor_m27AAEF2EC93A0C3CB51025E8A07087CEA7328DC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ErrorMessage_get_MethodName_mBB58FCB19F7A94956DFF28C12AC8CFCC3398C0B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ErrorMessage_get_TypeName_mCB463B023337B984B3E7335DE4AEFCEDE00DC6B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Identity_get_ClientDynamicProperties_m0CCE31D0AA06ECE1BC76B1B214C5DC34C7BBE228_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IllogicalCallContext_CreateCopy_m4D032C050628D402F860741A9EC1FC0C13B1136D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t IllogicalCallContext_get_Datastore_m1BC3CA62792BE96022B27A0B6C8D70DC1C4EFE0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalRemotingServices_GetCachedSoapAttribute_mAFF020E6FAC7FA570DE27002378FF92B7B1CB684_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalRemotingServices__cctor_mADA6EE81D76FDEF7B8EB7CF121E4A3C9BEBE5422_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseManager_ManageLeases_m37D536C2B194A5D8888523B87CD3994B6E2E0D09_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseManager_StartManager_mCD350DED26FBF47BEC9AC4E3D41B73FABB64215F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseManager__ctor_m4088B4BB6131FE6329D70CD1997D18909E52E004_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseSink_AsyncProcessMessage_m5C7C3996C06F571869D5C0781D783FF6E44DDF74_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LeaseSink_SyncProcessMessage_m9988956E98FEB28121926451B9AF69AFCC4FEE8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease_ProcessSponsorResponse_mAB6D03A0D1EC3EBA8B285751DA7A76D1FED5E59D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease_Renew_mDA55F829014C2AADE6F4596036C9136E3F843D3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease_UpdateState_m9243B509DA77DF0A15CAE4F256A83F62EEF410E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease__ctor_mBDCE338C031C3C0CC2121D6566BF10BB0F9869A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_TrackLifetime_mB6FA0BB508C87E844CA1E2FDB232F0B6EA435284_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices__cctor_m3C4ECB489EF8D476EA8AB5C7C46BE6BF86E0EB7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_LeaseManagerPollTime_mA7B9788CA1C9D385AF35C91A9A5F24836433D82D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_LeaseTime_m098BC16F4DC1EDC20917AE529C1438BAC872E828_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_RenewOnCallTime_mBE01C9F3CABFDDB6FE555523F686066E25387276_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_SponsorshipTimeout_m0A36FAB17E13FF9E34EB02168A3A580D5F7277DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext_Clone_m923D2DCF2B20C87F8AB53030367D7DF0F623CAE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext_GetObjectData_m965F5294A13D24A58D7D291F51024C8F1CA9B246_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext__cctor_m154C71F5A5A9A816717EFDC2F838DEFBE40BEAC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext__ctor_m5FC89BCDA678361336C82C238CA6A2ACDE07FD1B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MCMDictionary__cctor_m2692DBAB329967E42393D39C37F92A3D9A4A827E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_Add_m015064027A6721BD583B7FAC2B1CF75BF809F8E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_AllocInternalProperties_mA195C99CC8AB586C115EF12BB7F226E5E74AA23E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_Contains_m0425FED70AF7F875BFFAADA9FBD43907F7B83894_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_CopyTo_mB806B4F6D7CE553EC083A77DC72314DA362368C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_GetEnumerator_m31594679B0048F59513DF2318E7ABF28774E31A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_GetMethodProperty_m92F3D0F028D6A1FA220E457A49513E448ACF6D4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_SetMethodProperty_mB59808702E99D5BA49B77671EB83F78A5864AD58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_System_Collections_IEnumerable_GetEnumerator_mC933029C5A9432CEF0A34961C55676C6BFB7E84B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_get_Count_m4E0EA9F682B531893F0FBF7BBE4D49809EE2B831_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_get_Item_mCE0F38A6D88C993213CEB685A0DA25D878EB85CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MessageDictionary_get_Values_m6AB0F8B7CC24C6956F1B01B94712A15AE0FC7621_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_CastTo_m6C8099061AD0228ABCD6F13AB9CFB3BDA66C206A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_CopyFrom_mBDC7054B8D0E6BF7049D1402D4A96132EAC9B07B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_GetObjectData_m89623BAE1207753351E235F93B5870727423327F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_GetTypeNameFromAssemblyQualifiedName_m398DEE37D2859D0F6AA0369B0C92F2875583DAD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_InitDictionary_m4B2A560FDD3C10AD4ECC3A19E278993812F01DDD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_InitMethodProperty_m5439959AB074C5CC8DE5CFDF13688FAD95CBF4F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall__ctor_mC7F8A5B354B3C24FEFAD09709F9BB36859E8F848_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_get_LogicalCallContext_mEFADF782244FC5D058888989770CEEBDCD4A2EA7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodCall_get_MethodSignature_m6BA4F427D1BA7C19D7B4EA05D56BA92EFD6C818E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_GetObjectData_mA55C8DF667EBAF60DB1E191000DFBE7EE8BA951C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_InitMethodProperty_m995C7A77C1C912B90C8F94BE3B4FBF4EE0638F9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse__ctor_m839FF8EAB4D06067825F228C91F90C69464A77A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse__ctor_mC6EA34E67B5FD04515508D8E869A2676A41F31DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_LogicalCallContext_mFB1E10CD3247B3BEBCF0A0FDB1B2D75BEB6955D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_MethodBase_m90DC4DEE74C2F6593B17DA3BFDA6DF6BAE8620C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_MethodName_m218892BD8D055E745DA318FD0E90310DFEF04757_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_MethodSignature_m1FFAB41CE26CED5B7A03A17A38BB7788153A0ACC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_OutArgs_m6339EEB0CF7B033B052A78AA7D332A0D0D6EE33F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_Properties_m4E115130F0C43439A960AC23A9A33F439C99B82A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_TypeName_mC75D4224153ECF53328118A728D121D9208A925D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodResponse_get_Uri_mEAA6EC22168E484A36E811A8C9B21ABD68F715DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodReturnDictionary__cctor_m31964E85238EDB0728277FC855D7DBECF2AE9546_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage__cctor_m3FFFAEFF04386D82104D909E37A546A41D33FCE6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage__ctor_m765D41E74151716E2FFDD59D87CFC2270CC4E05C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage__ctor_mAB471416283E76FEBB232CF8D63F191BA48C4833_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_MethodName_mC7B20FFCA40005D55C36272FC88DEBC7EBA373A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_MethodSignature_mAC399B18EC4E7DAD7B073564A4720485394D53EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_OutArgs_mFAF3BC8E0BF07F8D821E5043C8D641ED10B7ED75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_Properties_m224BEE45C2108D30C6DFCBD7F6A57D2BCF5EE5CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MonoMethodMessage_get_TypeName_mB9C1F9948E9294B62B53BEECFA2F57E3EE8E264A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRefSurrogate_GetObjectData_m5215896E51B5BDAF51568445949D95BB6375A06A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRefSurrogate_SetObjectData_m027D3AFF272173FD3D0B53F75700524398479EE7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_DeserializeInTheCurrentDomain_mE66C6F771B2F2A032558CDEC0C775780CAA57C1D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_GetObjectData_m0F1455D1A1EC29196F9DF15F1E332A8CCFB2AA42_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_GetRealObject_mAC3DCE734849AF6783D643238D9231DA5E75CAD6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_UpdateChannelInfo_mEB7A54FF066B8232DFDEFBBA8E255F4C0FCCF927_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef__cctor_m233EBD25962225DDA7CA831CBF26267DA8F2A41D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef__ctor_mC40A5AC5E30196648D2FF727CE4AC99E52F045C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ObjRef_get_ServerType_m8461364BA216148B25DBB1AD68FAF0AA3E8EEED6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ProviderData__ctor_m62F7BEE2687705DF69132616A26FC2139AAFB1CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ProxyAttribute_CreateInstance_m02407169934CE7A02E296ECBC45EB5775BC68BE5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ProxyAttribute_CreateProxy_m64B7F80B041AC2F3AF139ECEF873F79DE42254B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_GetAppDomainTarget_m844FCA2DDE2B8FE0B93D0AC182C692E3E610FD2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_GetObjectData_mB3208201B6CB9EFE90A5581873D6E669B4D3393F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_GetTransparentProxy_mFC101729E8F35D8FDEF511B621A47E2094E1E6F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy__ctor_mD39E8A57474D97AB39E0C852DE4B3551B8D26BC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RealProxy__ctor_mEB28493534C3DF9ECC276A2CBDEB55A985065A1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_CustomErrorsEnabled_m5A437ADE0000689E0CE21F02978D80333778E160_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_IsRemotelyActivatedClientType_m8027E7BE9FD0A4D99E411AB65FEE937C5C4B6818_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_IsWellKnownClientType_mDE9E757BD0028D3C88FF2E22A8153F7F55ADB698_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_LoadDefaultDelayedChannels_mD26748787BB8B5F5507F720A644698136DB091DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterActivatedServiceType_mD8320F66EB153FFE3B7EDAEB0A986F51B78C46E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterChannelTemplate_mAFCDAD3931F051AD8D6215909E862D74D24E1873_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterClientProviderTemplate_m69774B53C65B34A316F72C4388E316A46E7B7BDE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterServerProviderTemplate_mFF5435B14741883C286858011EEE4DBF77E3780C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterTypes_mE00BA23B4C0C22D6485851E5EB9383A1737B1672_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_RegisterWellKnownServiceType_m90D68C6F1968E3E71D9B99725F625FE545E8574E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration__cctor_mB5EF98E055149890B2ADD999B6DBB989DCA48992_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806mscorlib10_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_get_ProcessId_m17A38791D8CC05637D22834EAFF75DE0D647486C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_set_ApplicationName_mB6A012DCEA8BEB2809D094CA743B1EF5A84E15B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_ActivateRemoteObject_m2E16792316E2D090112FC732D608E078A322624B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_AttachIdentity_m4FBF47621ACE40979F9EC9B769F6629D3FC69DB7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_CanCastTo_m939CC0CD9AC2BDDB5ECC464339C6B94CD51DA19C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_Finalize_m3559298C1F35F42CC28F9DDF426F55EFCFDEDFBC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_Invoke_m1DA606293F972ECA34A27DB14FD6AE2056AEEB62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy__cctor_m21A07EC3545FFB2A7C7E378FE06BCE524653755D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingProxy_get_TypeName_m5667DFE47ECD05586AF7C8D53E29CD7551AE81F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Connect_m9B95D5D77FB651E2163FB8DABB930651C8997337_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Connect_mF20992AE1A78BC91FE90567919DA07F490A7A279_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateClientProxyForContextBound_m3996C22D09B570A71564ED57E813FEC83FA24757_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateClientProxy_m22228424D442DDF319F7C1EDAA9800983139D2BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateClientProxy_m65BA9587153743A3A896A2DC590129721D4EB473_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateContextBoundObjectIdentity_m2E8ACF6876C3D96515EF5EFF1853B5773D9766F2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_DeserializeCallData_mBA977F9792BE8865EEBC5985485FC98CB4CA7782_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetOrCreateClientIdentity_m06ABE462740B7DD4B1C078A6F8A92E7694A1998D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_GetServerTypeForUri_mDDC9FFB5DF59680CBC9DE30BB94E6AC9FA0FAD72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_IsOneWay_m7D017D4D9C29D18ED118BF475128D98B44B092BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_RegisterInternalChannels_m69A4E09D5E4777709530898636AC7EBA8032949F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_RemoveAppNameFromUri_m06AD452F0027AEAB9FF9AAE81184B6DE37879130_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_SerializeCallData_m593FAD621A4004236D395E9BF5BB0FBFF1651B69_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_SerializeExceptionData_mD4DDED5D74613AA25D3D41A1E459789DF724C264_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_SetMessageTargetIdentity_m416FD8C081A92BCF654DFE0E309DA17F0CF05A4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_Unmarshal_mE12395241E45DC5F1BDCE371E275C7F3A207BCE9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices_UpdateOutArgObject_m43E068A1FAB184AFEF32C91629393EC6556939D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingServices__cctor_m6113C72D8E6A7A0D826914BB9774FA873877B571_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingSurrogateSelector_GetSurrogate_mBE79B7E36A68A4598269C886D9E3E58C0CB5F23A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingSurrogateSelector__cctor_m6109818EB572091946B639D4948DC09FBAE14EB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingSurrogate_GetObjectData_m6BC88BFB014FA37D85D1A2746E78B4E193F0BF3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingSurrogate_SetObjectData_mFFA5ECF9242A3DC294022F7D13CE9E2665D6B76A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage_get_LogicalCallContext_mDE6BE5576719BE633127919AEC82E21449A1D8C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage_get_MethodSignature_mAF436AAB654979FF4DB994ED4DE5EEF040C622F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage_get_OutArgs_mFCA082489C8824081DF92ED164E935E1DC6827B3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ReturnMessage_get_Properties_m861BFA60A87404E0E572E0B98BB23196932C811A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerContextTerminatorSink_AsyncProcessMessage_m6B8E5770B5F18EE9E61268786243EC999F077867_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerContextTerminatorSink_SyncProcessMessage_mE650DB626C4E04472C159FD31D9D90FCD6A8BE58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerObjectReplySink_AsyncProcessMessage_mD3E1D4192E38ACDA62452A8720A177323FC6ADBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerObjectReplySink_SyncProcessMessage_m7477C12B857649F88B78786A8CCFEBA3D51C2B7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerObjectTerminatorSink_AsyncProcessMessage_m513D0AD9435F9EF9EC7EA8B37F58C5871998B745_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ServerObjectTerminatorSink_SyncProcessMessage_mC1D8BD0FB0F77A063E66ABB1C0A9701079C34917_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SoapFieldAttribute_SetReflectionObject_m37C80CB25B13B733F8160A6E7548F3D3EB72D86D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SoapMethodAttribute_SetReflectionObject_m1BDCA13F68216B31B8C1E6311EBA9B2BA945A3EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SoapTypeAttribute_SetReflectionObject_m9850EB38A4BEC60C169E2E7843CFF075D297335E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink_AsyncProcessMessage_m0829C4C2DB5B6C672CF76CBEAABB46CA9E88B587_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink_ExecuteAsyncMessage_m78BFD4AEE1F41531BED3452E01E5629BBA3D96F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink_SyncProcessMessage_m02B70E80D439D7446AC6C9AB335BCBCA36768C77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink_U3CAsyncProcessMessageU3Eb__4_0_m389EA6A277AAF44FB53D63754900702DD1BD0E3B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StackBuilderSink__ctor_m2A44CFC4687F4F8698EC87D3ED54980E7B9302AB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TransparentProxy_GetProxyType_m850D00301C1E81BF83C9907795A13138425A52AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901_MetadataUsageId;
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2;;
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com;
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com;;
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke;
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke;;
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724;;
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com;
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com;;
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke;
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke;;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t;;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_com;;
struct Exception_t_marshaled_pinvoke;
struct Exception_t_marshaled_pinvoke;;
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF;;
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com;
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com;;
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke;
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke;;
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234;;
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com;
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com;;
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke;
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke;;
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF;;
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com;
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com;;
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke;
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke;;
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6;;
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com;
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com;;
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke;
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke;;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B;
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
struct IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C;
struct IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB;
struct HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC;
struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889;
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
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.Xml.SmallXmlParser
struct SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 : public RuntimeObject
{
public:
// Mono.Xml.SmallXmlParser_IContentHandler Mono.Xml.SmallXmlParser::handler
RuntimeObject* ___handler_0;
// System.IO.TextReader Mono.Xml.SmallXmlParser::reader
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___reader_1;
// System.Collections.Stack Mono.Xml.SmallXmlParser::elementNames
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___elementNames_2;
// System.Collections.Stack Mono.Xml.SmallXmlParser::xmlSpaces
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___xmlSpaces_3;
// System.String Mono.Xml.SmallXmlParser::xmlSpace
String_t* ___xmlSpace_4;
// System.Text.StringBuilder Mono.Xml.SmallXmlParser::buffer
StringBuilder_t * ___buffer_5;
// System.Char[] Mono.Xml.SmallXmlParser::nameBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___nameBuffer_6;
// System.Boolean Mono.Xml.SmallXmlParser::isWhitespace
bool ___isWhitespace_7;
// Mono.Xml.SmallXmlParser_AttrListImpl Mono.Xml.SmallXmlParser::attributes
AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * ___attributes_8;
// System.Int32 Mono.Xml.SmallXmlParser::line
int32_t ___line_9;
// System.Int32 Mono.Xml.SmallXmlParser::column
int32_t ___column_10;
// System.Boolean Mono.Xml.SmallXmlParser::resetColumn
bool ___resetColumn_11;
public:
inline static int32_t get_offset_of_handler_0() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___handler_0)); }
inline RuntimeObject* get_handler_0() const { return ___handler_0; }
inline RuntimeObject** get_address_of_handler_0() { return &___handler_0; }
inline void set_handler_0(RuntimeObject* value)
{
___handler_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___handler_0), (void*)value);
}
inline static int32_t get_offset_of_reader_1() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___reader_1)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_reader_1() const { return ___reader_1; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_reader_1() { return &___reader_1; }
inline void set_reader_1(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___reader_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reader_1), (void*)value);
}
inline static int32_t get_offset_of_elementNames_2() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___elementNames_2)); }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_elementNames_2() const { return ___elementNames_2; }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_elementNames_2() { return &___elementNames_2; }
inline void set_elementNames_2(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
{
___elementNames_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___elementNames_2), (void*)value);
}
inline static int32_t get_offset_of_xmlSpaces_3() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___xmlSpaces_3)); }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_xmlSpaces_3() const { return ___xmlSpaces_3; }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_xmlSpaces_3() { return &___xmlSpaces_3; }
inline void set_xmlSpaces_3(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
{
___xmlSpaces_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpaces_3), (void*)value);
}
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___xmlSpace_4)); }
inline String_t* get_xmlSpace_4() const { return ___xmlSpace_4; }
inline String_t** get_address_of_xmlSpace_4() { return &___xmlSpace_4; }
inline void set_xmlSpace_4(String_t* value)
{
___xmlSpace_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpace_4), (void*)value);
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___buffer_5)); }
inline StringBuilder_t * get_buffer_5() const { return ___buffer_5; }
inline StringBuilder_t ** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(StringBuilder_t * value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_5), (void*)value);
}
inline static int32_t get_offset_of_nameBuffer_6() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___nameBuffer_6)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_nameBuffer_6() const { return ___nameBuffer_6; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_nameBuffer_6() { return &___nameBuffer_6; }
inline void set_nameBuffer_6(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___nameBuffer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nameBuffer_6), (void*)value);
}
inline static int32_t get_offset_of_isWhitespace_7() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___isWhitespace_7)); }
inline bool get_isWhitespace_7() const { return ___isWhitespace_7; }
inline bool* get_address_of_isWhitespace_7() { return &___isWhitespace_7; }
inline void set_isWhitespace_7(bool value)
{
___isWhitespace_7 = value;
}
inline static int32_t get_offset_of_attributes_8() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___attributes_8)); }
inline AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * get_attributes_8() const { return ___attributes_8; }
inline AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 ** get_address_of_attributes_8() { return &___attributes_8; }
inline void set_attributes_8(AttrListImpl_t71E6364FBEB04BEB799D6DC32BF6D2C23380BF63 * value)
{
___attributes_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___attributes_8), (void*)value);
}
inline static int32_t get_offset_of_line_9() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___line_9)); }
inline int32_t get_line_9() const { return ___line_9; }
inline int32_t* get_address_of_line_9() { return &___line_9; }
inline void set_line_9(int32_t value)
{
___line_9 = value;
}
inline static int32_t get_offset_of_column_10() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___column_10)); }
inline int32_t get_column_10() const { return ___column_10; }
inline int32_t* get_address_of_column_10() { return &___column_10; }
inline void set_column_10(int32_t value)
{
___column_10 = value;
}
inline static int32_t get_offset_of_resetColumn_11() { return static_cast<int32_t>(offsetof(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196, ___resetColumn_11)); }
inline bool get_resetColumn_11() const { return ___resetColumn_11; }
inline bool* get_address_of_resetColumn_11() { return &___resetColumn_11; }
inline void set_resetColumn_11(bool value)
{
___resetColumn_11 = value;
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 : public RuntimeObject
{
public:
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____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);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields
{
public:
// System.Object[] System.Collections.ArrayList::emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_4;
public:
inline static int32_t get_offset_of_emptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields, ___emptyArray_4)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_emptyArray_4() const { return ___emptyArray_4; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_emptyArray_4() { return &___emptyArray_4; }
inline void set_emptyArray_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___emptyArray_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____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_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>
struct List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* ____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_t2E9E934268E3583A1050C7A03B1647E77B57672D, ____items_1)); }
inline IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* get__items_1() const { return ____items_1; }
inline IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* 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_t2E9E934268E3583A1050C7A03B1647E77B57672D, ____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_t2E9E934268E3583A1050C7A03B1647E77B57672D, ____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_t2E9E934268E3583A1050C7A03B1647E77B57672D, ____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_t2E9E934268E3583A1050C7A03B1647E77B57672D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D_StaticFields, ____emptyArray_5)); }
inline IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* get__emptyArray_5() const { return ____emptyArray_5; }
inline IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Queue
struct Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 : public RuntimeObject
{
public:
// System.Object[] System.Collections.Queue::_array
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0;
// System.Int32 System.Collections.Queue::_head
int32_t ____head_1;
// System.Int32 System.Collections.Queue::_tail
int32_t ____tail_2;
// System.Int32 System.Collections.Queue::_size
int32_t ____size_3;
// System.Int32 System.Collections.Queue::_growFactor
int32_t ____growFactor_4;
// System.Int32 System.Collections.Queue::_version
int32_t ____version_5;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____array_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__head_1() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____head_1)); }
inline int32_t get__head_1() const { return ____head_1; }
inline int32_t* get_address_of__head_1() { return &____head_1; }
inline void set__head_1(int32_t value)
{
____head_1 = value;
}
inline static int32_t get_offset_of__tail_2() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____tail_2)); }
inline int32_t get__tail_2() const { return ____tail_2; }
inline int32_t* get_address_of__tail_2() { return &____tail_2; }
inline void set__tail_2(int32_t value)
{
____tail_2 = value;
}
inline static int32_t get_offset_of__size_3() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____size_3)); }
inline int32_t get__size_3() const { return ____size_3; }
inline int32_t* get_address_of__size_3() { return &____size_3; }
inline void set__size_3(int32_t value)
{
____size_3 = value;
}
inline static int32_t get_offset_of__growFactor_4() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____growFactor_4)); }
inline int32_t get__growFactor_4() const { return ____growFactor_4; }
inline int32_t* get_address_of__growFactor_4() { return &____growFactor_4; }
inline void set__growFactor_4(int32_t value)
{
____growFactor_4 = value;
}
inline static int32_t get_offset_of__version_5() { return static_cast<int32_t>(offsetof(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3, ____version_5)); }
inline int32_t get__version_5() const { return ____version_5; }
inline int32_t* get_address_of__version_5() { return &____version_5; }
inline void set__version_5(int32_t value)
{
____version_5 = value;
}
};
// System.LocalDataStore
struct LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE : public RuntimeObject
{
public:
// System.LocalDataStoreElement[] System.LocalDataStore::m_DataTable
LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* ___m_DataTable_0;
// System.LocalDataStoreMgr System.LocalDataStore::m_Manager
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_Manager_1;
public:
inline static int32_t get_offset_of_m_DataTable_0() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_DataTable_0)); }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* get_m_DataTable_0() const { return ___m_DataTable_0; }
inline LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0** get_address_of_m_DataTable_0() { return &___m_DataTable_0; }
inline void set_m_DataTable_0(LocalDataStoreElementU5BU5D_t497D47CE89AF78D3EF9A7AC332F7AD017A3CD3B0* value)
{
___m_DataTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DataTable_0), (void*)value);
}
inline static int32_t get_offset_of_m_Manager_1() { return static_cast<int32_t>(offsetof(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE, ___m_Manager_1)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_Manager_1() const { return ___m_Manager_1; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_Manager_1() { return &___m_Manager_1; }
inline void set_m_Manager_1(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_Manager_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Manager_1), (void*)value);
}
};
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 : public RuntimeObject
{
public:
// System.LocalDataStore System.LocalDataStoreHolder::m_Store
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * ___m_Store_0;
public:
inline static int32_t get_offset_of_m_Store_0() { return static_cast<int32_t>(offsetof(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304, ___m_Store_0)); }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * get_m_Store_0() const { return ___m_Store_0; }
inline LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE ** get_address_of_m_Store_0() { return &___m_Store_0; }
inline void set_m_Store_0(LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * value)
{
___m_Store_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Store_0), (void*)value);
}
};
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 : public RuntimeObject
{
public:
// System.Boolean[] System.LocalDataStoreMgr::m_SlotInfoTable
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___m_SlotInfoTable_0;
// System.Int32 System.LocalDataStoreMgr::m_FirstAvailableSlot
int32_t ___m_FirstAvailableSlot_1;
// System.Collections.Generic.List`1<System.LocalDataStore> System.LocalDataStoreMgr::m_ManagedLocalDataStores
List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * ___m_ManagedLocalDataStores_2;
// System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot> System.LocalDataStoreMgr::m_KeyToSlotMap
Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * ___m_KeyToSlotMap_3;
// System.Int64 System.LocalDataStoreMgr::m_CookieGenerator
int64_t ___m_CookieGenerator_4;
public:
inline static int32_t get_offset_of_m_SlotInfoTable_0() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_SlotInfoTable_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_m_SlotInfoTable_0() const { return ___m_SlotInfoTable_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_m_SlotInfoTable_0() { return &___m_SlotInfoTable_0; }
inline void set_m_SlotInfoTable_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___m_SlotInfoTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SlotInfoTable_0), (void*)value);
}
inline static int32_t get_offset_of_m_FirstAvailableSlot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_FirstAvailableSlot_1)); }
inline int32_t get_m_FirstAvailableSlot_1() const { return ___m_FirstAvailableSlot_1; }
inline int32_t* get_address_of_m_FirstAvailableSlot_1() { return &___m_FirstAvailableSlot_1; }
inline void set_m_FirstAvailableSlot_1(int32_t value)
{
___m_FirstAvailableSlot_1 = value;
}
inline static int32_t get_offset_of_m_ManagedLocalDataStores_2() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_ManagedLocalDataStores_2)); }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * get_m_ManagedLocalDataStores_2() const { return ___m_ManagedLocalDataStores_2; }
inline List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D ** get_address_of_m_ManagedLocalDataStores_2() { return &___m_ManagedLocalDataStores_2; }
inline void set_m_ManagedLocalDataStores_2(List_1_tA81E98B62587323D3D4019332A93BDF9F9E1163D * value)
{
___m_ManagedLocalDataStores_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ManagedLocalDataStores_2), (void*)value);
}
inline static int32_t get_offset_of_m_KeyToSlotMap_3() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_KeyToSlotMap_3)); }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * get_m_KeyToSlotMap_3() const { return ___m_KeyToSlotMap_3; }
inline Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 ** get_address_of_m_KeyToSlotMap_3() { return &___m_KeyToSlotMap_3; }
inline void set_m_KeyToSlotMap_3(Dictionary_2_tB2446BE20A444C4EB99DF3B94D5263DC7ACEBE08 * value)
{
___m_KeyToSlotMap_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_KeyToSlotMap_3), (void*)value);
}
inline static int32_t get_offset_of_m_CookieGenerator_4() { return static_cast<int32_t>(offsetof(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9, ___m_CookieGenerator_4)); }
inline int64_t get_m_CookieGenerator_4() const { return ___m_CookieGenerator_4; }
inline int64_t* get_address_of_m_CookieGenerator_4() { return &___m_CookieGenerator_4; }
inline void set_m_CookieGenerator_4(int64_t value)
{
___m_CookieGenerator_4 = value;
}
};
// System.LocalDataStoreSlot
struct LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E : public RuntimeObject
{
public:
// System.LocalDataStoreMgr System.LocalDataStoreSlot::m_mgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ___m_mgr_0;
// System.Int32 System.LocalDataStoreSlot::m_slot
int32_t ___m_slot_1;
// System.Int64 System.LocalDataStoreSlot::m_cookie
int64_t ___m_cookie_2;
public:
inline static int32_t get_offset_of_m_mgr_0() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_mgr_0)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get_m_mgr_0() const { return ___m_mgr_0; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of_m_mgr_0() { return &___m_mgr_0; }
inline void set_m_mgr_0(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
___m_mgr_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_mgr_0), (void*)value);
}
inline static int32_t get_offset_of_m_slot_1() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_slot_1)); }
inline int32_t get_m_slot_1() const { return ___m_slot_1; }
inline int32_t* get_address_of_m_slot_1() { return &___m_slot_1; }
inline void set_m_slot_1(int32_t value)
{
___m_slot_1 = value;
}
inline static int32_t get_offset_of_m_cookie_2() { return static_cast<int32_t>(offsetof(LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E, ___m_cookie_2)); }
inline int64_t get_m_cookie_2() const { return ___m_cookie_2; }
inline int64_t* get_address_of_m_cookie_2() { return &___m_cookie_2; }
inline void set_m_cookie_2(int64_t value)
{
___m_cookie_2 = 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.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_t8B006E1DEE084E781F5C0F3283E9226E28894DD9 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.ChannelData
struct ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.ChannelData::Ref
String_t* ___Ref_0;
// System.String System.Runtime.Remoting.ChannelData::Type
String_t* ___Type_1;
// System.String System.Runtime.Remoting.ChannelData::Id
String_t* ___Id_2;
// System.String System.Runtime.Remoting.ChannelData::DelayLoadAsClientChannel
String_t* ___DelayLoadAsClientChannel_3;
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::_serverProviders
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____serverProviders_4;
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::_clientProviders
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____clientProviders_5;
// System.Collections.Hashtable System.Runtime.Remoting.ChannelData::_customProperties
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____customProperties_6;
public:
inline static int32_t get_offset_of_Ref_0() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ___Ref_0)); }
inline String_t* get_Ref_0() const { return ___Ref_0; }
inline String_t** get_address_of_Ref_0() { return &___Ref_0; }
inline void set_Ref_0(String_t* value)
{
___Ref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Ref_0), (void*)value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ___Type_1)); }
inline String_t* get_Type_1() const { return ___Type_1; }
inline String_t** get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(String_t* value)
{
___Type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Type_1), (void*)value);
}
inline static int32_t get_offset_of_Id_2() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ___Id_2)); }
inline String_t* get_Id_2() const { return ___Id_2; }
inline String_t** get_address_of_Id_2() { return &___Id_2; }
inline void set_Id_2(String_t* value)
{
___Id_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Id_2), (void*)value);
}
inline static int32_t get_offset_of_DelayLoadAsClientChannel_3() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ___DelayLoadAsClientChannel_3)); }
inline String_t* get_DelayLoadAsClientChannel_3() const { return ___DelayLoadAsClientChannel_3; }
inline String_t** get_address_of_DelayLoadAsClientChannel_3() { return &___DelayLoadAsClientChannel_3; }
inline void set_DelayLoadAsClientChannel_3(String_t* value)
{
___DelayLoadAsClientChannel_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DelayLoadAsClientChannel_3), (void*)value);
}
inline static int32_t get_offset_of__serverProviders_4() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ____serverProviders_4)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__serverProviders_4() const { return ____serverProviders_4; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__serverProviders_4() { return &____serverProviders_4; }
inline void set__serverProviders_4(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____serverProviders_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverProviders_4), (void*)value);
}
inline static int32_t get_offset_of__clientProviders_5() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ____clientProviders_5)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__clientProviders_5() const { return ____clientProviders_5; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__clientProviders_5() { return &____clientProviders_5; }
inline void set__clientProviders_5(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____clientProviders_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clientProviders_5), (void*)value);
}
inline static int32_t get_offset_of__customProperties_6() { return static_cast<int32_t>(offsetof(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D, ____customProperties_6)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__customProperties_6() const { return ____customProperties_6; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__customProperties_6() { return &____customProperties_6; }
inline void set__customProperties_6(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____customProperties_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____customProperties_6), (void*)value);
}
};
// System.Runtime.Remoting.ChannelInfo
struct ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.ChannelInfo::channelData
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___channelData_0;
public:
inline static int32_t get_offset_of_channelData_0() { return static_cast<int32_t>(offsetof(ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9, ___channelData_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_channelData_0() const { return ___channelData_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_channelData_0() { return &___channelData_0; }
inline void set_channelData_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___channelData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelData_0), (void*)value);
}
};
// System.Runtime.Remoting.Channels.ChannelServices
struct ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4 : public RuntimeObject
{
public:
public:
};
struct ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.Channels.ChannelServices::registeredChannels
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___registeredChannels_0;
// System.Collections.ArrayList System.Runtime.Remoting.Channels.ChannelServices::delayedClientChannels
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___delayedClientChannels_1;
// System.Runtime.Remoting.Contexts.CrossContextChannel System.Runtime.Remoting.Channels.ChannelServices::_crossContextSink
CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * ____crossContextSink_2;
// System.String System.Runtime.Remoting.Channels.ChannelServices::CrossContextUrl
String_t* ___CrossContextUrl_3;
// System.Collections.IList System.Runtime.Remoting.Channels.ChannelServices::oldStartModeTypes
RuntimeObject* ___oldStartModeTypes_4;
public:
inline static int32_t get_offset_of_registeredChannels_0() { return static_cast<int32_t>(offsetof(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields, ___registeredChannels_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_registeredChannels_0() const { return ___registeredChannels_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_registeredChannels_0() { return &___registeredChannels_0; }
inline void set_registeredChannels_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___registeredChannels_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___registeredChannels_0), (void*)value);
}
inline static int32_t get_offset_of_delayedClientChannels_1() { return static_cast<int32_t>(offsetof(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields, ___delayedClientChannels_1)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_delayedClientChannels_1() const { return ___delayedClientChannels_1; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_delayedClientChannels_1() { return &___delayedClientChannels_1; }
inline void set_delayedClientChannels_1(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___delayedClientChannels_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delayedClientChannels_1), (void*)value);
}
inline static int32_t get_offset_of__crossContextSink_2() { return static_cast<int32_t>(offsetof(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields, ____crossContextSink_2)); }
inline CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * get__crossContextSink_2() const { return ____crossContextSink_2; }
inline CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 ** get_address_of__crossContextSink_2() { return &____crossContextSink_2; }
inline void set__crossContextSink_2(CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * value)
{
____crossContextSink_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____crossContextSink_2), (void*)value);
}
inline static int32_t get_offset_of_CrossContextUrl_3() { return static_cast<int32_t>(offsetof(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields, ___CrossContextUrl_3)); }
inline String_t* get_CrossContextUrl_3() const { return ___CrossContextUrl_3; }
inline String_t** get_address_of_CrossContextUrl_3() { return &___CrossContextUrl_3; }
inline void set_CrossContextUrl_3(String_t* value)
{
___CrossContextUrl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CrossContextUrl_3), (void*)value);
}
inline static int32_t get_offset_of_oldStartModeTypes_4() { return static_cast<int32_t>(offsetof(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields, ___oldStartModeTypes_4)); }
inline RuntimeObject* get_oldStartModeTypes_4() const { return ___oldStartModeTypes_4; }
inline RuntimeObject** get_address_of_oldStartModeTypes_4() { return &___oldStartModeTypes_4; }
inline void set_oldStartModeTypes_4(RuntimeObject* value)
{
___oldStartModeTypes_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___oldStartModeTypes_4), (void*)value);
}
};
// System.Runtime.Remoting.Channels.CrossAppDomainData
struct CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE : public RuntimeObject
{
public:
// System.Object System.Runtime.Remoting.Channels.CrossAppDomainData::_ContextID
RuntimeObject * ____ContextID_0;
// System.Int32 System.Runtime.Remoting.Channels.CrossAppDomainData::_DomainID
int32_t ____DomainID_1;
// System.String System.Runtime.Remoting.Channels.CrossAppDomainData::_processGuid
String_t* ____processGuid_2;
public:
inline static int32_t get_offset_of__ContextID_0() { return static_cast<int32_t>(offsetof(CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE, ____ContextID_0)); }
inline RuntimeObject * get__ContextID_0() const { return ____ContextID_0; }
inline RuntimeObject ** get_address_of__ContextID_0() { return &____ContextID_0; }
inline void set__ContextID_0(RuntimeObject * value)
{
____ContextID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ContextID_0), (void*)value);
}
inline static int32_t get_offset_of__DomainID_1() { return static_cast<int32_t>(offsetof(CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE, ____DomainID_1)); }
inline int32_t get__DomainID_1() const { return ____DomainID_1; }
inline int32_t* get_address_of__DomainID_1() { return &____DomainID_1; }
inline void set__DomainID_1(int32_t value)
{
____DomainID_1 = value;
}
inline static int32_t get_offset_of__processGuid_2() { return static_cast<int32_t>(offsetof(CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE, ____processGuid_2)); }
inline String_t* get__processGuid_2() const { return ____processGuid_2; }
inline String_t** get_address_of__processGuid_2() { return &____processGuid_2; }
inline void set__processGuid_2(String_t* value)
{
____processGuid_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____processGuid_2), (void*)value);
}
};
// System.Runtime.Remoting.Channels.CrossAppDomainSink
struct CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Channels.CrossAppDomainSink::_domainID
int32_t ____domainID_2;
public:
inline static int32_t get_offset_of__domainID_2() { return static_cast<int32_t>(offsetof(CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73, ____domainID_2)); }
inline int32_t get__domainID_2() const { return ____domainID_2; }
inline int32_t* get_address_of__domainID_2() { return &____domainID_2; }
inline void set__domainID_2(int32_t value)
{
____domainID_2 = value;
}
};
struct CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73_StaticFields
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.Channels.CrossAppDomainSink::s_sinks
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___s_sinks_0;
// System.Reflection.MethodInfo System.Runtime.Remoting.Channels.CrossAppDomainSink::processMessageMethod
MethodInfo_t * ___processMessageMethod_1;
public:
inline static int32_t get_offset_of_s_sinks_0() { return static_cast<int32_t>(offsetof(CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73_StaticFields, ___s_sinks_0)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_s_sinks_0() const { return ___s_sinks_0; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_s_sinks_0() { return &___s_sinks_0; }
inline void set_s_sinks_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___s_sinks_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_sinks_0), (void*)value);
}
inline static int32_t get_offset_of_processMessageMethod_1() { return static_cast<int32_t>(offsetof(CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73_StaticFields, ___processMessageMethod_1)); }
inline MethodInfo_t * get_processMessageMethod_1() const { return ___processMessageMethod_1; }
inline MethodInfo_t ** get_address_of_processMessageMethod_1() { return &___processMessageMethod_1; }
inline void set_processMessageMethod_1(MethodInfo_t * value)
{
___processMessageMethod_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processMessageMethod_1), (void*)value);
}
};
// System.Runtime.Remoting.Channels.SinkProviderData
struct SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Channels.SinkProviderData::sinkName
String_t* ___sinkName_0;
// System.Collections.ArrayList System.Runtime.Remoting.Channels.SinkProviderData::children
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___children_1;
// System.Collections.Hashtable System.Runtime.Remoting.Channels.SinkProviderData::properties
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___properties_2;
public:
inline static int32_t get_offset_of_sinkName_0() { return static_cast<int32_t>(offsetof(SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A, ___sinkName_0)); }
inline String_t* get_sinkName_0() const { return ___sinkName_0; }
inline String_t** get_address_of_sinkName_0() { return &___sinkName_0; }
inline void set_sinkName_0(String_t* value)
{
___sinkName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sinkName_0), (void*)value);
}
inline static int32_t get_offset_of_children_1() { return static_cast<int32_t>(offsetof(SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A, ___children_1)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_children_1() const { return ___children_1; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_children_1() { return &___children_1; }
inline void set_children_1(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___children_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___children_1), (void*)value);
}
inline static int32_t get_offset_of_properties_2() { return static_cast<int32_t>(offsetof(SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A, ___properties_2)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_properties_2() const { return ___properties_2; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_properties_2() { return &___properties_2; }
inline void set_properties_2(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___properties_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_2), (void*)value);
}
};
// System.Runtime.Remoting.ConfigHandler
struct ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.ConfigHandler::typeEntries
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___typeEntries_0;
// System.Collections.ArrayList System.Runtime.Remoting.ConfigHandler::channelInstances
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___channelInstances_1;
// System.Runtime.Remoting.ChannelData System.Runtime.Remoting.ConfigHandler::currentChannel
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * ___currentChannel_2;
// System.Collections.Stack System.Runtime.Remoting.ConfigHandler::currentProviderData
Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___currentProviderData_3;
// System.String System.Runtime.Remoting.ConfigHandler::currentClientUrl
String_t* ___currentClientUrl_4;
// System.String System.Runtime.Remoting.ConfigHandler::appName
String_t* ___appName_5;
// System.String System.Runtime.Remoting.ConfigHandler::currentXmlPath
String_t* ___currentXmlPath_6;
// System.Boolean System.Runtime.Remoting.ConfigHandler::onlyDelayedChannels
bool ___onlyDelayedChannels_7;
public:
inline static int32_t get_offset_of_typeEntries_0() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___typeEntries_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_typeEntries_0() const { return ___typeEntries_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_typeEntries_0() { return &___typeEntries_0; }
inline void set_typeEntries_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___typeEntries_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeEntries_0), (void*)value);
}
inline static int32_t get_offset_of_channelInstances_1() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___channelInstances_1)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_channelInstances_1() const { return ___channelInstances_1; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_channelInstances_1() { return &___channelInstances_1; }
inline void set_channelInstances_1(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___channelInstances_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelInstances_1), (void*)value);
}
inline static int32_t get_offset_of_currentChannel_2() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___currentChannel_2)); }
inline ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * get_currentChannel_2() const { return ___currentChannel_2; }
inline ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D ** get_address_of_currentChannel_2() { return &___currentChannel_2; }
inline void set_currentChannel_2(ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * value)
{
___currentChannel_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentChannel_2), (void*)value);
}
inline static int32_t get_offset_of_currentProviderData_3() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___currentProviderData_3)); }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get_currentProviderData_3() const { return ___currentProviderData_3; }
inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of_currentProviderData_3() { return &___currentProviderData_3; }
inline void set_currentProviderData_3(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value)
{
___currentProviderData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentProviderData_3), (void*)value);
}
inline static int32_t get_offset_of_currentClientUrl_4() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___currentClientUrl_4)); }
inline String_t* get_currentClientUrl_4() const { return ___currentClientUrl_4; }
inline String_t** get_address_of_currentClientUrl_4() { return &___currentClientUrl_4; }
inline void set_currentClientUrl_4(String_t* value)
{
___currentClientUrl_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentClientUrl_4), (void*)value);
}
inline static int32_t get_offset_of_appName_5() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___appName_5)); }
inline String_t* get_appName_5() const { return ___appName_5; }
inline String_t** get_address_of_appName_5() { return &___appName_5; }
inline void set_appName_5(String_t* value)
{
___appName_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___appName_5), (void*)value);
}
inline static int32_t get_offset_of_currentXmlPath_6() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___currentXmlPath_6)); }
inline String_t* get_currentXmlPath_6() const { return ___currentXmlPath_6; }
inline String_t** get_address_of_currentXmlPath_6() { return &___currentXmlPath_6; }
inline void set_currentXmlPath_6(String_t* value)
{
___currentXmlPath_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentXmlPath_6), (void*)value);
}
inline static int32_t get_offset_of_onlyDelayedChannels_7() { return static_cast<int32_t>(offsetof(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376, ___onlyDelayedChannels_7)); }
inline bool get_onlyDelayedChannels_7() const { return ___onlyDelayedChannels_7; }
inline bool* get_address_of_onlyDelayedChannels_7() { return &___onlyDelayedChannels_7; }
inline void set_onlyDelayedChannels_7(bool value)
{
___onlyDelayedChannels_7 = value;
}
};
// System.Runtime.Remoting.Contexts.CrossContextChannel
struct CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink
struct ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::_next
RuntimeObject* ____next_0;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_1;
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::_call
RuntimeObject* ____call_2;
public:
inline static int32_t get_offset_of__next_0() { return static_cast<int32_t>(offsetof(ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4, ____next_0)); }
inline RuntimeObject* get__next_0() const { return ____next_0; }
inline RuntimeObject** get_address_of__next_0() { return &____next_0; }
inline void set__next_0(RuntimeObject* value)
{
____next_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_0), (void*)value);
}
inline static int32_t get_offset_of__context_1() { return static_cast<int32_t>(offsetof(ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4, ____context_1)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_1() const { return ____context_1; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_1() { return &____context_1; }
inline void set__context_1(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_1), (void*)value);
}
inline static int32_t get_offset_of__call_2() { return static_cast<int32_t>(offsetof(ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4, ____call_2)); }
inline RuntimeObject* get__call_2() const { return ____call_2; }
inline RuntimeObject** get_address_of__call_2() { return &____call_2; }
inline void set__call_2(RuntimeObject* value)
{
____call_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____call_2), (void*)value);
}
};
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.Contexts.DynamicPropertyCollection::_properties
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____properties_0;
public:
inline static int32_t get_offset_of__properties_0() { return static_cast<int32_t>(offsetof(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C, ____properties_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__properties_0() const { return ____properties_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__properties_0() { return &____properties_0; }
inline void set__properties_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____properties_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_0), (void*)value);
}
};
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection_DynamicPropertyReg
struct DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F : public RuntimeObject
{
public:
// System.Runtime.Remoting.Contexts.IDynamicProperty System.Runtime.Remoting.Contexts.DynamicPropertyCollection_DynamicPropertyReg::Property
RuntimeObject* ___Property_0;
// System.Runtime.Remoting.Contexts.IDynamicMessageSink System.Runtime.Remoting.Contexts.DynamicPropertyCollection_DynamicPropertyReg::Sink
RuntimeObject* ___Sink_1;
public:
inline static int32_t get_offset_of_Property_0() { return static_cast<int32_t>(offsetof(DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F, ___Property_0)); }
inline RuntimeObject* get_Property_0() const { return ___Property_0; }
inline RuntimeObject** get_address_of_Property_0() { return &___Property_0; }
inline void set_Property_0(RuntimeObject* value)
{
___Property_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Property_0), (void*)value);
}
inline static int32_t get_offset_of_Sink_1() { return static_cast<int32_t>(offsetof(DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F, ___Sink_1)); }
inline RuntimeObject* get_Sink_1() const { return ___Sink_1; }
inline RuntimeObject** get_address_of_Sink_1() { return &___Sink_1; }
inline void set_Sink_1(RuntimeObject* value)
{
___Sink_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Sink_1), (void*)value);
}
};
// System.Runtime.Remoting.DisposerReplySink
struct DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.DisposerReplySink::_next
RuntimeObject* ____next_0;
// System.IDisposable System.Runtime.Remoting.DisposerReplySink::_disposable
RuntimeObject* ____disposable_1;
public:
inline static int32_t get_offset_of__next_0() { return static_cast<int32_t>(offsetof(DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13, ____next_0)); }
inline RuntimeObject* get__next_0() const { return ____next_0; }
inline RuntimeObject** get_address_of__next_0() { return &____next_0; }
inline void set__next_0(RuntimeObject* value)
{
____next_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_0), (void*)value);
}
inline static int32_t get_offset_of__disposable_1() { return static_cast<int32_t>(offsetof(DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13, ____disposable_1)); }
inline RuntimeObject* get__disposable_1() const { return ____disposable_1; }
inline RuntimeObject** get_address_of__disposable_1() { return &____disposable_1; }
inline void set__disposable_1(RuntimeObject* value)
{
____disposable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____disposable_1), (void*)value);
}
};
// System.Runtime.Remoting.EnvoyInfo
struct EnvoyInfo_tB3A3AF8D7FCFFF5C5468B6C3EDFE186015B1CD09 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.EnvoyInfo::envoySinks
RuntimeObject* ___envoySinks_0;
public:
inline static int32_t get_offset_of_envoySinks_0() { return static_cast<int32_t>(offsetof(EnvoyInfo_tB3A3AF8D7FCFFF5C5468B6C3EDFE186015B1CD09, ___envoySinks_0)); }
inline RuntimeObject* get_envoySinks_0() const { return ___envoySinks_0; }
inline RuntimeObject** get_address_of_envoySinks_0() { return &___envoySinks_0; }
inline void set_envoySinks_0(RuntimeObject* value)
{
___envoySinks_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___envoySinks_0), (void*)value);
}
};
// System.Runtime.Remoting.Identity
struct Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Identity::_objectUri
String_t* ____objectUri_0;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_channelSink
RuntimeObject* ____channelSink_1;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_envoySink
RuntimeObject* ____envoySink_2;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_clientDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____clientDynamicProperties_3;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_serverDynamicProperties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ____serverDynamicProperties_4;
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::_objRef
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ____objRef_5;
// System.Boolean System.Runtime.Remoting.Identity::_disposed
bool ____disposed_6;
public:
inline static int32_t get_offset_of__objectUri_0() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objectUri_0)); }
inline String_t* get__objectUri_0() const { return ____objectUri_0; }
inline String_t** get_address_of__objectUri_0() { return &____objectUri_0; }
inline void set__objectUri_0(String_t* value)
{
____objectUri_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectUri_0), (void*)value);
}
inline static int32_t get_offset_of__channelSink_1() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____channelSink_1)); }
inline RuntimeObject* get__channelSink_1() const { return ____channelSink_1; }
inline RuntimeObject** get_address_of__channelSink_1() { return &____channelSink_1; }
inline void set__channelSink_1(RuntimeObject* value)
{
____channelSink_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelSink_1), (void*)value);
}
inline static int32_t get_offset_of__envoySink_2() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____envoySink_2)); }
inline RuntimeObject* get__envoySink_2() const { return ____envoySink_2; }
inline RuntimeObject** get_address_of__envoySink_2() { return &____envoySink_2; }
inline void set__envoySink_2(RuntimeObject* value)
{
____envoySink_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____envoySink_2), (void*)value);
}
inline static int32_t get_offset_of__clientDynamicProperties_3() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____clientDynamicProperties_3)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__clientDynamicProperties_3() const { return ____clientDynamicProperties_3; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__clientDynamicProperties_3() { return &____clientDynamicProperties_3; }
inline void set__clientDynamicProperties_3(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____clientDynamicProperties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clientDynamicProperties_3), (void*)value);
}
inline static int32_t get_offset_of__serverDynamicProperties_4() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____serverDynamicProperties_4)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get__serverDynamicProperties_4() const { return ____serverDynamicProperties_4; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of__serverDynamicProperties_4() { return &____serverDynamicProperties_4; }
inline void set__serverDynamicProperties_4(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
____serverDynamicProperties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverDynamicProperties_4), (void*)value);
}
inline static int32_t get_offset_of__objRef_5() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____objRef_5)); }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * get__objRef_5() const { return ____objRef_5; }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 ** get_address_of__objRef_5() { return &____objRef_5; }
inline void set__objRef_5(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * value)
{
____objRef_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRef_5), (void*)value);
}
inline static int32_t get_offset_of__disposed_6() { return static_cast<int32_t>(offsetof(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6, ____disposed_6)); }
inline bool get__disposed_6() const { return ____disposed_6; }
inline bool* get_address_of__disposed_6() { return &____disposed_6; }
inline void set__disposed_6(bool value)
{
____disposed_6 = value;
}
};
// System.Runtime.Remoting.InternalRemotingServices
struct InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3 : public RuntimeObject
{
public:
public:
};
struct InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.InternalRemotingServices::_soapAttributes
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____soapAttributes_0;
public:
inline static int32_t get_offset_of__soapAttributes_0() { return static_cast<int32_t>(offsetof(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields, ____soapAttributes_0)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__soapAttributes_0() const { return ____soapAttributes_0; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__soapAttributes_0() { return &____soapAttributes_0; }
inline void set__soapAttributes_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
____soapAttributes_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____soapAttributes_0), (void*)value);
}
};
// System.Runtime.Remoting.Lifetime.LeaseManager
struct LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.Lifetime.LeaseManager::_objects
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____objects_0;
// System.Threading.Timer System.Runtime.Remoting.Lifetime.LeaseManager::_timer
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * ____timer_1;
public:
inline static int32_t get_offset_of__objects_0() { return static_cast<int32_t>(offsetof(LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727, ____objects_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__objects_0() const { return ____objects_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__objects_0() { return &____objects_0; }
inline void set__objects_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____objects_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objects_0), (void*)value);
}
inline static int32_t get_offset_of__timer_1() { return static_cast<int32_t>(offsetof(LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727, ____timer_1)); }
inline Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * get__timer_1() const { return ____timer_1; }
inline Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 ** get_address_of__timer_1() { return &____timer_1; }
inline void set__timer_1(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * value)
{
____timer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____timer_1), (void*)value);
}
};
// System.Runtime.Remoting.Lifetime.LeaseSink
struct LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Lifetime.LeaseSink::_nextSink
RuntimeObject* ____nextSink_0;
public:
inline static int32_t get_offset_of__nextSink_0() { return static_cast<int32_t>(offsetof(LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0, ____nextSink_0)); }
inline RuntimeObject* get__nextSink_0() const { return ____nextSink_0; }
inline RuntimeObject** get_address_of__nextSink_0() { return &____nextSink_0; }
inline void set__nextSink_0(RuntimeObject* value)
{
____nextSink_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nextSink_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ArgInfo
struct ArgInfo_t67419B6DE53980148631C33DF785307579134942 : public RuntimeObject
{
public:
// System.Int32[] System.Runtime.Remoting.Messaging.ArgInfo::_paramMap
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____paramMap_0;
// System.Int32 System.Runtime.Remoting.Messaging.ArgInfo::_inoutArgCount
int32_t ____inoutArgCount_1;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ArgInfo::_method
MethodBase_t * ____method_2;
public:
inline static int32_t get_offset_of__paramMap_0() { return static_cast<int32_t>(offsetof(ArgInfo_t67419B6DE53980148631C33DF785307579134942, ____paramMap_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__paramMap_0() const { return ____paramMap_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__paramMap_0() { return &____paramMap_0; }
inline void set__paramMap_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____paramMap_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____paramMap_0), (void*)value);
}
inline static int32_t get_offset_of__inoutArgCount_1() { return static_cast<int32_t>(offsetof(ArgInfo_t67419B6DE53980148631C33DF785307579134942, ____inoutArgCount_1)); }
inline int32_t get__inoutArgCount_1() const { return ____inoutArgCount_1; }
inline int32_t* get_address_of__inoutArgCount_1() { return &____inoutArgCount_1; }
inline void set__inoutArgCount_1(int32_t value)
{
____inoutArgCount_1 = value;
}
inline static int32_t get_offset_of__method_2() { return static_cast<int32_t>(offsetof(ArgInfo_t67419B6DE53980148631C33DF785307579134942, ____method_2)); }
inline MethodBase_t * get__method_2() const { return ____method_2; }
inline MethodBase_t ** get_address_of__method_2() { return &____method_2; }
inline void set__method_2(MethodBase_t * value)
{
____method_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____method_2), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADArgHolder
struct CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Messaging.CADArgHolder::index
int32_t ___index_0;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A, ___index_0)); }
inline int32_t get_index_0() const { return ___index_0; }
inline int32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(int32_t value)
{
___index_0 = value;
}
};
// System.Runtime.Remoting.Messaging.CADMessageBase
struct CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::_args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_0;
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::_serializedArgs
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____serializedArgs_1;
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::_propertyCount
int32_t ____propertyCount_2;
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMessageBase::_callContext
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * ____callContext_3;
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::serializedMethod
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___serializedMethod_4;
public:
inline static int32_t get_offset_of__args_0() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____args_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_0() const { return ____args_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_0() { return &____args_0; }
inline void set__args_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____args_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_0), (void*)value);
}
inline static int32_t get_offset_of__serializedArgs_1() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____serializedArgs_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__serializedArgs_1() const { return ____serializedArgs_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__serializedArgs_1() { return &____serializedArgs_1; }
inline void set__serializedArgs_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____serializedArgs_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializedArgs_1), (void*)value);
}
inline static int32_t get_offset_of__propertyCount_2() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____propertyCount_2)); }
inline int32_t get__propertyCount_2() const { return ____propertyCount_2; }
inline int32_t* get_address_of__propertyCount_2() { return &____propertyCount_2; }
inline void set__propertyCount_2(int32_t value)
{
____propertyCount_2 = value;
}
inline static int32_t get_offset_of__callContext_3() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ____callContext_3)); }
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * get__callContext_3() const { return ____callContext_3; }
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A ** get_address_of__callContext_3() { return &____callContext_3; }
inline void set__callContext_3(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * value)
{
____callContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callContext_3), (void*)value);
}
inline static int32_t get_offset_of_serializedMethod_4() { return static_cast<int32_t>(offsetof(CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B, ___serializedMethod_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_serializedMethod_4() const { return ___serializedMethod_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_serializedMethod_4() { return &___serializedMethod_4; }
inline void set_serializedMethod_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___serializedMethod_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serializedMethod_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADMethodRef
struct CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 : public RuntimeObject
{
public:
// System.Boolean System.Runtime.Remoting.Messaging.CADMethodRef::ctor
bool ___ctor_0;
// System.String System.Runtime.Remoting.Messaging.CADMethodRef::typeName
String_t* ___typeName_1;
// System.String System.Runtime.Remoting.Messaging.CADMethodRef::methodName
String_t* ___methodName_2;
// System.String[] System.Runtime.Remoting.Messaging.CADMethodRef::param_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___param_names_3;
// System.String[] System.Runtime.Remoting.Messaging.CADMethodRef::generic_arg_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___generic_arg_names_4;
public:
inline static int32_t get_offset_of_ctor_0() { return static_cast<int32_t>(offsetof(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759, ___ctor_0)); }
inline bool get_ctor_0() const { return ___ctor_0; }
inline bool* get_address_of_ctor_0() { return &___ctor_0; }
inline void set_ctor_0(bool value)
{
___ctor_0 = value;
}
inline static int32_t get_offset_of_typeName_1() { return static_cast<int32_t>(offsetof(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759, ___typeName_1)); }
inline String_t* get_typeName_1() const { return ___typeName_1; }
inline String_t** get_address_of_typeName_1() { return &___typeName_1; }
inline void set_typeName_1(String_t* value)
{
___typeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeName_1), (void*)value);
}
inline static int32_t get_offset_of_methodName_2() { return static_cast<int32_t>(offsetof(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759, ___methodName_2)); }
inline String_t* get_methodName_2() const { return ___methodName_2; }
inline String_t** get_address_of_methodName_2() { return &___methodName_2; }
inline void set_methodName_2(String_t* value)
{
___methodName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___methodName_2), (void*)value);
}
inline static int32_t get_offset_of_param_names_3() { return static_cast<int32_t>(offsetof(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759, ___param_names_3)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_param_names_3() const { return ___param_names_3; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_param_names_3() { return &___param_names_3; }
inline void set_param_names_3(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___param_names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___param_names_3), (void*)value);
}
inline static int32_t get_offset_of_generic_arg_names_4() { return static_cast<int32_t>(offsetof(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759, ___generic_arg_names_4)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_generic_arg_names_4() const { return ___generic_arg_names_4; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_generic_arg_names_4() { return &___generic_arg_names_4; }
inline void set_generic_arg_names_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___generic_arg_names_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___generic_arg_names_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADObjRef
struct CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 : public RuntimeObject
{
public:
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Messaging.CADObjRef::objref
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objref_0;
// System.Int32 System.Runtime.Remoting.Messaging.CADObjRef::SourceDomain
int32_t ___SourceDomain_1;
// System.Byte[] System.Runtime.Remoting.Messaging.CADObjRef::TypeInfo
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___TypeInfo_2;
public:
inline static int32_t get_offset_of_objref_0() { return static_cast<int32_t>(offsetof(CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591, ___objref_0)); }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * get_objref_0() const { return ___objref_0; }
inline ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 ** get_address_of_objref_0() { return &___objref_0; }
inline void set_objref_0(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * value)
{
___objref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objref_0), (void*)value);
}
inline static int32_t get_offset_of_SourceDomain_1() { return static_cast<int32_t>(offsetof(CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591, ___SourceDomain_1)); }
inline int32_t get_SourceDomain_1() const { return ___SourceDomain_1; }
inline int32_t* get_address_of_SourceDomain_1() { return &___SourceDomain_1; }
inline void set_SourceDomain_1(int32_t value)
{
___SourceDomain_1 = value;
}
inline static int32_t get_offset_of_TypeInfo_2() { return static_cast<int32_t>(offsetof(CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591, ___TypeInfo_2)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_TypeInfo_2() const { return ___TypeInfo_2; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_TypeInfo_2() { return &___TypeInfo_2; }
inline void set_TypeInfo_2(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___TypeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeInfo_2), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CallContext
struct CallContext_tFB5D4D2D6BB4F51BA82A549CEA456DD9608CDA1A : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.CallContextRemotingData
struct CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::_logicalCallID
String_t* ____logicalCallID_0;
public:
inline static int32_t get_offset_of__logicalCallID_0() { return static_cast<int32_t>(offsetof(CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347, ____logicalCallID_0)); }
inline String_t* get__logicalCallID_0() const { return ____logicalCallID_0; }
inline String_t** get_address_of__logicalCallID_0() { return &____logicalCallID_0; }
inline void set__logicalCallID_0(String_t* value)
{
____logicalCallID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logicalCallID_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CallContextSecurityData
struct CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF : public RuntimeObject
{
public:
// System.Security.Principal.IPrincipal System.Runtime.Remoting.Messaging.CallContextSecurityData::_principal
RuntimeObject* ____principal_0;
public:
inline static int32_t get_offset_of__principal_0() { return static_cast<int32_t>(offsetof(CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF, ____principal_0)); }
inline RuntimeObject* get__principal_0() const { return ____principal_0; }
inline RuntimeObject** get_address_of__principal_0() { return &____principal_0; }
inline void set__principal_0(RuntimeObject* value)
{
____principal_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____principal_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ClientContextReplySink
struct ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Messaging.ClientContextReplySink::_replySink
RuntimeObject* ____replySink_0;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Messaging.ClientContextReplySink::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_1;
public:
inline static int32_t get_offset_of__replySink_0() { return static_cast<int32_t>(offsetof(ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C, ____replySink_0)); }
inline RuntimeObject* get__replySink_0() const { return ____replySink_0; }
inline RuntimeObject** get_address_of__replySink_0() { return &____replySink_0; }
inline void set__replySink_0(RuntimeObject* value)
{
____replySink_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____replySink_0), (void*)value);
}
inline static int32_t get_offset_of__context_1() { return static_cast<int32_t>(offsetof(ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C, ____context_1)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_1() const { return ____context_1; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_1() { return &____context_1; }
inline void set__context_1(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_1), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ClientContextTerminatorSink
struct ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB : public RuntimeObject
{
public:
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_0;
public:
inline static int32_t get_offset_of__context_0() { return static_cast<int32_t>(offsetof(ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB, ____context_0)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_0() const { return ____context_0; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_0() { return &____context_0; }
inline void set__context_0(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink
struct EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 : public RuntimeObject
{
public:
public:
};
struct EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_StaticFields
{
public:
// System.Runtime.Remoting.Messaging.EnvoyTerminatorSink System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::Instance
EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_StaticFields, ___Instance_0)); }
inline EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * get_Instance_0() const { return ___Instance_0; }
inline EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ErrorMessage
struct ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.ErrorMessage::_uri
String_t* ____uri_0;
public:
inline static int32_t get_offset_of__uri_0() { return static_cast<int32_t>(offsetof(ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D, ____uri_0)); }
inline String_t* get__uri_0() const { return ____uri_0; }
inline String_t** get_address_of__uri_0() { return &____uri_0; }
inline void set__uri_0(String_t* value)
{
____uri_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.Header
struct Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.IllogicalCallContext
struct IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.IllogicalCallContext::m_Datastore
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___m_Datastore_0;
// System.Object System.Runtime.Remoting.Messaging.IllogicalCallContext::m_HostContext
RuntimeObject * ___m_HostContext_1;
public:
inline static int32_t get_offset_of_m_Datastore_0() { return static_cast<int32_t>(offsetof(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179, ___m_Datastore_0)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_m_Datastore_0() const { return ___m_Datastore_0; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_m_Datastore_0() { return &___m_Datastore_0; }
inline void set_m_Datastore_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___m_Datastore_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Datastore_0), (void*)value);
}
inline static int32_t get_offset_of_m_HostContext_1() { return static_cast<int32_t>(offsetof(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179, ___m_HostContext_1)); }
inline RuntimeObject * get_m_HostContext_1() const { return ___m_HostContext_1; }
inline RuntimeObject ** get_address_of_m_HostContext_1() { return &___m_HostContext_1; }
inline void set_m_HostContext_1(RuntimeObject * value)
{
___m_HostContext_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HostContext_1), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.LogicalCallContext
struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.LogicalCallContext::m_Datastore
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___m_Datastore_1;
// System.Runtime.Remoting.Messaging.CallContextRemotingData System.Runtime.Remoting.Messaging.LogicalCallContext::m_RemotingData
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * ___m_RemotingData_2;
// System.Runtime.Remoting.Messaging.CallContextSecurityData System.Runtime.Remoting.Messaging.LogicalCallContext::m_SecurityData
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * ___m_SecurityData_3;
// System.Object System.Runtime.Remoting.Messaging.LogicalCallContext::m_HostContext
RuntimeObject * ___m_HostContext_4;
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::m_IsCorrelationMgr
bool ___m_IsCorrelationMgr_5;
public:
inline static int32_t get_offset_of_m_Datastore_1() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E, ___m_Datastore_1)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_m_Datastore_1() const { return ___m_Datastore_1; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_m_Datastore_1() { return &___m_Datastore_1; }
inline void set_m_Datastore_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___m_Datastore_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Datastore_1), (void*)value);
}
inline static int32_t get_offset_of_m_RemotingData_2() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E, ___m_RemotingData_2)); }
inline CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * get_m_RemotingData_2() const { return ___m_RemotingData_2; }
inline CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 ** get_address_of_m_RemotingData_2() { return &___m_RemotingData_2; }
inline void set_m_RemotingData_2(CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * value)
{
___m_RemotingData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RemotingData_2), (void*)value);
}
inline static int32_t get_offset_of_m_SecurityData_3() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E, ___m_SecurityData_3)); }
inline CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * get_m_SecurityData_3() const { return ___m_SecurityData_3; }
inline CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF ** get_address_of_m_SecurityData_3() { return &___m_SecurityData_3; }
inline void set_m_SecurityData_3(CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * value)
{
___m_SecurityData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SecurityData_3), (void*)value);
}
inline static int32_t get_offset_of_m_HostContext_4() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E, ___m_HostContext_4)); }
inline RuntimeObject * get_m_HostContext_4() const { return ___m_HostContext_4; }
inline RuntimeObject ** get_address_of_m_HostContext_4() { return &___m_HostContext_4; }
inline void set_m_HostContext_4(RuntimeObject * value)
{
___m_HostContext_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HostContext_4), (void*)value);
}
inline static int32_t get_offset_of_m_IsCorrelationMgr_5() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E, ___m_IsCorrelationMgr_5)); }
inline bool get_m_IsCorrelationMgr_5() const { return ___m_IsCorrelationMgr_5; }
inline bool* get_address_of_m_IsCorrelationMgr_5() { return &___m_IsCorrelationMgr_5; }
inline void set_m_IsCorrelationMgr_5(bool value)
{
___m_IsCorrelationMgr_5 = value;
}
};
struct LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_StaticFields
{
public:
// System.Type System.Runtime.Remoting.Messaging.LogicalCallContext::s_callContextType
Type_t * ___s_callContextType_0;
public:
inline static int32_t get_offset_of_s_callContextType_0() { return static_cast<int32_t>(offsetof(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_StaticFields, ___s_callContextType_0)); }
inline Type_t * get_s_callContextType_0() const { return ___s_callContextType_0; }
inline Type_t ** get_address_of_s_callContextType_0() { return &___s_callContextType_0; }
inline void set_s_callContextType_0(Type_t * value)
{
___s_callContextType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_callContextType_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.MessageDictionary
struct MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 : public RuntimeObject
{
public:
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::_internalProperties
RuntimeObject* ____internalProperties_0;
// System.Runtime.Remoting.Messaging.IMethodMessage System.Runtime.Remoting.Messaging.MessageDictionary::_message
RuntimeObject* ____message_1;
// System.String[] System.Runtime.Remoting.Messaging.MessageDictionary::_methodKeys
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____methodKeys_2;
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::_ownProperties
bool ____ownProperties_3;
public:
inline static int32_t get_offset_of__internalProperties_0() { return static_cast<int32_t>(offsetof(MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5, ____internalProperties_0)); }
inline RuntimeObject* get__internalProperties_0() const { return ____internalProperties_0; }
inline RuntimeObject** get_address_of__internalProperties_0() { return &____internalProperties_0; }
inline void set__internalProperties_0(RuntimeObject* value)
{
____internalProperties_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____internalProperties_0), (void*)value);
}
inline static int32_t get_offset_of__message_1() { return static_cast<int32_t>(offsetof(MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5, ____message_1)); }
inline RuntimeObject* get__message_1() const { return ____message_1; }
inline RuntimeObject** get_address_of__message_1() { return &____message_1; }
inline void set__message_1(RuntimeObject* value)
{
____message_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_1), (void*)value);
}
inline static int32_t get_offset_of__methodKeys_2() { return static_cast<int32_t>(offsetof(MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5, ____methodKeys_2)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__methodKeys_2() const { return ____methodKeys_2; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__methodKeys_2() { return &____methodKeys_2; }
inline void set__methodKeys_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
____methodKeys_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodKeys_2), (void*)value);
}
inline static int32_t get_offset_of__ownProperties_3() { return static_cast<int32_t>(offsetof(MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5, ____ownProperties_3)); }
inline bool get__ownProperties_3() const { return ____ownProperties_3; }
inline bool* get_address_of__ownProperties_3() { return &____ownProperties_3; }
inline void set__ownProperties_3(bool value)
{
____ownProperties_3 = value;
}
};
// System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator
struct DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.MessageDictionary System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::_methodDictionary
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * ____methodDictionary_0;
// System.Collections.IDictionaryEnumerator System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::_hashtableEnum
RuntimeObject* ____hashtableEnum_1;
// System.Int32 System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::_posMethod
int32_t ____posMethod_2;
public:
inline static int32_t get_offset_of__methodDictionary_0() { return static_cast<int32_t>(offsetof(DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9, ____methodDictionary_0)); }
inline MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * get__methodDictionary_0() const { return ____methodDictionary_0; }
inline MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 ** get_address_of__methodDictionary_0() { return &____methodDictionary_0; }
inline void set__methodDictionary_0(MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * value)
{
____methodDictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodDictionary_0), (void*)value);
}
inline static int32_t get_offset_of__hashtableEnum_1() { return static_cast<int32_t>(offsetof(DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9, ____hashtableEnum_1)); }
inline RuntimeObject* get__hashtableEnum_1() const { return ____hashtableEnum_1; }
inline RuntimeObject** get_address_of__hashtableEnum_1() { return &____hashtableEnum_1; }
inline void set__hashtableEnum_1(RuntimeObject* value)
{
____hashtableEnum_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____hashtableEnum_1), (void*)value);
}
inline static int32_t get_offset_of__posMethod_2() { return static_cast<int32_t>(offsetof(DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9, ____posMethod_2)); }
inline int32_t get__posMethod_2() const { return ____posMethod_2; }
inline int32_t* get_address_of__posMethod_2() { return &____posMethod_2; }
inline void set__posMethod_2(int32_t value)
{
____posMethod_2 = value;
}
};
// System.Runtime.Remoting.Messaging.MethodCall
struct MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.MethodCall::_uri
String_t* ____uri_0;
// System.String System.Runtime.Remoting.Messaging.MethodCall::_typeName
String_t* ____typeName_1;
// System.String System.Runtime.Remoting.Messaging.MethodCall::_methodName
String_t* ____methodName_2;
// System.Object[] System.Runtime.Remoting.Messaging.MethodCall::_args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_3;
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::_methodSignature
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____methodSignature_4;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodCall::_methodBase
MethodBase_t * ____methodBase_5;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodCall::_callContext
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____callContext_6;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodCall::_targetIdentity
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____targetIdentity_7;
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::_genericArguments
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____genericArguments_8;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::ExternalProperties
RuntimeObject* ___ExternalProperties_9;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::InternalProperties
RuntimeObject* ___InternalProperties_10;
public:
inline static int32_t get_offset_of__uri_0() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____uri_0)); }
inline String_t* get__uri_0() const { return ____uri_0; }
inline String_t** get_address_of__uri_0() { return &____uri_0; }
inline void set__uri_0(String_t* value)
{
____uri_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_0), (void*)value);
}
inline static int32_t get_offset_of__typeName_1() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____typeName_1)); }
inline String_t* get__typeName_1() const { return ____typeName_1; }
inline String_t** get_address_of__typeName_1() { return &____typeName_1; }
inline void set__typeName_1(String_t* value)
{
____typeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_1), (void*)value);
}
inline static int32_t get_offset_of__methodName_2() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____methodName_2)); }
inline String_t* get__methodName_2() const { return ____methodName_2; }
inline String_t** get_address_of__methodName_2() { return &____methodName_2; }
inline void set__methodName_2(String_t* value)
{
____methodName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_2), (void*)value);
}
inline static int32_t get_offset_of__args_3() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____args_3)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_3() const { return ____args_3; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_3() { return &____args_3; }
inline void set__args_3(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____args_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_3), (void*)value);
}
inline static int32_t get_offset_of__methodSignature_4() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____methodSignature_4)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__methodSignature_4() const { return ____methodSignature_4; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__methodSignature_4() { return &____methodSignature_4; }
inline void set__methodSignature_4(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____methodSignature_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_4), (void*)value);
}
inline static int32_t get_offset_of__methodBase_5() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____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__callContext_6() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____callContext_6)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__callContext_6() const { return ____callContext_6; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__callContext_6() { return &____callContext_6; }
inline void set__callContext_6(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
____callContext_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callContext_6), (void*)value);
}
inline static int32_t get_offset_of__targetIdentity_7() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____targetIdentity_7)); }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get__targetIdentity_7() const { return ____targetIdentity_7; }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of__targetIdentity_7() { return &____targetIdentity_7; }
inline void set__targetIdentity_7(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
{
____targetIdentity_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_7), (void*)value);
}
inline static int32_t get_offset_of__genericArguments_8() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ____genericArguments_8)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__genericArguments_8() const { return ____genericArguments_8; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__genericArguments_8() { return &____genericArguments_8; }
inline void set__genericArguments_8(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____genericArguments_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____genericArguments_8), (void*)value);
}
inline static int32_t get_offset_of_ExternalProperties_9() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ___ExternalProperties_9)); }
inline RuntimeObject* get_ExternalProperties_9() const { return ___ExternalProperties_9; }
inline RuntimeObject** get_address_of_ExternalProperties_9() { return &___ExternalProperties_9; }
inline void set_ExternalProperties_9(RuntimeObject* value)
{
___ExternalProperties_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ExternalProperties_9), (void*)value);
}
inline static int32_t get_offset_of_InternalProperties_10() { return static_cast<int32_t>(offsetof(MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA, ___InternalProperties_10)); }
inline RuntimeObject* get_InternalProperties_10() const { return ___InternalProperties_10; }
inline RuntimeObject** get_address_of_InternalProperties_10() { return &___InternalProperties_10; }
inline void set_InternalProperties_10(RuntimeObject* value)
{
___InternalProperties_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalProperties_10), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.MethodResponse
struct MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_methodName
String_t* ____methodName_0;
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_uri
String_t* ____uri_1;
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_typeName
String_t* ____typeName_2;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodResponse::_methodBase
MethodBase_t * ____methodBase_3;
// System.Object System.Runtime.Remoting.Messaging.MethodResponse::_returnValue
RuntimeObject * ____returnValue_4;
// System.Exception System.Runtime.Remoting.Messaging.MethodResponse::_exception
Exception_t * ____exception_5;
// System.Type[] System.Runtime.Remoting.Messaging.MethodResponse::_methodSignature
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____methodSignature_6;
// System.Runtime.Remoting.Messaging.ArgInfo System.Runtime.Remoting.Messaging.MethodResponse::_inArgInfo
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * ____inArgInfo_7;
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::_args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_8;
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::_outArgs
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____outArgs_9;
// System.Runtime.Remoting.Messaging.IMethodCallMessage System.Runtime.Remoting.Messaging.MethodResponse::_callMsg
RuntimeObject* ____callMsg_10;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodResponse::_callContext
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____callContext_11;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodResponse::_targetIdentity
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____targetIdentity_12;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::ExternalProperties
RuntimeObject* ___ExternalProperties_13;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::InternalProperties
RuntimeObject* ___InternalProperties_14;
public:
inline static int32_t get_offset_of__methodName_0() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____methodName_0)); }
inline String_t* get__methodName_0() const { return ____methodName_0; }
inline String_t** get_address_of__methodName_0() { return &____methodName_0; }
inline void set__methodName_0(String_t* value)
{
____methodName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_0), (void*)value);
}
inline static int32_t get_offset_of__uri_1() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____uri_1)); }
inline String_t* get__uri_1() const { return ____uri_1; }
inline String_t** get_address_of__uri_1() { return &____uri_1; }
inline void set__uri_1(String_t* value)
{
____uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_1), (void*)value);
}
inline static int32_t get_offset_of__typeName_2() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____typeName_2)); }
inline String_t* get__typeName_2() const { return ____typeName_2; }
inline String_t** get_address_of__typeName_2() { return &____typeName_2; }
inline void set__typeName_2(String_t* value)
{
____typeName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_2), (void*)value);
}
inline static int32_t get_offset_of__methodBase_3() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____methodBase_3)); }
inline MethodBase_t * get__methodBase_3() const { return ____methodBase_3; }
inline MethodBase_t ** get_address_of__methodBase_3() { return &____methodBase_3; }
inline void set__methodBase_3(MethodBase_t * value)
{
____methodBase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodBase_3), (void*)value);
}
inline static int32_t get_offset_of__returnValue_4() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____returnValue_4)); }
inline RuntimeObject * get__returnValue_4() const { return ____returnValue_4; }
inline RuntimeObject ** get_address_of__returnValue_4() { return &____returnValue_4; }
inline void set__returnValue_4(RuntimeObject * value)
{
____returnValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_4), (void*)value);
}
inline static int32_t get_offset_of__exception_5() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____exception_5)); }
inline Exception_t * get__exception_5() const { return ____exception_5; }
inline Exception_t ** get_address_of__exception_5() { return &____exception_5; }
inline void set__exception_5(Exception_t * value)
{
____exception_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_5), (void*)value);
}
inline static int32_t get_offset_of__methodSignature_6() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____methodSignature_6)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__methodSignature_6() const { return ____methodSignature_6; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__methodSignature_6() { return &____methodSignature_6; }
inline void set__methodSignature_6(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____methodSignature_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_6), (void*)value);
}
inline static int32_t get_offset_of__inArgInfo_7() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____inArgInfo_7)); }
inline ArgInfo_t67419B6DE53980148631C33DF785307579134942 * get__inArgInfo_7() const { return ____inArgInfo_7; }
inline ArgInfo_t67419B6DE53980148631C33DF785307579134942 ** get_address_of__inArgInfo_7() { return &____inArgInfo_7; }
inline void set__inArgInfo_7(ArgInfo_t67419B6DE53980148631C33DF785307579134942 * value)
{
____inArgInfo_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inArgInfo_7), (void*)value);
}
inline static int32_t get_offset_of__args_8() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____args_8)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_8() const { return ____args_8; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_8() { return &____args_8; }
inline void set__args_8(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____args_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_8), (void*)value);
}
inline static int32_t get_offset_of__outArgs_9() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____outArgs_9)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__outArgs_9() const { return ____outArgs_9; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__outArgs_9() { return &____outArgs_9; }
inline void set__outArgs_9(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____outArgs_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outArgs_9), (void*)value);
}
inline static int32_t get_offset_of__callMsg_10() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____callMsg_10)); }
inline RuntimeObject* get__callMsg_10() const { return ____callMsg_10; }
inline RuntimeObject** get_address_of__callMsg_10() { return &____callMsg_10; }
inline void set__callMsg_10(RuntimeObject* value)
{
____callMsg_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callMsg_10), (void*)value);
}
inline static int32_t get_offset_of__callContext_11() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____callContext_11)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__callContext_11() const { return ____callContext_11; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__callContext_11() { return &____callContext_11; }
inline void set__callContext_11(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
____callContext_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callContext_11), (void*)value);
}
inline static int32_t get_offset_of__targetIdentity_12() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ____targetIdentity_12)); }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get__targetIdentity_12() const { return ____targetIdentity_12; }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of__targetIdentity_12() { return &____targetIdentity_12; }
inline void set__targetIdentity_12(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
{
____targetIdentity_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_12), (void*)value);
}
inline static int32_t get_offset_of_ExternalProperties_13() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ___ExternalProperties_13)); }
inline RuntimeObject* get_ExternalProperties_13() const { return ___ExternalProperties_13; }
inline RuntimeObject** get_address_of_ExternalProperties_13() { return &___ExternalProperties_13; }
inline void set_ExternalProperties_13(RuntimeObject* value)
{
___ExternalProperties_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ExternalProperties_13), (void*)value);
}
inline static int32_t get_offset_of_InternalProperties_14() { return static_cast<int32_t>(offsetof(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907, ___InternalProperties_14)); }
inline RuntimeObject* get_InternalProperties_14() const { return ___InternalProperties_14; }
inline RuntimeObject** get_address_of_InternalProperties_14() { return &___InternalProperties_14; }
inline void set_InternalProperties_14(RuntimeObject* value)
{
___InternalProperties_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalProperties_14), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ObjRefSurrogate
struct ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.RemotingSurrogate
struct RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.RemotingSurrogateSelector
struct RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 : public RuntimeObject
{
public:
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_next
RuntimeObject* ____next_3;
public:
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44, ____next_3)); }
inline RuntimeObject* get__next_3() const { return ____next_3; }
inline RuntimeObject** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(RuntimeObject* value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_3), (void*)value);
}
};
struct RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields
{
public:
// System.Type System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::s_cachedTypeObjRef
Type_t * ___s_cachedTypeObjRef_0;
// System.Runtime.Remoting.Messaging.ObjRefSurrogate System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_objRefSurrogate
ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * ____objRefSurrogate_1;
// System.Runtime.Remoting.Messaging.RemotingSurrogate System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_objRemotingSurrogate
RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * ____objRemotingSurrogate_2;
public:
inline static int32_t get_offset_of_s_cachedTypeObjRef_0() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields, ___s_cachedTypeObjRef_0)); }
inline Type_t * get_s_cachedTypeObjRef_0() const { return ___s_cachedTypeObjRef_0; }
inline Type_t ** get_address_of_s_cachedTypeObjRef_0() { return &___s_cachedTypeObjRef_0; }
inline void set_s_cachedTypeObjRef_0(Type_t * value)
{
___s_cachedTypeObjRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_cachedTypeObjRef_0), (void*)value);
}
inline static int32_t get_offset_of__objRefSurrogate_1() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields, ____objRefSurrogate_1)); }
inline ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * get__objRefSurrogate_1() const { return ____objRefSurrogate_1; }
inline ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 ** get_address_of__objRefSurrogate_1() { return &____objRefSurrogate_1; }
inline void set__objRefSurrogate_1(ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * value)
{
____objRefSurrogate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRefSurrogate_1), (void*)value);
}
inline static int32_t get_offset_of__objRemotingSurrogate_2() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields, ____objRemotingSurrogate_2)); }
inline RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * get__objRemotingSurrogate_2() const { return ____objRemotingSurrogate_2; }
inline RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA ** get_address_of__objRemotingSurrogate_2() { return &____objRemotingSurrogate_2; }
inline void set__objRemotingSurrogate_2(RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * value)
{
____objRemotingSurrogate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRemotingSurrogate_2), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ReturnMessage
struct ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::_outArgs
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____outArgs_0;
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::_args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____args_1;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.ReturnMessage::_callCtx
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____callCtx_2;
// System.Object System.Runtime.Remoting.Messaging.ReturnMessage::_returnValue
RuntimeObject * ____returnValue_3;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_uri
String_t* ____uri_4;
// System.Exception System.Runtime.Remoting.Messaging.ReturnMessage::_exception
Exception_t * ____exception_5;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ReturnMessage::_methodBase
MethodBase_t * ____methodBase_6;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_methodName
String_t* ____methodName_7;
// System.Type[] System.Runtime.Remoting.Messaging.ReturnMessage::_methodSignature
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____methodSignature_8;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_typeName
String_t* ____typeName_9;
// System.Runtime.Remoting.Messaging.MethodReturnDictionary System.Runtime.Remoting.Messaging.ReturnMessage::_properties
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * ____properties_10;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.ReturnMessage::_targetIdentity
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____targetIdentity_11;
// System.Runtime.Remoting.Messaging.ArgInfo System.Runtime.Remoting.Messaging.ReturnMessage::_inArgInfo
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * ____inArgInfo_12;
public:
inline static int32_t get_offset_of__outArgs_0() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____outArgs_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__outArgs_0() const { return ____outArgs_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__outArgs_0() { return &____outArgs_0; }
inline void set__outArgs_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____outArgs_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outArgs_0), (void*)value);
}
inline static int32_t get_offset_of__args_1() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____args_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__args_1() const { return ____args_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__args_1() { return &____args_1; }
inline void set__args_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____args_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_1), (void*)value);
}
inline static int32_t get_offset_of__callCtx_2() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____callCtx_2)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__callCtx_2() const { return ____callCtx_2; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__callCtx_2() { return &____callCtx_2; }
inline void set__callCtx_2(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
____callCtx_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callCtx_2), (void*)value);
}
inline static int32_t get_offset_of__returnValue_3() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____returnValue_3)); }
inline RuntimeObject * get__returnValue_3() const { return ____returnValue_3; }
inline RuntimeObject ** get_address_of__returnValue_3() { return &____returnValue_3; }
inline void set__returnValue_3(RuntimeObject * value)
{
____returnValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_3), (void*)value);
}
inline static int32_t get_offset_of__uri_4() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____uri_4)); }
inline String_t* get__uri_4() const { return ____uri_4; }
inline String_t** get_address_of__uri_4() { return &____uri_4; }
inline void set__uri_4(String_t* value)
{
____uri_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_4), (void*)value);
}
inline static int32_t get_offset_of__exception_5() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____exception_5)); }
inline Exception_t * get__exception_5() const { return ____exception_5; }
inline Exception_t ** get_address_of__exception_5() { return &____exception_5; }
inline void set__exception_5(Exception_t * value)
{
____exception_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_5), (void*)value);
}
inline static int32_t get_offset_of__methodBase_6() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____methodBase_6)); }
inline MethodBase_t * get__methodBase_6() const { return ____methodBase_6; }
inline MethodBase_t ** get_address_of__methodBase_6() { return &____methodBase_6; }
inline void set__methodBase_6(MethodBase_t * value)
{
____methodBase_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodBase_6), (void*)value);
}
inline static int32_t get_offset_of__methodName_7() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____methodName_7)); }
inline String_t* get__methodName_7() const { return ____methodName_7; }
inline String_t** get_address_of__methodName_7() { return &____methodName_7; }
inline void set__methodName_7(String_t* value)
{
____methodName_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_7), (void*)value);
}
inline static int32_t get_offset_of__methodSignature_8() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____methodSignature_8)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__methodSignature_8() const { return ____methodSignature_8; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__methodSignature_8() { return &____methodSignature_8; }
inline void set__methodSignature_8(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____methodSignature_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_8), (void*)value);
}
inline static int32_t get_offset_of__typeName_9() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____typeName_9)); }
inline String_t* get__typeName_9() const { return ____typeName_9; }
inline String_t** get_address_of__typeName_9() { return &____typeName_9; }
inline void set__typeName_9(String_t* value)
{
____typeName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_9), (void*)value);
}
inline static int32_t get_offset_of__properties_10() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____properties_10)); }
inline MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * get__properties_10() const { return ____properties_10; }
inline MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 ** get_address_of__properties_10() { return &____properties_10; }
inline void set__properties_10(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * value)
{
____properties_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_10), (void*)value);
}
inline static int32_t get_offset_of__targetIdentity_11() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____targetIdentity_11)); }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get__targetIdentity_11() const { return ____targetIdentity_11; }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of__targetIdentity_11() { return &____targetIdentity_11; }
inline void set__targetIdentity_11(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
{
____targetIdentity_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_11), (void*)value);
}
inline static int32_t get_offset_of__inArgInfo_12() { return static_cast<int32_t>(offsetof(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03, ____inArgInfo_12)); }
inline ArgInfo_t67419B6DE53980148631C33DF785307579134942 * get__inArgInfo_12() const { return ____inArgInfo_12; }
inline ArgInfo_t67419B6DE53980148631C33DF785307579134942 ** get_address_of__inArgInfo_12() { return &____inArgInfo_12; }
inline void set__inArgInfo_12(ArgInfo_t67419B6DE53980148631C33DF785307579134942 * value)
{
____inArgInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inArgInfo_12), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ServerContextTerminatorSink
struct ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.ServerObjectReplySink
struct ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Messaging.ServerObjectReplySink::_replySink
RuntimeObject* ____replySink_0;
// System.Runtime.Remoting.ServerIdentity System.Runtime.Remoting.Messaging.ServerObjectReplySink::_identity
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ____identity_1;
public:
inline static int32_t get_offset_of__replySink_0() { return static_cast<int32_t>(offsetof(ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8, ____replySink_0)); }
inline RuntimeObject* get__replySink_0() const { return ____replySink_0; }
inline RuntimeObject** get_address_of__replySink_0() { return &____replySink_0; }
inline void set__replySink_0(RuntimeObject* value)
{
____replySink_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____replySink_0), (void*)value);
}
inline static int32_t get_offset_of__identity_1() { return static_cast<int32_t>(offsetof(ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8, ____identity_1)); }
inline ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * get__identity_1() const { return ____identity_1; }
inline ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 ** get_address_of__identity_1() { return &____identity_1; }
inline void set__identity_1(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * value)
{
____identity_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_1), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink
struct ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink::_nextSink
RuntimeObject* ____nextSink_0;
public:
inline static int32_t get_offset_of__nextSink_0() { return static_cast<int32_t>(offsetof(ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD, ____nextSink_0)); }
inline RuntimeObject* get__nextSink_0() const { return ____nextSink_0; }
inline RuntimeObject** get_address_of__nextSink_0() { return &____nextSink_0; }
inline void set__nextSink_0(RuntimeObject* value)
{
____nextSink_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nextSink_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.StackBuilderSink
struct StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 : public RuntimeObject
{
public:
// System.MarshalByRefObject System.Runtime.Remoting.Messaging.StackBuilderSink::_target
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____target_0;
// System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.Messaging.StackBuilderSink::_rp
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * ____rp_1;
public:
inline static int32_t get_offset_of__target_0() { return static_cast<int32_t>(offsetof(StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897, ____target_0)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__target_0() const { return ____target_0; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__target_0() { return &____target_0; }
inline void set__target_0(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____target_0), (void*)value);
}
inline static int32_t get_offset_of__rp_1() { return static_cast<int32_t>(offsetof(StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897, ____rp_1)); }
inline RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * get__rp_1() const { return ____rp_1; }
inline RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF ** get_address_of__rp_1() { return &____rp_1; }
inline void set__rp_1(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * value)
{
____rp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rp_1), (void*)value);
}
};
// System.Runtime.Remoting.ObjRef
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 : public RuntimeObject
{
public:
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::channel_info
RuntimeObject* ___channel_info_0;
// System.String System.Runtime.Remoting.ObjRef::uri
String_t* ___uri_1;
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::typeInfo
RuntimeObject* ___typeInfo_2;
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::envoyInfo
RuntimeObject* ___envoyInfo_3;
// System.Int32 System.Runtime.Remoting.ObjRef::flags
int32_t ___flags_4;
// System.Type System.Runtime.Remoting.ObjRef::_serverType
Type_t * ____serverType_5;
public:
inline static int32_t get_offset_of_channel_info_0() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___channel_info_0)); }
inline RuntimeObject* get_channel_info_0() const { return ___channel_info_0; }
inline RuntimeObject** get_address_of_channel_info_0() { return &___channel_info_0; }
inline void set_channel_info_0(RuntimeObject* value)
{
___channel_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channel_info_0), (void*)value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value);
}
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___typeInfo_2)); }
inline RuntimeObject* get_typeInfo_2() const { return ___typeInfo_2; }
inline RuntimeObject** get_address_of_typeInfo_2() { return &___typeInfo_2; }
inline void set_typeInfo_2(RuntimeObject* value)
{
___typeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value);
}
inline static int32_t get_offset_of_envoyInfo_3() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___envoyInfo_3)); }
inline RuntimeObject* get_envoyInfo_3() const { return ___envoyInfo_3; }
inline RuntimeObject** get_address_of_envoyInfo_3() { return &___envoyInfo_3; }
inline void set_envoyInfo_3(RuntimeObject* value)
{
___envoyInfo_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___envoyInfo_3), (void*)value);
}
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ___flags_4)); }
inline int32_t get_flags_4() const { return ___flags_4; }
inline int32_t* get_address_of_flags_4() { return &___flags_4; }
inline void set_flags_4(int32_t value)
{
___flags_4 = value;
}
inline static int32_t get_offset_of__serverType_5() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2, ____serverType_5)); }
inline Type_t * get__serverType_5() const { return ____serverType_5; }
inline Type_t ** get_address_of__serverType_5() { return &____serverType_5; }
inline void set__serverType_5(Type_t * value)
{
____serverType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverType_5), (void*)value);
}
};
struct ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields
{
public:
// System.Int32 System.Runtime.Remoting.ObjRef::MarshalledObjectRef
int32_t ___MarshalledObjectRef_6;
// System.Int32 System.Runtime.Remoting.ObjRef::WellKnowObjectRef
int32_t ___WellKnowObjectRef_7;
public:
inline static int32_t get_offset_of_MarshalledObjectRef_6() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___MarshalledObjectRef_6)); }
inline int32_t get_MarshalledObjectRef_6() const { return ___MarshalledObjectRef_6; }
inline int32_t* get_address_of_MarshalledObjectRef_6() { return &___MarshalledObjectRef_6; }
inline void set_MarshalledObjectRef_6(int32_t value)
{
___MarshalledObjectRef_6 = value;
}
inline static int32_t get_offset_of_WellKnowObjectRef_7() { return static_cast<int32_t>(offsetof(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields, ___WellKnowObjectRef_7)); }
inline int32_t get_WellKnowObjectRef_7() const { return ___WellKnowObjectRef_7; }
inline int32_t* get_address_of_WellKnowObjectRef_7() { return &___WellKnowObjectRef_7; }
inline void set_WellKnowObjectRef_7(int32_t value)
{
___WellKnowObjectRef_7 = value;
}
};
// System.Runtime.Remoting.ProviderData
struct ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.ProviderData::Ref
String_t* ___Ref_0;
// System.String System.Runtime.Remoting.ProviderData::Type
String_t* ___Type_1;
// System.String System.Runtime.Remoting.ProviderData::Id
String_t* ___Id_2;
// System.Collections.Hashtable System.Runtime.Remoting.ProviderData::CustomProperties
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___CustomProperties_3;
// System.Collections.IList System.Runtime.Remoting.ProviderData::CustomData
RuntimeObject* ___CustomData_4;
public:
inline static int32_t get_offset_of_Ref_0() { return static_cast<int32_t>(offsetof(ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F, ___Ref_0)); }
inline String_t* get_Ref_0() const { return ___Ref_0; }
inline String_t** get_address_of_Ref_0() { return &___Ref_0; }
inline void set_Ref_0(String_t* value)
{
___Ref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Ref_0), (void*)value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F, ___Type_1)); }
inline String_t* get_Type_1() const { return ___Type_1; }
inline String_t** get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(String_t* value)
{
___Type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Type_1), (void*)value);
}
inline static int32_t get_offset_of_Id_2() { return static_cast<int32_t>(offsetof(ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F, ___Id_2)); }
inline String_t* get_Id_2() const { return ___Id_2; }
inline String_t** get_address_of_Id_2() { return &___Id_2; }
inline void set_Id_2(String_t* value)
{
___Id_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Id_2), (void*)value);
}
inline static int32_t get_offset_of_CustomProperties_3() { return static_cast<int32_t>(offsetof(ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F, ___CustomProperties_3)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_CustomProperties_3() const { return ___CustomProperties_3; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_CustomProperties_3() { return &___CustomProperties_3; }
inline void set_CustomProperties_3(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___CustomProperties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CustomProperties_3), (void*)value);
}
inline static int32_t get_offset_of_CustomData_4() { return static_cast<int32_t>(offsetof(ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F, ___CustomData_4)); }
inline RuntimeObject* get_CustomData_4() const { return ___CustomData_4; }
inline RuntimeObject** get_address_of_CustomData_4() { return &___CustomData_4; }
inline void set_CustomData_4(RuntimeObject* value)
{
___CustomData_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CustomData_4), (void*)value);
}
};
// System.Runtime.Remoting.RemotingConfiguration
struct RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD : public RuntimeObject
{
public:
public:
};
struct RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields
{
public:
// System.String System.Runtime.Remoting.RemotingConfiguration::applicationID
String_t* ___applicationID_0;
// System.String System.Runtime.Remoting.RemotingConfiguration::applicationName
String_t* ___applicationName_1;
// System.String System.Runtime.Remoting.RemotingConfiguration::processGuid
String_t* ___processGuid_2;
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::defaultConfigRead
bool ___defaultConfigRead_3;
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::defaultDelayedConfigRead
bool ___defaultDelayedConfigRead_4;
// System.String System.Runtime.Remoting.RemotingConfiguration::_errorMode
String_t* ____errorMode_5;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::wellKnownClientEntries
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___wellKnownClientEntries_6;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::activatedClientEntries
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___activatedClientEntries_7;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::wellKnownServiceEntries
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___wellKnownServiceEntries_8;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::activatedServiceEntries
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___activatedServiceEntries_9;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::channelTemplates
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___channelTemplates_10;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::clientProviderTemplates
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___clientProviderTemplates_11;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::serverProviderTemplates
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___serverProviderTemplates_12;
public:
inline static int32_t get_offset_of_applicationID_0() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___applicationID_0)); }
inline String_t* get_applicationID_0() const { return ___applicationID_0; }
inline String_t** get_address_of_applicationID_0() { return &___applicationID_0; }
inline void set_applicationID_0(String_t* value)
{
___applicationID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationID_0), (void*)value);
}
inline static int32_t get_offset_of_applicationName_1() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___applicationName_1)); }
inline String_t* get_applicationName_1() const { return ___applicationName_1; }
inline String_t** get_address_of_applicationName_1() { return &___applicationName_1; }
inline void set_applicationName_1(String_t* value)
{
___applicationName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationName_1), (void*)value);
}
inline static int32_t get_offset_of_processGuid_2() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___processGuid_2)); }
inline String_t* get_processGuid_2() const { return ___processGuid_2; }
inline String_t** get_address_of_processGuid_2() { return &___processGuid_2; }
inline void set_processGuid_2(String_t* value)
{
___processGuid_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processGuid_2), (void*)value);
}
inline static int32_t get_offset_of_defaultConfigRead_3() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___defaultConfigRead_3)); }
inline bool get_defaultConfigRead_3() const { return ___defaultConfigRead_3; }
inline bool* get_address_of_defaultConfigRead_3() { return &___defaultConfigRead_3; }
inline void set_defaultConfigRead_3(bool value)
{
___defaultConfigRead_3 = value;
}
inline static int32_t get_offset_of_defaultDelayedConfigRead_4() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___defaultDelayedConfigRead_4)); }
inline bool get_defaultDelayedConfigRead_4() const { return ___defaultDelayedConfigRead_4; }
inline bool* get_address_of_defaultDelayedConfigRead_4() { return &___defaultDelayedConfigRead_4; }
inline void set_defaultDelayedConfigRead_4(bool value)
{
___defaultDelayedConfigRead_4 = value;
}
inline static int32_t get_offset_of__errorMode_5() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ____errorMode_5)); }
inline String_t* get__errorMode_5() const { return ____errorMode_5; }
inline String_t** get_address_of__errorMode_5() { return &____errorMode_5; }
inline void set__errorMode_5(String_t* value)
{
____errorMode_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____errorMode_5), (void*)value);
}
inline static int32_t get_offset_of_wellKnownClientEntries_6() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___wellKnownClientEntries_6)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_wellKnownClientEntries_6() const { return ___wellKnownClientEntries_6; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_wellKnownClientEntries_6() { return &___wellKnownClientEntries_6; }
inline void set_wellKnownClientEntries_6(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___wellKnownClientEntries_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___wellKnownClientEntries_6), (void*)value);
}
inline static int32_t get_offset_of_activatedClientEntries_7() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___activatedClientEntries_7)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_activatedClientEntries_7() const { return ___activatedClientEntries_7; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_activatedClientEntries_7() { return &___activatedClientEntries_7; }
inline void set_activatedClientEntries_7(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___activatedClientEntries_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activatedClientEntries_7), (void*)value);
}
inline static int32_t get_offset_of_wellKnownServiceEntries_8() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___wellKnownServiceEntries_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_wellKnownServiceEntries_8() const { return ___wellKnownServiceEntries_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_wellKnownServiceEntries_8() { return &___wellKnownServiceEntries_8; }
inline void set_wellKnownServiceEntries_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___wellKnownServiceEntries_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___wellKnownServiceEntries_8), (void*)value);
}
inline static int32_t get_offset_of_activatedServiceEntries_9() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___activatedServiceEntries_9)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_activatedServiceEntries_9() const { return ___activatedServiceEntries_9; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_activatedServiceEntries_9() { return &___activatedServiceEntries_9; }
inline void set_activatedServiceEntries_9(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___activatedServiceEntries_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activatedServiceEntries_9), (void*)value);
}
inline static int32_t get_offset_of_channelTemplates_10() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___channelTemplates_10)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_channelTemplates_10() const { return ___channelTemplates_10; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_channelTemplates_10() { return &___channelTemplates_10; }
inline void set_channelTemplates_10(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___channelTemplates_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelTemplates_10), (void*)value);
}
inline static int32_t get_offset_of_clientProviderTemplates_11() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___clientProviderTemplates_11)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_clientProviderTemplates_11() const { return ___clientProviderTemplates_11; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_clientProviderTemplates_11() { return &___clientProviderTemplates_11; }
inline void set_clientProviderTemplates_11(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___clientProviderTemplates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clientProviderTemplates_11), (void*)value);
}
inline static int32_t get_offset_of_serverProviderTemplates_12() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields, ___serverProviderTemplates_12)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_serverProviderTemplates_12() const { return ___serverProviderTemplates_12; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_serverProviderTemplates_12() { return &___serverProviderTemplates_12; }
inline void set_serverProviderTemplates_12(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___serverProviderTemplates_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverProviderTemplates_12), (void*)value);
}
};
// System.Runtime.Remoting.RemotingServices
struct RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51 : public RuntimeObject
{
public:
public:
};
struct RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.RemotingServices::uri_hash
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___uri_hash_0;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter System.Runtime.Remoting.RemotingServices::_serializationFormatter
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * ____serializationFormatter_1;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter System.Runtime.Remoting.RemotingServices::_deserializationFormatter
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * ____deserializationFormatter_2;
// System.String System.Runtime.Remoting.RemotingServices::app_id
String_t* ___app_id_3;
// System.Object System.Runtime.Remoting.RemotingServices::app_id_lock
RuntimeObject * ___app_id_lock_4;
// System.Int32 System.Runtime.Remoting.RemotingServices::next_id
int32_t ___next_id_5;
// System.Reflection.MethodInfo System.Runtime.Remoting.RemotingServices::FieldSetterMethod
MethodInfo_t * ___FieldSetterMethod_6;
// System.Reflection.MethodInfo System.Runtime.Remoting.RemotingServices::FieldGetterMethod
MethodInfo_t * ___FieldGetterMethod_7;
public:
inline static int32_t get_offset_of_uri_hash_0() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___uri_hash_0)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_uri_hash_0() const { return ___uri_hash_0; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_uri_hash_0() { return &___uri_hash_0; }
inline void set_uri_hash_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___uri_hash_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_hash_0), (void*)value);
}
inline static int32_t get_offset_of__serializationFormatter_1() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ____serializationFormatter_1)); }
inline BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * get__serializationFormatter_1() const { return ____serializationFormatter_1; }
inline BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 ** get_address_of__serializationFormatter_1() { return &____serializationFormatter_1; }
inline void set__serializationFormatter_1(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * value)
{
____serializationFormatter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializationFormatter_1), (void*)value);
}
inline static int32_t get_offset_of__deserializationFormatter_2() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ____deserializationFormatter_2)); }
inline BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * get__deserializationFormatter_2() const { return ____deserializationFormatter_2; }
inline BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 ** get_address_of__deserializationFormatter_2() { return &____deserializationFormatter_2; }
inline void set__deserializationFormatter_2(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * value)
{
____deserializationFormatter_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____deserializationFormatter_2), (void*)value);
}
inline static int32_t get_offset_of_app_id_3() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___app_id_3)); }
inline String_t* get_app_id_3() const { return ___app_id_3; }
inline String_t** get_address_of_app_id_3() { return &___app_id_3; }
inline void set_app_id_3(String_t* value)
{
___app_id_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___app_id_3), (void*)value);
}
inline static int32_t get_offset_of_app_id_lock_4() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___app_id_lock_4)); }
inline RuntimeObject * get_app_id_lock_4() const { return ___app_id_lock_4; }
inline RuntimeObject ** get_address_of_app_id_lock_4() { return &___app_id_lock_4; }
inline void set_app_id_lock_4(RuntimeObject * value)
{
___app_id_lock_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___app_id_lock_4), (void*)value);
}
inline static int32_t get_offset_of_next_id_5() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___next_id_5)); }
inline int32_t get_next_id_5() const { return ___next_id_5; }
inline int32_t* get_address_of_next_id_5() { return &___next_id_5; }
inline void set_next_id_5(int32_t value)
{
___next_id_5 = value;
}
inline static int32_t get_offset_of_FieldSetterMethod_6() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___FieldSetterMethod_6)); }
inline MethodInfo_t * get_FieldSetterMethod_6() const { return ___FieldSetterMethod_6; }
inline MethodInfo_t ** get_address_of_FieldSetterMethod_6() { return &___FieldSetterMethod_6; }
inline void set_FieldSetterMethod_6(MethodInfo_t * value)
{
___FieldSetterMethod_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FieldSetterMethod_6), (void*)value);
}
inline static int32_t get_offset_of_FieldGetterMethod_7() { return static_cast<int32_t>(offsetof(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields, ___FieldGetterMethod_7)); }
inline MethodInfo_t * get_FieldGetterMethod_7() const { return ___FieldGetterMethod_7; }
inline MethodInfo_t ** get_address_of_FieldGetterMethod_7() { return &___FieldGetterMethod_7; }
inline void set_FieldGetterMethod_7(MethodInfo_t * value)
{
___FieldGetterMethod_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FieldGetterMethod_7), (void*)value);
}
};
// System.Runtime.Remoting.RemotingServices_CACD
struct CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A : public RuntimeObject
{
public:
// System.Object System.Runtime.Remoting.RemotingServices_CACD::d
RuntimeObject * ___d_0;
// System.Object System.Runtime.Remoting.RemotingServices_CACD::c
RuntimeObject * ___c_1;
public:
inline static int32_t get_offset_of_d_0() { return static_cast<int32_t>(offsetof(CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A, ___d_0)); }
inline RuntimeObject * get_d_0() const { return ___d_0; }
inline RuntimeObject ** get_address_of_d_0() { return &___d_0; }
inline void set_d_0(RuntimeObject * value)
{
___d_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___d_0), (void*)value);
}
inline static int32_t get_offset_of_c_1() { return static_cast<int32_t>(offsetof(CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A, ___c_1)); }
inline RuntimeObject * get_c_1() const { return ___c_1; }
inline RuntimeObject ** get_address_of_c_1() { return &___c_1; }
inline void set_c_1(RuntimeObject * value)
{
___c_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___c_1), (void*)value);
}
};
// System.Runtime.Remoting.TypeEntry
struct TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.TypeEntry::assembly_name
String_t* ___assembly_name_0;
// System.String System.Runtime.Remoting.TypeEntry::type_name
String_t* ___type_name_1;
public:
inline static int32_t get_offset_of_assembly_name_0() { return static_cast<int32_t>(offsetof(TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438, ___assembly_name_0)); }
inline String_t* get_assembly_name_0() const { return ___assembly_name_0; }
inline String_t** get_address_of_assembly_name_0() { return &___assembly_name_0; }
inline void set_assembly_name_0(String_t* value)
{
___assembly_name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assembly_name_0), (void*)value);
}
inline static int32_t get_offset_of_type_name_1() { return static_cast<int32_t>(offsetof(TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438, ___type_name_1)); }
inline String_t* get_type_name_1() const { return ___type_name_1; }
inline String_t** get_address_of_type_name_1() { return &___type_name_1; }
inline void set_type_name_1(String_t* value)
{
___type_name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_name_1), (void*)value);
}
};
// System.Runtime.Remoting.TypeInfo
struct TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.TypeInfo::serverType
String_t* ___serverType_0;
// System.String[] System.Runtime.Remoting.TypeInfo::serverHierarchy
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___serverHierarchy_1;
// System.String[] System.Runtime.Remoting.TypeInfo::interfacesImplemented
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___interfacesImplemented_2;
public:
inline static int32_t get_offset_of_serverType_0() { return static_cast<int32_t>(offsetof(TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE, ___serverType_0)); }
inline String_t* get_serverType_0() const { return ___serverType_0; }
inline String_t** get_address_of_serverType_0() { return &___serverType_0; }
inline void set_serverType_0(String_t* value)
{
___serverType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverType_0), (void*)value);
}
inline static int32_t get_offset_of_serverHierarchy_1() { return static_cast<int32_t>(offsetof(TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE, ___serverHierarchy_1)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_serverHierarchy_1() const { return ___serverHierarchy_1; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_serverHierarchy_1() { return &___serverHierarchy_1; }
inline void set_serverHierarchy_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___serverHierarchy_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverHierarchy_1), (void*)value);
}
inline static int32_t get_offset_of_interfacesImplemented_2() { return static_cast<int32_t>(offsetof(TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE, ___interfacesImplemented_2)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_interfacesImplemented_2() const { return ___interfacesImplemented_2; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_interfacesImplemented_2() { return &___interfacesImplemented_2; }
inline void set_interfacesImplemented_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___interfacesImplemented_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___interfacesImplemented_2), (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.Runtime.Serialization.SerializationInfoEnumerator
struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2;
// System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_numItems
int32_t ___m_numItems_3;
// System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_currItem
int32_t ___m_currItem_4;
// System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::m_current
bool ___m_current_5;
public:
inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_members_0)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_members_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_members_0), (void*)value);
}
inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_data_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_data_1), (void*)value);
}
inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_types_2)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___m_types_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_types_2), (void*)value);
}
inline static int32_t get_offset_of_m_numItems_3() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_numItems_3)); }
inline int32_t get_m_numItems_3() const { return ___m_numItems_3; }
inline int32_t* get_address_of_m_numItems_3() { return &___m_numItems_3; }
inline void set_m_numItems_3(int32_t value)
{
___m_numItems_3 = value;
}
inline static int32_t get_offset_of_m_currItem_4() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_currItem_4)); }
inline int32_t get_m_currItem_4() const { return ___m_currItem_4; }
inline int32_t* get_address_of_m_currItem_4() { return &___m_currItem_4; }
inline void set_m_currItem_4(int32_t value)
{
___m_currItem_4 = value;
}
inline static int32_t get_offset_of_m_current_5() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_current_5)); }
inline bool get_m_current_5() const { return ___m_current_5; }
inline bool* get_address_of_m_current_5() { return &___m_current_5; }
inline void set_m_current_5(bool value)
{
___m_current_5 = value;
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.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
{
};
// Mono.RuntimeClassHandle
struct RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5
{
public:
// Mono.RuntimeStructs_MonoClass* Mono.RuntimeClassHandle::value
MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5, ___value_0)); }
inline MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * get_value_0() const { return ___value_0; }
inline MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(MonoClass_t70E8387B50321F8F4934A7012C88827A4C921301 * value)
{
___value_0 = value;
}
};
// Mono.RuntimeRemoteClassHandle
struct RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8
{
public:
// Mono.RuntimeStructs_RemoteClass* Mono.RuntimeRemoteClassHandle::value
RemoteClass_t36384D53B9A904B733FDF999D6378397DBD31D47 * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8, ___value_0)); }
inline RemoteClass_t36384D53B9A904B733FDF999D6378397DBD31D47 * get_value_0() const { return ___value_0; }
inline RemoteClass_t36384D53B9A904B733FDF999D6378397DBD31D47 ** get_address_of_value_0() { return &___value_0; }
inline void set_value_0(RemoteClass_t36384D53B9A904B733FDF999D6378397DBD31D47 * value)
{
___value_0 = value;
}
};
// 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.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// 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.Runtime.Remoting.Contexts.IContextProperty>
struct Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1_Enumerator::list
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___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_t325D17010597AC6F36BB11A1C47B1D1E62FEB163, ___list_0)); }
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * get_list_0() const { return ___list_0; }
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * 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_t325D17010597AC6F36BB11A1C47B1D1E62FEB163, ___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_t325D17010597AC6F36BB11A1C47B1D1E62FEB163, ___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_t325D17010597AC6F36BB11A1C47B1D1E62FEB163, ___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.ContextBoundObject
struct ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
public:
};
// 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.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.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;
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);
}
};
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
{
____activeReadWriteTask_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
}
};
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
};
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
public:
};
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * value)
{
____ReadLineDelegate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
}
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * value)
{
____ReadDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
};
// System.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.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Runtime.Remoting.ActivatedClientTypeEntry
struct ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD : public TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438
{
public:
// System.String System.Runtime.Remoting.ActivatedClientTypeEntry::applicationUrl
String_t* ___applicationUrl_2;
// System.Type System.Runtime.Remoting.ActivatedClientTypeEntry::obj_type
Type_t * ___obj_type_3;
public:
inline static int32_t get_offset_of_applicationUrl_2() { return static_cast<int32_t>(offsetof(ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD, ___applicationUrl_2)); }
inline String_t* get_applicationUrl_2() const { return ___applicationUrl_2; }
inline String_t** get_address_of_applicationUrl_2() { return &___applicationUrl_2; }
inline void set_applicationUrl_2(String_t* value)
{
___applicationUrl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationUrl_2), (void*)value);
}
inline static int32_t get_offset_of_obj_type_3() { return static_cast<int32_t>(offsetof(ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD, ___obj_type_3)); }
inline Type_t * get_obj_type_3() const { return ___obj_type_3; }
inline Type_t ** get_address_of_obj_type_3() { return &___obj_type_3; }
inline void set_obj_type_3(Type_t * value)
{
___obj_type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_3), (void*)value);
}
};
// System.Runtime.Remoting.ActivatedServiceTypeEntry
struct ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 : public TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438
{
public:
// System.Type System.Runtime.Remoting.ActivatedServiceTypeEntry::obj_type
Type_t * ___obj_type_2;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
};
// System.Runtime.Remoting.ClientIdentity
struct ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 : public Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6
{
public:
// System.WeakReference System.Runtime.Remoting.ClientIdentity::_proxyReference
WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * ____proxyReference_7;
public:
inline static int32_t get_offset_of__proxyReference_7() { return static_cast<int32_t>(offsetof(ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9, ____proxyReference_7)); }
inline WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * get__proxyReference_7() const { return ____proxyReference_7; }
inline WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D ** get_address_of__proxyReference_7() { return &____proxyReference_7; }
inline void set__proxyReference_7(WeakReference_t0495CC81CD6403E662B7700B802443F6F730E39D * value)
{
____proxyReference_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____proxyReference_7), (void*)value);
}
};
// System.Runtime.Remoting.FormatterData
struct FormatterData_t3580FF512A069A7768CA03968B0D8A5F2EED6C6A : public ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F
{
public:
public:
};
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
struct CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 : public CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B
{
public:
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::_uri
String_t* ____uri_5;
public:
inline static int32_t get_offset_of__uri_5() { return static_cast<int32_t>(offsetof(CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8, ____uri_5)); }
inline String_t* get__uri_5() const { return ____uri_5; }
inline String_t** get_address_of__uri_5() { return &____uri_5; }
inline void set__uri_5(String_t* value)
{
____uri_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_5), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
struct CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C : public CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B
{
public:
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_returnValue
RuntimeObject * ____returnValue_5;
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_exception
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * ____exception_6;
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_sig
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ____sig_7;
public:
inline static int32_t get_offset_of__returnValue_5() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____returnValue_5)); }
inline RuntimeObject * get__returnValue_5() const { return ____returnValue_5; }
inline RuntimeObject ** get_address_of__returnValue_5() { return &____returnValue_5; }
inline void set__returnValue_5(RuntimeObject * value)
{
____returnValue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_5), (void*)value);
}
inline static int32_t get_offset_of__exception_6() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____exception_6)); }
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * get__exception_6() const { return ____exception_6; }
inline CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A ** get_address_of__exception_6() { return &____exception_6; }
inline void set__exception_6(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * value)
{
____exception_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_6), (void*)value);
}
inline static int32_t get_offset_of__sig_7() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C, ____sig_7)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get__sig_7() const { return ____sig_7; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of__sig_7() { return &____sig_7; }
inline void set__sig_7(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
____sig_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sig_7), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ConstructionCall
struct ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE : public MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA
{
public:
// System.Runtime.Remoting.Activation.IActivator System.Runtime.Remoting.Messaging.ConstructionCall::_activator
RuntimeObject* ____activator_11;
// System.Object[] System.Runtime.Remoting.Messaging.ConstructionCall::_activationAttributes
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____activationAttributes_12;
// System.Collections.IList System.Runtime.Remoting.Messaging.ConstructionCall::_contextProperties
RuntimeObject* ____contextProperties_13;
// System.Type System.Runtime.Remoting.Messaging.ConstructionCall::_activationType
Type_t * ____activationType_14;
// System.String System.Runtime.Remoting.Messaging.ConstructionCall::_activationTypeName
String_t* ____activationTypeName_15;
// System.Boolean System.Runtime.Remoting.Messaging.ConstructionCall::_isContextOk
bool ____isContextOk_16;
// System.Runtime.Remoting.Proxies.RemotingProxy System.Runtime.Remoting.Messaging.ConstructionCall::_sourceProxy
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * ____sourceProxy_17;
public:
inline static int32_t get_offset_of__activator_11() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____activator_11)); }
inline RuntimeObject* get__activator_11() const { return ____activator_11; }
inline RuntimeObject** get_address_of__activator_11() { return &____activator_11; }
inline void set__activator_11(RuntimeObject* value)
{
____activator_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activator_11), (void*)value);
}
inline static int32_t get_offset_of__activationAttributes_12() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____activationAttributes_12)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__activationAttributes_12() const { return ____activationAttributes_12; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__activationAttributes_12() { return &____activationAttributes_12; }
inline void set__activationAttributes_12(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____activationAttributes_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activationAttributes_12), (void*)value);
}
inline static int32_t get_offset_of__contextProperties_13() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____contextProperties_13)); }
inline RuntimeObject* get__contextProperties_13() const { return ____contextProperties_13; }
inline RuntimeObject** get_address_of__contextProperties_13() { return &____contextProperties_13; }
inline void set__contextProperties_13(RuntimeObject* value)
{
____contextProperties_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____contextProperties_13), (void*)value);
}
inline static int32_t get_offset_of__activationType_14() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____activationType_14)); }
inline Type_t * get__activationType_14() const { return ____activationType_14; }
inline Type_t ** get_address_of__activationType_14() { return &____activationType_14; }
inline void set__activationType_14(Type_t * value)
{
____activationType_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activationType_14), (void*)value);
}
inline static int32_t get_offset_of__activationTypeName_15() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____activationTypeName_15)); }
inline String_t* get__activationTypeName_15() const { return ____activationTypeName_15; }
inline String_t** get_address_of__activationTypeName_15() { return &____activationTypeName_15; }
inline void set__activationTypeName_15(String_t* value)
{
____activationTypeName_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activationTypeName_15), (void*)value);
}
inline static int32_t get_offset_of__isContextOk_16() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____isContextOk_16)); }
inline bool get__isContextOk_16() const { return ____isContextOk_16; }
inline bool* get_address_of__isContextOk_16() { return &____isContextOk_16; }
inline void set__isContextOk_16(bool value)
{
____isContextOk_16 = value;
}
inline static int32_t get_offset_of__sourceProxy_17() { return static_cast<int32_t>(offsetof(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE, ____sourceProxy_17)); }
inline RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * get__sourceProxy_17() const { return ____sourceProxy_17; }
inline RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 ** get_address_of__sourceProxy_17() { return &____sourceProxy_17; }
inline void set__sourceProxy_17(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * value)
{
____sourceProxy_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sourceProxy_17), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ConstructionCallDictionary
struct ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 : public MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5
{
public:
public:
};
struct ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_StaticFields
{
public:
// System.String[] System.Runtime.Remoting.Messaging.ConstructionCallDictionary::InternalKeys
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___InternalKeys_4;
public:
inline static int32_t get_offset_of_InternalKeys_4() { return static_cast<int32_t>(offsetof(ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_StaticFields, ___InternalKeys_4)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_InternalKeys_4() const { return ___InternalKeys_4; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_InternalKeys_4() { return &___InternalKeys_4; }
inline void set_InternalKeys_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___InternalKeys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalKeys_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ConstructionResponse
struct ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 : public MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907
{
public:
public:
};
// System.Runtime.Remoting.Messaging.LogicalCallContext_Reader
struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6
{
public:
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::m_ctx
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0;
public:
inline static int32_t get_offset_of_m_ctx_0() { return static_cast<int32_t>(offsetof(Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6, ___m_ctx_0)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get_m_ctx_0() const { return ___m_ctx_0; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of_m_ctx_0() { return &___m_ctx_0; }
inline void set_m_ctx_0(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
___m_ctx_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ctx_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Messaging.LogicalCallContext/Reader
struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_pinvoke
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Messaging.LogicalCallContext/Reader
struct Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_com
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___m_ctx_0;
};
// System.Runtime.Remoting.Messaging.MCMDictionary
struct MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 : public MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5
{
public:
public:
};
struct MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_StaticFields
{
public:
// System.String[] System.Runtime.Remoting.Messaging.MCMDictionary::InternalKeys
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___InternalKeys_4;
public:
inline static int32_t get_offset_of_InternalKeys_4() { return static_cast<int32_t>(offsetof(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_StaticFields, ___InternalKeys_4)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_InternalKeys_4() const { return ___InternalKeys_4; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_InternalKeys_4() { return &___InternalKeys_4; }
inline void set_InternalKeys_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___InternalKeys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalKeys_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.MethodReturnDictionary
struct MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 : public MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5
{
public:
public:
};
struct MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields
{
public:
// System.String[] System.Runtime.Remoting.Messaging.MethodReturnDictionary::InternalReturnKeys
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___InternalReturnKeys_4;
// System.String[] System.Runtime.Remoting.Messaging.MethodReturnDictionary::InternalExceptionKeys
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___InternalExceptionKeys_5;
public:
inline static int32_t get_offset_of_InternalReturnKeys_4() { return static_cast<int32_t>(offsetof(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields, ___InternalReturnKeys_4)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_InternalReturnKeys_4() const { return ___InternalReturnKeys_4; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_InternalReturnKeys_4() { return &___InternalReturnKeys_4; }
inline void set_InternalReturnKeys_4(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___InternalReturnKeys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalReturnKeys_4), (void*)value);
}
inline static int32_t get_offset_of_InternalExceptionKeys_5() { return static_cast<int32_t>(offsetof(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields, ___InternalExceptionKeys_5)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_InternalExceptionKeys_5() const { return ___InternalExceptionKeys_5; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_InternalExceptionKeys_5() { return &___InternalExceptionKeys_5; }
inline void set_InternalExceptionKeys_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___InternalExceptionKeys_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalExceptionKeys_5), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.OneWayAttribute
struct OneWayAttribute_t848DB2BC395D34A01B2932EEC85CEA65CA9C9B43 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Runtime.Remoting.Metadata.SoapAttribute
struct SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Boolean System.Runtime.Remoting.Metadata.SoapAttribute::_useAttribute
bool ____useAttribute_0;
// System.String System.Runtime.Remoting.Metadata.SoapAttribute::ProtXmlNamespace
String_t* ___ProtXmlNamespace_1;
// System.Object System.Runtime.Remoting.Metadata.SoapAttribute::ReflectInfo
RuntimeObject * ___ReflectInfo_2;
public:
inline static int32_t get_offset_of__useAttribute_0() { return static_cast<int32_t>(offsetof(SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE, ____useAttribute_0)); }
inline bool get__useAttribute_0() const { return ____useAttribute_0; }
inline bool* get_address_of__useAttribute_0() { return &____useAttribute_0; }
inline void set__useAttribute_0(bool value)
{
____useAttribute_0 = value;
}
inline static int32_t get_offset_of_ProtXmlNamespace_1() { return static_cast<int32_t>(offsetof(SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE, ___ProtXmlNamespace_1)); }
inline String_t* get_ProtXmlNamespace_1() const { return ___ProtXmlNamespace_1; }
inline String_t** get_address_of_ProtXmlNamespace_1() { return &___ProtXmlNamespace_1; }
inline void set_ProtXmlNamespace_1(String_t* value)
{
___ProtXmlNamespace_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ProtXmlNamespace_1), (void*)value);
}
inline static int32_t get_offset_of_ReflectInfo_2() { return static_cast<int32_t>(offsetof(SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE, ___ReflectInfo_2)); }
inline RuntimeObject * get_ReflectInfo_2() const { return ___ReflectInfo_2; }
inline RuntimeObject ** get_address_of_ReflectInfo_2() { return &___ReflectInfo_2; }
inline void set_ReflectInfo_2(RuntimeObject * value)
{
___ReflectInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ReflectInfo_2), (void*)value);
}
};
// System.Runtime.Remoting.Proxies.ProxyAttribute
struct ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
public:
};
// System.Runtime.Remoting.Proxies.RealProxy
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF : public RuntimeObject
{
public:
// System.Type System.Runtime.Remoting.Proxies.RealProxy::class_to_proxy
Type_t * ___class_to_proxy_0;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Proxies.RealProxy::_targetContext
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____targetContext_1;
// System.MarshalByRefObject System.Runtime.Remoting.Proxies.RealProxy::_server
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____server_2;
// System.Int32 System.Runtime.Remoting.Proxies.RealProxy::_targetDomainId
int32_t ____targetDomainId_3;
// System.String System.Runtime.Remoting.Proxies.RealProxy::_targetUri
String_t* ____targetUri_4;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Proxies.RealProxy::_objectIdentity
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____objectIdentity_5;
// System.Object System.Runtime.Remoting.Proxies.RealProxy::_objTP
RuntimeObject * ____objTP_6;
// System.Object System.Runtime.Remoting.Proxies.RealProxy::_stubData
RuntimeObject * ____stubData_7;
public:
inline static int32_t get_offset_of_class_to_proxy_0() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ___class_to_proxy_0)); }
inline Type_t * get_class_to_proxy_0() const { return ___class_to_proxy_0; }
inline Type_t ** get_address_of_class_to_proxy_0() { return &___class_to_proxy_0; }
inline void set_class_to_proxy_0(Type_t * value)
{
___class_to_proxy_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___class_to_proxy_0), (void*)value);
}
inline static int32_t get_offset_of__targetContext_1() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____targetContext_1)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__targetContext_1() const { return ____targetContext_1; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__targetContext_1() { return &____targetContext_1; }
inline void set__targetContext_1(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____targetContext_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetContext_1), (void*)value);
}
inline static int32_t get_offset_of__server_2() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____server_2)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__server_2() const { return ____server_2; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__server_2() { return &____server_2; }
inline void set__server_2(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____server_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____server_2), (void*)value);
}
inline static int32_t get_offset_of__targetDomainId_3() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____targetDomainId_3)); }
inline int32_t get__targetDomainId_3() const { return ____targetDomainId_3; }
inline int32_t* get_address_of__targetDomainId_3() { return &____targetDomainId_3; }
inline void set__targetDomainId_3(int32_t value)
{
____targetDomainId_3 = value;
}
inline static int32_t get_offset_of__targetUri_4() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____targetUri_4)); }
inline String_t* get__targetUri_4() const { return ____targetUri_4; }
inline String_t** get_address_of__targetUri_4() { return &____targetUri_4; }
inline void set__targetUri_4(String_t* value)
{
____targetUri_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetUri_4), (void*)value);
}
inline static int32_t get_offset_of__objectIdentity_5() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____objectIdentity_5)); }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get__objectIdentity_5() const { return ____objectIdentity_5; }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of__objectIdentity_5() { return &____objectIdentity_5; }
inline void set__objectIdentity_5(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
{
____objectIdentity_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectIdentity_5), (void*)value);
}
inline static int32_t get_offset_of__objTP_6() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____objTP_6)); }
inline RuntimeObject * get__objTP_6() const { return ____objTP_6; }
inline RuntimeObject ** get_address_of__objTP_6() { return &____objTP_6; }
inline void set__objTP_6(RuntimeObject * value)
{
____objTP_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objTP_6), (void*)value);
}
inline static int32_t get_offset_of__stubData_7() { return static_cast<int32_t>(offsetof(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF, ____stubData_7)); }
inline RuntimeObject * get__stubData_7() const { return ____stubData_7; }
inline RuntimeObject ** get_address_of__stubData_7() { return &____stubData_7; }
inline void set__stubData_7(RuntimeObject * value)
{
____stubData_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stubData_7), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Proxies.RealProxy
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke
{
Type_t * ___class_to_proxy_0;
Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke* ____targetContext_1;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke ____server_2;
int32_t ____targetDomainId_3;
char* ____targetUri_4;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____objectIdentity_5;
Il2CppIUnknown* ____objTP_6;
Il2CppIUnknown* ____stubData_7;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Proxies.RealProxy
struct RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com
{
Type_t * ___class_to_proxy_0;
Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com* ____targetContext_1;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com* ____server_2;
int32_t ____targetDomainId_3;
Il2CppChar* ____targetUri_4;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ____objectIdentity_5;
Il2CppIUnknown* ____objTP_6;
Il2CppIUnknown* ____stubData_7;
};
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 : public Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6
{
public:
// System.Type System.Runtime.Remoting.ServerIdentity::_objectType
Type_t * ____objectType_7;
// System.MarshalByRefObject System.Runtime.Remoting.ServerIdentity::_serverObject
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____serverObject_8;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.ServerIdentity::_serverSink
RuntimeObject* ____serverSink_9;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.ServerIdentity::_context
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ____context_10;
// System.Runtime.Remoting.Lifetime.Lease System.Runtime.Remoting.ServerIdentity::_lease
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * ____lease_11;
public:
inline static int32_t get_offset_of__objectType_7() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____objectType_7)); }
inline Type_t * get__objectType_7() const { return ____objectType_7; }
inline Type_t ** get_address_of__objectType_7() { return &____objectType_7; }
inline void set__objectType_7(Type_t * value)
{
____objectType_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectType_7), (void*)value);
}
inline static int32_t get_offset_of__serverObject_8() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverObject_8)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__serverObject_8() const { return ____serverObject_8; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__serverObject_8() { return &____serverObject_8; }
inline void set__serverObject_8(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____serverObject_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverObject_8), (void*)value);
}
inline static int32_t get_offset_of__serverSink_9() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____serverSink_9)); }
inline RuntimeObject* get__serverSink_9() const { return ____serverSink_9; }
inline RuntimeObject** get_address_of__serverSink_9() { return &____serverSink_9; }
inline void set__serverSink_9(RuntimeObject* value)
{
____serverSink_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverSink_9), (void*)value);
}
inline static int32_t get_offset_of__context_10() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____context_10)); }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 * get__context_10() const { return ____context_10; }
inline Context_tE86AB6B3D9759C8E715184808579EFE761683724 ** get_address_of__context_10() { return &____context_10; }
inline void set__context_10(Context_tE86AB6B3D9759C8E715184808579EFE761683724 * value)
{
____context_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_10), (void*)value);
}
inline static int32_t get_offset_of__lease_11() { return static_cast<int32_t>(offsetof(ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2, ____lease_11)); }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * get__lease_11() const { return ____lease_11; }
inline Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 ** get_address_of__lease_11() { return &____lease_11; }
inline void set__lease_11(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * value)
{
____lease_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lease_11), (void*)value);
}
};
// System.Runtime.Remoting.WellKnownClientTypeEntry
struct WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 : public TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438
{
public:
// System.Type System.Runtime.Remoting.WellKnownClientTypeEntry::obj_type
Type_t * ___obj_type_2;
// System.String System.Runtime.Remoting.WellKnownClientTypeEntry::obj_url
String_t* ___obj_url_3;
// System.String System.Runtime.Remoting.WellKnownClientTypeEntry::app_url
String_t* ___app_url_4;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
inline static int32_t get_offset_of_obj_url_3() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053, ___obj_url_3)); }
inline String_t* get_obj_url_3() const { return ___obj_url_3; }
inline String_t** get_address_of_obj_url_3() { return &___obj_url_3; }
inline void set_obj_url_3(String_t* value)
{
___obj_url_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_url_3), (void*)value);
}
inline static int32_t get_offset_of_app_url_4() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053, ___app_url_4)); }
inline String_t* get_app_url_4() const { return ___app_url_4; }
inline String_t** get_address_of_app_url_4() { return &___app_url_4; }
inline void set_app_url_4(String_t* value)
{
___app_url_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___app_url_4), (void*)value);
}
};
// System.Runtime.Serialization.SerializationEntry
struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA
{
public:
// System.Type System.Runtime.Serialization.SerializationEntry::m_type
Type_t * ___m_type_0;
// System.Object System.Runtime.Serialization.SerializationEntry::m_value
RuntimeObject * ___m_value_1;
// System.String System.Runtime.Serialization.SerializationEntry::m_name
String_t* ___m_name_2;
public:
inline static int32_t get_offset_of_m_type_0() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___m_type_0)); }
inline Type_t * get_m_type_0() const { return ___m_type_0; }
inline Type_t ** get_address_of_m_type_0() { return &___m_type_0; }
inline void set_m_type_0(Type_t * value)
{
___m_type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_type_0), (void*)value);
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___m_value_1)); }
inline RuntimeObject * get_m_value_1() const { return ___m_value_1; }
inline RuntimeObject ** get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(RuntimeObject * value)
{
___m_value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_value_1), (void*)value);
}
inline static int32_t get_offset_of_m_name_2() { return static_cast<int32_t>(offsetof(SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA, ___m_name_2)); }
inline String_t* get_m_name_2() const { return ___m_name_2; }
inline String_t** get_address_of_m_name_2() { return &___m_name_2; }
inline void set_m_name_2(String_t* value)
{
___m_name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.SerializationEntry
struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA_marshaled_pinvoke
{
Type_t * ___m_type_0;
Il2CppIUnknown* ___m_value_1;
char* ___m_name_2;
};
// Native definition for COM marshalling of System.Runtime.Serialization.SerializationEntry
struct SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA_marshaled_com
{
Type_t * ___m_type_0;
Il2CppIUnknown* ___m_value_1;
Il2CppChar* ___m_name_2;
};
// 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.ExecutionContext_Reader
struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B
{
public:
// System.Threading.ExecutionContext System.Threading.ExecutionContext_Reader::m_ec
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0;
public:
inline static int32_t get_offset_of_m_ec_0() { return static_cast<int32_t>(offsetof(Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B, ___m_ec_0)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_m_ec_0() const { return ___m_ec_0; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_m_ec_0() { return &___m_ec_0; }
inline void set_m_ec_0(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___m_ec_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ec_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Threading.ExecutionContext/Reader
struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_pinvoke
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0;
};
// Native definition for COM marshalling of System.Threading.ExecutionContext/Reader
struct Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B_marshaled_com
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___m_ec_0;
};
// 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.Threading.Timer
struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Threading.TimerCallback System.Threading.Timer::callback
TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback_2;
// System.Object System.Threading.Timer::state
RuntimeObject * ___state_3;
// System.Int64 System.Threading.Timer::due_time_ms
int64_t ___due_time_ms_4;
// System.Int64 System.Threading.Timer::period_ms
int64_t ___period_ms_5;
// System.Int64 System.Threading.Timer::next_run
int64_t ___next_run_6;
// System.Boolean System.Threading.Timer::disposed
bool ___disposed_7;
public:
inline static int32_t get_offset_of_callback_2() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___callback_2)); }
inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * get_callback_2() const { return ___callback_2; }
inline TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 ** get_address_of_callback_2() { return &___callback_2; }
inline void set_callback_2(TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * value)
{
___callback_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_2), (void*)value);
}
inline static int32_t get_offset_of_state_3() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___state_3)); }
inline RuntimeObject * get_state_3() const { return ___state_3; }
inline RuntimeObject ** get_address_of_state_3() { return &___state_3; }
inline void set_state_3(RuntimeObject * value)
{
___state_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___state_3), (void*)value);
}
inline static int32_t get_offset_of_due_time_ms_4() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___due_time_ms_4)); }
inline int64_t get_due_time_ms_4() const { return ___due_time_ms_4; }
inline int64_t* get_address_of_due_time_ms_4() { return &___due_time_ms_4; }
inline void set_due_time_ms_4(int64_t value)
{
___due_time_ms_4 = value;
}
inline static int32_t get_offset_of_period_ms_5() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___period_ms_5)); }
inline int64_t get_period_ms_5() const { return ___period_ms_5; }
inline int64_t* get_address_of_period_ms_5() { return &___period_ms_5; }
inline void set_period_ms_5(int64_t value)
{
___period_ms_5 = value;
}
inline static int32_t get_offset_of_next_run_6() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___next_run_6)); }
inline int64_t get_next_run_6() const { return ___next_run_6; }
inline int64_t* get_address_of_next_run_6() { return &___next_run_6; }
inline void set_next_run_6(int64_t value)
{
___next_run_6 = value;
}
inline static int32_t get_offset_of_disposed_7() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553, ___disposed_7)); }
inline bool get_disposed_7() const { return ___disposed_7; }
inline bool* get_address_of_disposed_7() { return &___disposed_7; }
inline void set_disposed_7(bool value)
{
___disposed_7 = value;
}
};
struct Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields
{
public:
// System.Threading.Timer_Scheduler System.Threading.Timer::scheduler
Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * ___scheduler_1;
public:
inline static int32_t get_offset_of_scheduler_1() { return static_cast<int32_t>(offsetof(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_StaticFields, ___scheduler_1)); }
inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * get_scheduler_1() const { return ___scheduler_1; }
inline Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 ** get_address_of_scheduler_1() { return &___scheduler_1; }
inline void set_scheduler_1(Scheduler_t8BD442F4C8B5450A09F40CC3A68592601F96A9B9 * value)
{
___scheduler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scheduler_1), (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:
};
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject
{
public:
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___buckets_0;
// System.Int32 System.Collections.Hashtable::count
int32_t ___count_1;
// System.Int32 System.Collections.Hashtable::occupancy
int32_t ___occupancy_2;
// System.Int32 System.Collections.Hashtable::loadsize
int32_t ___loadsize_3;
// System.Single System.Collections.Hashtable::loadFactor
float ___loadFactor_4;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version
int32_t ___version_5;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress
bool ___isWriterInProgress_6;
// System.Collections.ICollection System.Collections.Hashtable::keys
RuntimeObject* ___keys_7;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_8;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_0)); }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_0() const { return ___buckets_0; }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
inline static int32_t get_offset_of_occupancy_2() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___occupancy_2)); }
inline int32_t get_occupancy_2() const { return ___occupancy_2; }
inline int32_t* get_address_of_occupancy_2() { return &___occupancy_2; }
inline void set_occupancy_2(int32_t value)
{
___occupancy_2 = value;
}
inline static int32_t get_offset_of_loadsize_3() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadsize_3)); }
inline int32_t get_loadsize_3() const { return ___loadsize_3; }
inline int32_t* get_address_of_loadsize_3() { return &___loadsize_3; }
inline void set_loadsize_3(int32_t value)
{
___loadsize_3 = value;
}
inline static int32_t get_offset_of_loadFactor_4() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___loadFactor_4)); }
inline float get_loadFactor_4() const { return ___loadFactor_4; }
inline float* get_address_of_loadFactor_4() { return &___loadFactor_4; }
inline void set_loadFactor_4(float value)
{
___loadFactor_4 = value;
}
inline static int32_t get_offset_of_version_5() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___version_5)); }
inline int32_t get_version_5() const { return ___version_5; }
inline int32_t* get_address_of_version_5() { return &___version_5; }
inline void set_version_5(int32_t value)
{
___version_5 = value;
}
inline static int32_t get_offset_of_isWriterInProgress_6() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___isWriterInProgress_6)); }
inline bool get_isWriterInProgress_6() const { return ___isWriterInProgress_6; }
inline bool* get_address_of_isWriterInProgress_6() { return &___isWriterInProgress_6; }
inline void set_isWriterInProgress_6(bool value)
{
___isWriterInProgress_6 = value;
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___keys_7)); }
inline RuntimeObject* get_keys_7() const { return ___keys_7; }
inline RuntimeObject** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(RuntimeObject* value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of__keycomparer_8() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____keycomparer_8)); }
inline RuntimeObject* get__keycomparer_8() const { return ____keycomparer_8; }
inline RuntimeObject** get_address_of__keycomparer_8() { return &____keycomparer_8; }
inline void set__keycomparer_8(RuntimeObject* value)
{
____keycomparer_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.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.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.IO.MemoryStream
struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Byte[] System.IO.MemoryStream::_buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_4;
// System.Int32 System.IO.MemoryStream::_origin
int32_t ____origin_5;
// System.Int32 System.IO.MemoryStream::_position
int32_t ____position_6;
// System.Int32 System.IO.MemoryStream::_length
int32_t ____length_7;
// System.Int32 System.IO.MemoryStream::_capacity
int32_t ____capacity_8;
// System.Boolean System.IO.MemoryStream::_expandable
bool ____expandable_9;
// System.Boolean System.IO.MemoryStream::_writable
bool ____writable_10;
// System.Boolean System.IO.MemoryStream::_exposable
bool ____exposable_11;
// System.Boolean System.IO.MemoryStream::_isOpen
bool ____isOpen_12;
// System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_13;
public:
inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____buffer_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_4() const { return ____buffer_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_4() { return &____buffer_4; }
inline void set__buffer_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
____buffer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value);
}
inline static int32_t get_offset_of__origin_5() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____origin_5)); }
inline int32_t get__origin_5() const { return ____origin_5; }
inline int32_t* get_address_of__origin_5() { return &____origin_5; }
inline void set__origin_5(int32_t value)
{
____origin_5 = value;
}
inline static int32_t get_offset_of__position_6() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____position_6)); }
inline int32_t get__position_6() const { return ____position_6; }
inline int32_t* get_address_of__position_6() { return &____position_6; }
inline void set__position_6(int32_t value)
{
____position_6 = value;
}
inline static int32_t get_offset_of__length_7() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____length_7)); }
inline int32_t get__length_7() const { return ____length_7; }
inline int32_t* get_address_of__length_7() { return &____length_7; }
inline void set__length_7(int32_t value)
{
____length_7 = value;
}
inline static int32_t get_offset_of__capacity_8() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____capacity_8)); }
inline int32_t get__capacity_8() const { return ____capacity_8; }
inline int32_t* get_address_of__capacity_8() { return &____capacity_8; }
inline void set__capacity_8(int32_t value)
{
____capacity_8 = value;
}
inline static int32_t get_offset_of__expandable_9() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____expandable_9)); }
inline bool get__expandable_9() const { return ____expandable_9; }
inline bool* get_address_of__expandable_9() { return &____expandable_9; }
inline void set__expandable_9(bool value)
{
____expandable_9 = value;
}
inline static int32_t get_offset_of__writable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____writable_10)); }
inline bool get__writable_10() const { return ____writable_10; }
inline bool* get_address_of__writable_10() { return &____writable_10; }
inline void set__writable_10(bool value)
{
____writable_10 = value;
}
inline static int32_t get_offset_of__exposable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____exposable_11)); }
inline bool get__exposable_11() const { return ____exposable_11; }
inline bool* get_address_of__exposable_11() { return &____exposable_11; }
inline void set__exposable_11(bool value)
{
____exposable_11 = value;
}
inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____isOpen_12)); }
inline bool get__isOpen_12() const { return ____isOpen_12; }
inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
inline void set__isOpen_12(bool value)
{
____isOpen_12 = value;
}
inline static int32_t get_offset_of__lastReadTask_13() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____lastReadTask_13)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_13() const { return ____lastReadTask_13; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_13() { return &____lastReadTask_13; }
inline void set__lastReadTask_13(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
____lastReadTask_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_13), (void*)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.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.ConstructorInfo
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
}
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_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.Runtime.Remoting.ClientActivatedIdentity
struct ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 : public ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2
{
public:
// System.MarshalByRefObject System.Runtime.Remoting.ClientActivatedIdentity::_targetThis
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ____targetThis_12;
public:
inline static int32_t get_offset_of__targetThis_12() { return static_cast<int32_t>(offsetof(ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416, ____targetThis_12)); }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * get__targetThis_12() const { return ____targetThis_12; }
inline MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF ** get_address_of__targetThis_12() { return &____targetThis_12; }
inline void set__targetThis_12(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * value)
{
____targetThis_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetThis_12), (void*)value);
}
};
// System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724 : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Contexts.Context::domain_id
int32_t ___domain_id_0;
// System.Int32 System.Runtime.Remoting.Contexts.Context::context_id
int32_t ___context_id_1;
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::static_data
uintptr_t ___static_data_2;
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::data
uintptr_t ___data_3;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::server_context_sink_chain
RuntimeObject* ___server_context_sink_chain_6;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::client_context_sink_chain
RuntimeObject* ___client_context_sink_chain_7;
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty> System.Runtime.Remoting.Contexts.Context::context_properties
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
// System.LocalDataStoreHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Runtime.Remoting.Contexts.Context::_localDataStore
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::context_dynamic_properties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
// System.Runtime.Remoting.Contexts.ContextCallbackObject System.Runtime.Remoting.Contexts.Context::callback_object
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
public:
inline static int32_t get_offset_of_domain_id_0() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___domain_id_0)); }
inline int32_t get_domain_id_0() const { return ___domain_id_0; }
inline int32_t* get_address_of_domain_id_0() { return &___domain_id_0; }
inline void set_domain_id_0(int32_t value)
{
___domain_id_0 = value;
}
inline static int32_t get_offset_of_context_id_1() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_id_1)); }
inline int32_t get_context_id_1() const { return ___context_id_1; }
inline int32_t* get_address_of_context_id_1() { return &___context_id_1; }
inline void set_context_id_1(int32_t value)
{
___context_id_1 = value;
}
inline static int32_t get_offset_of_static_data_2() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___static_data_2)); }
inline uintptr_t get_static_data_2() const { return ___static_data_2; }
inline uintptr_t* get_address_of_static_data_2() { return &___static_data_2; }
inline void set_static_data_2(uintptr_t value)
{
___static_data_2 = value;
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___data_3)); }
inline uintptr_t get_data_3() const { return ___data_3; }
inline uintptr_t* get_address_of_data_3() { return &___data_3; }
inline void set_data_3(uintptr_t value)
{
___data_3 = value;
}
inline static int32_t get_offset_of_server_context_sink_chain_6() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___server_context_sink_chain_6)); }
inline RuntimeObject* get_server_context_sink_chain_6() const { return ___server_context_sink_chain_6; }
inline RuntimeObject** get_address_of_server_context_sink_chain_6() { return &___server_context_sink_chain_6; }
inline void set_server_context_sink_chain_6(RuntimeObject* value)
{
___server_context_sink_chain_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___server_context_sink_chain_6), (void*)value);
}
inline static int32_t get_offset_of_client_context_sink_chain_7() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___client_context_sink_chain_7)); }
inline RuntimeObject* get_client_context_sink_chain_7() const { return ___client_context_sink_chain_7; }
inline RuntimeObject** get_address_of_client_context_sink_chain_7() { return &___client_context_sink_chain_7; }
inline void set_client_context_sink_chain_7(RuntimeObject* value)
{
___client_context_sink_chain_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___client_context_sink_chain_7), (void*)value);
}
inline static int32_t get_offset_of_context_properties_8() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_properties_8)); }
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * get_context_properties_8() const { return ___context_properties_8; }
inline List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D ** get_address_of_context_properties_8() { return &___context_properties_8; }
inline void set_context_properties_8(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * value)
{
___context_properties_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___context_properties_8), (void*)value);
}
inline static int32_t get_offset_of__localDataStore_10() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ____localDataStore_10)); }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * get__localDataStore_10() const { return ____localDataStore_10; }
inline LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 ** get_address_of__localDataStore_10() { return &____localDataStore_10; }
inline void set__localDataStore_10(LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * value)
{
____localDataStore_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localDataStore_10), (void*)value);
}
inline static int32_t get_offset_of_context_dynamic_properties_13() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___context_dynamic_properties_13)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_context_dynamic_properties_13() const { return ___context_dynamic_properties_13; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_context_dynamic_properties_13() { return &___context_dynamic_properties_13; }
inline void set_context_dynamic_properties_13(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
___context_dynamic_properties_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___context_dynamic_properties_13), (void*)value);
}
inline static int32_t get_offset_of_callback_object_14() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724, ___callback_object_14)); }
inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * get_callback_object_14() const { return ___callback_object_14; }
inline ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 ** get_address_of_callback_object_14() { return &___callback_object_14; }
inline void set_callback_object_14(ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * value)
{
___callback_object_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_object_14), (void*)value);
}
};
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields
{
public:
// System.Object[] System.Runtime.Remoting.Contexts.Context::local_slots
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___local_slots_4;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::default_server_context_sink
RuntimeObject* ___default_server_context_sink_5;
// System.Int32 System.Runtime.Remoting.Contexts.Context::global_count
int32_t ___global_count_9;
// System.LocalDataStoreMgr System.Runtime.Remoting.Contexts.Context::_localDataStoreMgr
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * ____localDataStoreMgr_11;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::global_dynamic_properties
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___global_dynamic_properties_12;
public:
inline static int32_t get_offset_of_local_slots_4() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___local_slots_4)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_local_slots_4() const { return ___local_slots_4; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_local_slots_4() { return &___local_slots_4; }
inline void set_local_slots_4(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___local_slots_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___local_slots_4), (void*)value);
}
inline static int32_t get_offset_of_default_server_context_sink_5() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___default_server_context_sink_5)); }
inline RuntimeObject* get_default_server_context_sink_5() const { return ___default_server_context_sink_5; }
inline RuntimeObject** get_address_of_default_server_context_sink_5() { return &___default_server_context_sink_5; }
inline void set_default_server_context_sink_5(RuntimeObject* value)
{
___default_server_context_sink_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_server_context_sink_5), (void*)value);
}
inline static int32_t get_offset_of_global_count_9() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_count_9)); }
inline int32_t get_global_count_9() const { return ___global_count_9; }
inline int32_t* get_address_of_global_count_9() { return &___global_count_9; }
inline void set_global_count_9(int32_t value)
{
___global_count_9 = value;
}
inline static int32_t get_offset_of__localDataStoreMgr_11() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ____localDataStoreMgr_11)); }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * get__localDataStoreMgr_11() const { return ____localDataStoreMgr_11; }
inline LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 ** get_address_of__localDataStoreMgr_11() { return &____localDataStoreMgr_11; }
inline void set__localDataStoreMgr_11(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * value)
{
____localDataStoreMgr_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localDataStoreMgr_11), (void*)value);
}
inline static int32_t get_offset_of_global_dynamic_properties_12() { return static_cast<int32_t>(offsetof(Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields, ___global_dynamic_properties_12)); }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * get_global_dynamic_properties_12() const { return ___global_dynamic_properties_12; }
inline DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C ** get_address_of_global_dynamic_properties_12() { return &___global_dynamic_properties_12; }
inline void set_global_dynamic_properties_12(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * value)
{
___global_dynamic_properties_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___global_dynamic_properties_12), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke
{
int32_t ___domain_id_0;
int32_t ___context_id_1;
uintptr_t ___static_data_2;
uintptr_t ___data_3;
RuntimeObject* ___server_context_sink_chain_6;
RuntimeObject* ___client_context_sink_chain_7;
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Contexts.Context
struct Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com
{
int32_t ___domain_id_0;
int32_t ___context_id_1;
uintptr_t ___static_data_2;
uintptr_t ___data_3;
RuntimeObject* ___server_context_sink_chain_6;
RuntimeObject* ___client_context_sink_chain_7;
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * ___context_properties_8;
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * ____localDataStore_10;
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * ___context_dynamic_properties_13;
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * ___callback_object_14;
};
// System.Runtime.Remoting.Contexts.ContextCallbackObject
struct ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 : public ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0
{
public:
public:
};
// System.Runtime.Remoting.Lifetime.LeaseState
struct LeaseState_tF173E85694A0F2693F2A306039AF595E0F37DF02
{
public:
// System.Int32 System.Runtime.Remoting.Lifetime.LeaseState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LeaseState_tF173E85694A0F2693F2A306039AF595E0F37DF02, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Remoting.Messaging.ArgInfoType
struct ArgInfoType_tA83FD150C3F02425BD56A3910808C973DF2DBF63
{
public:
// System.Byte System.Runtime.Remoting.Messaging.ArgInfoType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ArgInfoType_tA83FD150C3F02425BD56A3910808C973DF2DBF63, ___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.Runtime.Remoting.Messaging.CallType
struct CallType_tBE39760BBF734FCF6769A65BFA1F512B1D107243
{
public:
// System.Int32 System.Runtime.Remoting.Messaging.CallType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallType_tBE39760BBF734FCF6769A65BFA1F512B1D107243, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Remoting.Metadata.SoapFieldAttribute
struct SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C : public SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE
{
public:
// System.String System.Runtime.Remoting.Metadata.SoapFieldAttribute::_elementName
String_t* ____elementName_3;
// System.Boolean System.Runtime.Remoting.Metadata.SoapFieldAttribute::_isElement
bool ____isElement_4;
public:
inline static int32_t get_offset_of__elementName_3() { return static_cast<int32_t>(offsetof(SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C, ____elementName_3)); }
inline String_t* get__elementName_3() const { return ____elementName_3; }
inline String_t** get_address_of__elementName_3() { return &____elementName_3; }
inline void set__elementName_3(String_t* value)
{
____elementName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____elementName_3), (void*)value);
}
inline static int32_t get_offset_of__isElement_4() { return static_cast<int32_t>(offsetof(SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C, ____isElement_4)); }
inline bool get__isElement_4() const { return ____isElement_4; }
inline bool* get_address_of__isElement_4() { return &____isElement_4; }
inline void set__isElement_4(bool value)
{
____isElement_4 = value;
}
};
// System.Runtime.Remoting.Metadata.SoapMethodAttribute
struct SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 : public SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE
{
public:
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::_responseElement
String_t* ____responseElement_3;
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::_responseNamespace
String_t* ____responseNamespace_4;
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::_returnElement
String_t* ____returnElement_5;
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::_soapAction
String_t* ____soapAction_6;
// System.Boolean System.Runtime.Remoting.Metadata.SoapMethodAttribute::_useAttribute
bool ____useAttribute_7;
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::_namespace
String_t* ____namespace_8;
public:
inline static int32_t get_offset_of__responseElement_3() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____responseElement_3)); }
inline String_t* get__responseElement_3() const { return ____responseElement_3; }
inline String_t** get_address_of__responseElement_3() { return &____responseElement_3; }
inline void set__responseElement_3(String_t* value)
{
____responseElement_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____responseElement_3), (void*)value);
}
inline static int32_t get_offset_of__responseNamespace_4() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____responseNamespace_4)); }
inline String_t* get__responseNamespace_4() const { return ____responseNamespace_4; }
inline String_t** get_address_of__responseNamespace_4() { return &____responseNamespace_4; }
inline void set__responseNamespace_4(String_t* value)
{
____responseNamespace_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____responseNamespace_4), (void*)value);
}
inline static int32_t get_offset_of__returnElement_5() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____returnElement_5)); }
inline String_t* get__returnElement_5() const { return ____returnElement_5; }
inline String_t** get_address_of__returnElement_5() { return &____returnElement_5; }
inline void set__returnElement_5(String_t* value)
{
____returnElement_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnElement_5), (void*)value);
}
inline static int32_t get_offset_of__soapAction_6() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____soapAction_6)); }
inline String_t* get__soapAction_6() const { return ____soapAction_6; }
inline String_t** get_address_of__soapAction_6() { return &____soapAction_6; }
inline void set__soapAction_6(String_t* value)
{
____soapAction_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____soapAction_6), (void*)value);
}
inline static int32_t get_offset_of__useAttribute_7() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____useAttribute_7)); }
inline bool get__useAttribute_7() const { return ____useAttribute_7; }
inline bool* get_address_of__useAttribute_7() { return &____useAttribute_7; }
inline void set__useAttribute_7(bool value)
{
____useAttribute_7 = value;
}
inline static int32_t get_offset_of__namespace_8() { return static_cast<int32_t>(offsetof(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722, ____namespace_8)); }
inline String_t* get__namespace_8() const { return ____namespace_8; }
inline String_t** get_address_of__namespace_8() { return &____namespace_8; }
inline void set__namespace_8(String_t* value)
{
____namespace_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____namespace_8), (void*)value);
}
};
// System.Runtime.Remoting.Metadata.SoapParameterAttribute
struct SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6 : public SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE
{
public:
public:
};
// System.Runtime.Remoting.Metadata.SoapTypeAttribute
struct SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A : public SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE
{
public:
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::_useAttribute
bool ____useAttribute_3;
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::_xmlElementName
String_t* ____xmlElementName_4;
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::_xmlNamespace
String_t* ____xmlNamespace_5;
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::_xmlTypeName
String_t* ____xmlTypeName_6;
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::_xmlTypeNamespace
String_t* ____xmlTypeNamespace_7;
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::_isType
bool ____isType_8;
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::_isElement
bool ____isElement_9;
public:
inline static int32_t get_offset_of__useAttribute_3() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____useAttribute_3)); }
inline bool get__useAttribute_3() const { return ____useAttribute_3; }
inline bool* get_address_of__useAttribute_3() { return &____useAttribute_3; }
inline void set__useAttribute_3(bool value)
{
____useAttribute_3 = value;
}
inline static int32_t get_offset_of__xmlElementName_4() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____xmlElementName_4)); }
inline String_t* get__xmlElementName_4() const { return ____xmlElementName_4; }
inline String_t** get_address_of__xmlElementName_4() { return &____xmlElementName_4; }
inline void set__xmlElementName_4(String_t* value)
{
____xmlElementName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____xmlElementName_4), (void*)value);
}
inline static int32_t get_offset_of__xmlNamespace_5() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____xmlNamespace_5)); }
inline String_t* get__xmlNamespace_5() const { return ____xmlNamespace_5; }
inline String_t** get_address_of__xmlNamespace_5() { return &____xmlNamespace_5; }
inline void set__xmlNamespace_5(String_t* value)
{
____xmlNamespace_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____xmlNamespace_5), (void*)value);
}
inline static int32_t get_offset_of__xmlTypeName_6() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____xmlTypeName_6)); }
inline String_t* get__xmlTypeName_6() const { return ____xmlTypeName_6; }
inline String_t** get_address_of__xmlTypeName_6() { return &____xmlTypeName_6; }
inline void set__xmlTypeName_6(String_t* value)
{
____xmlTypeName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____xmlTypeName_6), (void*)value);
}
inline static int32_t get_offset_of__xmlTypeNamespace_7() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____xmlTypeNamespace_7)); }
inline String_t* get__xmlTypeNamespace_7() const { return ____xmlTypeNamespace_7; }
inline String_t** get_address_of__xmlTypeNamespace_7() { return &____xmlTypeNamespace_7; }
inline void set__xmlTypeNamespace_7(String_t* value)
{
____xmlTypeNamespace_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____xmlTypeNamespace_7), (void*)value);
}
inline static int32_t get_offset_of__isType_8() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____isType_8)); }
inline bool get__isType_8() const { return ____isType_8; }
inline bool* get_address_of__isType_8() { return &____isType_8; }
inline void set__isType_8(bool value)
{
____isType_8 = value;
}
inline static int32_t get_offset_of__isElement_9() { return static_cast<int32_t>(offsetof(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A, ____isElement_9)); }
inline bool get__isElement_9() const { return ____isElement_9; }
inline bool* get_address_of__isElement_9() { return &____isElement_9; }
inline void set__isElement_9(bool value)
{
____isElement_9 = value;
}
};
// System.Runtime.Remoting.Proxies.RemotingProxy
struct RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 : public RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Proxies.RemotingProxy::_sink
RuntimeObject* ____sink_10;
// System.Boolean System.Runtime.Remoting.Proxies.RemotingProxy::_hasEnvoySink
bool ____hasEnvoySink_11;
// System.Runtime.Remoting.Messaging.ConstructionCall System.Runtime.Remoting.Proxies.RemotingProxy::_ctorCall
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * ____ctorCall_12;
public:
inline static int32_t get_offset_of__sink_10() { return static_cast<int32_t>(offsetof(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9, ____sink_10)); }
inline RuntimeObject* get__sink_10() const { return ____sink_10; }
inline RuntimeObject** get_address_of__sink_10() { return &____sink_10; }
inline void set__sink_10(RuntimeObject* value)
{
____sink_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sink_10), (void*)value);
}
inline static int32_t get_offset_of__hasEnvoySink_11() { return static_cast<int32_t>(offsetof(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9, ____hasEnvoySink_11)); }
inline bool get__hasEnvoySink_11() const { return ____hasEnvoySink_11; }
inline bool* get_address_of__hasEnvoySink_11() { return &____hasEnvoySink_11; }
inline void set__hasEnvoySink_11(bool value)
{
____hasEnvoySink_11 = value;
}
inline static int32_t get_offset_of__ctorCall_12() { return static_cast<int32_t>(offsetof(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9, ____ctorCall_12)); }
inline ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * get__ctorCall_12() const { return ____ctorCall_12; }
inline ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE ** get_address_of__ctorCall_12() { return &____ctorCall_12; }
inline void set__ctorCall_12(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * value)
{
____ctorCall_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ctorCall_12), (void*)value);
}
};
struct RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields
{
public:
// System.Reflection.MethodInfo System.Runtime.Remoting.Proxies.RemotingProxy::_cache_GetTypeMethod
MethodInfo_t * ____cache_GetTypeMethod_8;
// System.Reflection.MethodInfo System.Runtime.Remoting.Proxies.RemotingProxy::_cache_GetHashCodeMethod
MethodInfo_t * ____cache_GetHashCodeMethod_9;
public:
inline static int32_t get_offset_of__cache_GetTypeMethod_8() { return static_cast<int32_t>(offsetof(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields, ____cache_GetTypeMethod_8)); }
inline MethodInfo_t * get__cache_GetTypeMethod_8() const { return ____cache_GetTypeMethod_8; }
inline MethodInfo_t ** get_address_of__cache_GetTypeMethod_8() { return &____cache_GetTypeMethod_8; }
inline void set__cache_GetTypeMethod_8(MethodInfo_t * value)
{
____cache_GetTypeMethod_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cache_GetTypeMethod_8), (void*)value);
}
inline static int32_t get_offset_of__cache_GetHashCodeMethod_9() { return static_cast<int32_t>(offsetof(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields, ____cache_GetHashCodeMethod_9)); }
inline MethodInfo_t * get__cache_GetHashCodeMethod_9() const { return ____cache_GetHashCodeMethod_9; }
inline MethodInfo_t ** get_address_of__cache_GetHashCodeMethod_9() { return &____cache_GetHashCodeMethod_9; }
inline void set__cache_GetHashCodeMethod_9(MethodInfo_t * value)
{
____cache_GetHashCodeMethod_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cache_GetHashCodeMethod_9), (void*)value);
}
};
// System.Runtime.Remoting.Proxies.TransparentProxy
struct TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.Proxies.TransparentProxy::_rp
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * ____rp_0;
// Mono.RuntimeRemoteClassHandle System.Runtime.Remoting.Proxies.TransparentProxy::_class
RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 ____class_1;
// System.Boolean System.Runtime.Remoting.Proxies.TransparentProxy::_custom_type_info
bool ____custom_type_info_2;
public:
inline static int32_t get_offset_of__rp_0() { return static_cast<int32_t>(offsetof(TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000, ____rp_0)); }
inline RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * get__rp_0() const { return ____rp_0; }
inline RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF ** get_address_of__rp_0() { return &____rp_0; }
inline void set__rp_0(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * value)
{
____rp_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rp_0), (void*)value);
}
inline static int32_t get_offset_of__class_1() { return static_cast<int32_t>(offsetof(TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000, ____class_1)); }
inline RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 get__class_1() const { return ____class_1; }
inline RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 * get_address_of__class_1() { return &____class_1; }
inline void set__class_1(RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 value)
{
____class_1 = value;
}
inline static int32_t get_offset_of__custom_type_info_2() { return static_cast<int32_t>(offsetof(TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000, ____custom_type_info_2)); }
inline bool get__custom_type_info_2() const { return ____custom_type_info_2; }
inline bool* get_address_of__custom_type_info_2() { return &____custom_type_info_2; }
inline void set__custom_type_info_2(bool value)
{
____custom_type_info_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Proxies.TransparentProxy
struct TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_pinvoke
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke* ____rp_0;
RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 ____class_1;
int32_t ____custom_type_info_2;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Proxies.TransparentProxy
struct TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_com
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com* ____rp_0;
RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 ____class_1;
int32_t ____custom_type_info_2;
};
// System.Runtime.Remoting.SingleCallIdentity
struct SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083 : public ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2
{
public:
public:
};
// System.Runtime.Remoting.SingletonIdentity
struct SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5 : public ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2
{
public:
public:
};
// System.Runtime.Remoting.WellKnownObjectMode
struct WellKnownObjectMode_t5B37F796E1F754853D04B4397C8C37E630185AFB
{
public:
// System.Int32 System.Runtime.Remoting.WellKnownObjectMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WellKnownObjectMode_t5B37F796E1F754853D04B4397C8C37E630185AFB, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle
struct FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterAssemblyStyle_tA1E8A300026362A0AE091830C5DBDEFCBCD5213A, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Serialization.Formatters.FormatterTypeStyle
struct FormatterTypeStyle_tFEF4ABC0D7DE012B1C0976F196E45600568D67AF
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterTypeStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterTypeStyle_tFEF4ABC0D7DE012B1C0976F196E45600568D67AF, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Serialization.Formatters.TypeFilterLevel
struct TypeFilterLevel_t8FC0F5849147B01F3EB6E3B876E06B3022E0C59A
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.TypeFilterLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeFilterLevel_t8FC0F5849147B01F3EB6E3B876E06B3022E0C59A, ___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.Threading.ExecutionContext_CaptureOptions
struct CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C
{
public:
// System.Int32 System.Threading.ExecutionContext_CaptureOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureOptions_t7D9885DDA178752A2B4CA4EB542756102B918B6C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.ExecutionContext_Flags
struct Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD
{
public:
// System.Int32 System.Threading.ExecutionContext_Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t8F565E43354BBB9A79D7F0308B469D11A82268BD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.StackCrawlMark
struct StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943
{
public:
// System.Int32 System.Threading.StackCrawlMark::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StackCrawlMark_t857D8DE506F124E737FD26BB7ADAAAAD13E4F943, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
public:
inline static int32_t get_offset_of_waitHandle_3() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___waitHandle_3)); }
inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; }
inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; }
inline void set_waitHandle_3(intptr_t value)
{
___waitHandle_3 = value;
}
inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___safeWaitHandle_4)); }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; }
inline void set_safeWaitHandle_4(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * value)
{
___safeWaitHandle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value);
}
inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___hasThreadAffinity_5)); }
inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; }
inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; }
inline void set_hasThreadAffinity_5(bool value)
{
___hasThreadAffinity_5 = value;
}
};
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields
{
public:
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_10;
public:
inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields, ___InvalidHandle_10)); }
inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; }
inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; }
inline void set_InvalidHandle_10(intptr_t value)
{
___InvalidHandle_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// 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.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.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.RuntimeMethodInfo
struct RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E : public MethodInfo_t
{
public:
public:
};
// System.Runtime.Remoting.Lifetime.Lease
struct Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.DateTime System.Runtime.Remoting.Lifetime.Lease::_leaseExpireTime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ____leaseExpireTime_1;
// System.Runtime.Remoting.Lifetime.LeaseState System.Runtime.Remoting.Lifetime.Lease::_currentState
int32_t ____currentState_2;
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::_initialLeaseTime
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____initialLeaseTime_3;
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::_renewOnCallTime
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____renewOnCallTime_4;
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::_sponsorshipTimeout
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____sponsorshipTimeout_5;
// System.Collections.ArrayList System.Runtime.Remoting.Lifetime.Lease::_sponsors
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ____sponsors_6;
// System.Collections.Queue System.Runtime.Remoting.Lifetime.Lease::_renewingSponsors
Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * ____renewingSponsors_7;
// System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate System.Runtime.Remoting.Lifetime.Lease::_renewalDelegate
RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * ____renewalDelegate_8;
public:
inline static int32_t get_offset_of__leaseExpireTime_1() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____leaseExpireTime_1)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get__leaseExpireTime_1() const { return ____leaseExpireTime_1; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of__leaseExpireTime_1() { return &____leaseExpireTime_1; }
inline void set__leaseExpireTime_1(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
____leaseExpireTime_1 = value;
}
inline static int32_t get_offset_of__currentState_2() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____currentState_2)); }
inline int32_t get__currentState_2() const { return ____currentState_2; }
inline int32_t* get_address_of__currentState_2() { return &____currentState_2; }
inline void set__currentState_2(int32_t value)
{
____currentState_2 = value;
}
inline static int32_t get_offset_of__initialLeaseTime_3() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____initialLeaseTime_3)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__initialLeaseTime_3() const { return ____initialLeaseTime_3; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__initialLeaseTime_3() { return &____initialLeaseTime_3; }
inline void set__initialLeaseTime_3(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____initialLeaseTime_3 = value;
}
inline static int32_t get_offset_of__renewOnCallTime_4() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____renewOnCallTime_4)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__renewOnCallTime_4() const { return ____renewOnCallTime_4; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__renewOnCallTime_4() { return &____renewOnCallTime_4; }
inline void set__renewOnCallTime_4(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____renewOnCallTime_4 = value;
}
inline static int32_t get_offset_of__sponsorshipTimeout_5() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____sponsorshipTimeout_5)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__sponsorshipTimeout_5() const { return ____sponsorshipTimeout_5; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__sponsorshipTimeout_5() { return &____sponsorshipTimeout_5; }
inline void set__sponsorshipTimeout_5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____sponsorshipTimeout_5 = value;
}
inline static int32_t get_offset_of__sponsors_6() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____sponsors_6)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get__sponsors_6() const { return ____sponsors_6; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of__sponsors_6() { return &____sponsors_6; }
inline void set__sponsors_6(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
____sponsors_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sponsors_6), (void*)value);
}
inline static int32_t get_offset_of__renewingSponsors_7() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____renewingSponsors_7)); }
inline Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * get__renewingSponsors_7() const { return ____renewingSponsors_7; }
inline Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 ** get_address_of__renewingSponsors_7() { return &____renewingSponsors_7; }
inline void set__renewingSponsors_7(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * value)
{
____renewingSponsors_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____renewingSponsors_7), (void*)value);
}
inline static int32_t get_offset_of__renewalDelegate_8() { return static_cast<int32_t>(offsetof(Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3, ____renewalDelegate_8)); }
inline RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * get__renewalDelegate_8() const { return ____renewalDelegate_8; }
inline RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 ** get_address_of__renewalDelegate_8() { return &____renewalDelegate_8; }
inline void set__renewalDelegate_8(RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * value)
{
____renewalDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____renewalDelegate_8), (void*)value);
}
};
// System.Runtime.Remoting.Lifetime.LifetimeServices
struct LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B : public RuntimeObject
{
public:
public:
};
struct LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields
{
public:
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseManagerPollTime
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____leaseManagerPollTime_0;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseTime
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____leaseTime_1;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_renewOnCallTime
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____renewOnCallTime_2;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_sponsorshipTimeout
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____sponsorshipTimeout_3;
// System.Runtime.Remoting.Lifetime.LeaseManager System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseManager
LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * ____leaseManager_4;
public:
inline static int32_t get_offset_of__leaseManagerPollTime_0() { return static_cast<int32_t>(offsetof(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields, ____leaseManagerPollTime_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__leaseManagerPollTime_0() const { return ____leaseManagerPollTime_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__leaseManagerPollTime_0() { return &____leaseManagerPollTime_0; }
inline void set__leaseManagerPollTime_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____leaseManagerPollTime_0 = value;
}
inline static int32_t get_offset_of__leaseTime_1() { return static_cast<int32_t>(offsetof(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields, ____leaseTime_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__leaseTime_1() const { return ____leaseTime_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__leaseTime_1() { return &____leaseTime_1; }
inline void set__leaseTime_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____leaseTime_1 = value;
}
inline static int32_t get_offset_of__renewOnCallTime_2() { return static_cast<int32_t>(offsetof(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields, ____renewOnCallTime_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__renewOnCallTime_2() const { return ____renewOnCallTime_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__renewOnCallTime_2() { return &____renewOnCallTime_2; }
inline void set__renewOnCallTime_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____renewOnCallTime_2 = value;
}
inline static int32_t get_offset_of__sponsorshipTimeout_3() { return static_cast<int32_t>(offsetof(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields, ____sponsorshipTimeout_3)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__sponsorshipTimeout_3() const { return ____sponsorshipTimeout_3; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__sponsorshipTimeout_3() { return &____sponsorshipTimeout_3; }
inline void set__sponsorshipTimeout_3(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____sponsorshipTimeout_3 = value;
}
inline static int32_t get_offset_of__leaseManager_4() { return static_cast<int32_t>(offsetof(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields, ____leaseManager_4)); }
inline LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * get__leaseManager_4() const { return ____leaseManager_4; }
inline LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 ** get_address_of__leaseManager_4() { return &____leaseManager_4; }
inline void set__leaseManager_4(LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * value)
{
____leaseManager_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____leaseManager_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.AsyncResult
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 : public RuntimeObject
{
public:
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::async_state
RuntimeObject * ___async_state_0;
// System.Threading.WaitHandle System.Runtime.Remoting.Messaging.AsyncResult::handle
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___handle_1;
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::async_delegate
RuntimeObject * ___async_delegate_2;
// System.IntPtr System.Runtime.Remoting.Messaging.AsyncResult::data
intptr_t ___data_3;
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::object_data
RuntimeObject * ___object_data_4;
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::sync_completed
bool ___sync_completed_5;
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::completed
bool ___completed_6;
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::endinvoke_called
bool ___endinvoke_called_7;
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::async_callback
RuntimeObject * ___async_callback_8;
// System.Threading.ExecutionContext System.Runtime.Remoting.Messaging.AsyncResult::current
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___current_9;
// System.Threading.ExecutionContext System.Runtime.Remoting.Messaging.AsyncResult::original
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___original_10;
// System.Int64 System.Runtime.Remoting.Messaging.AsyncResult::add_time
int64_t ___add_time_11;
// System.Runtime.Remoting.Messaging.MonoMethodMessage System.Runtime.Remoting.Messaging.AsyncResult::call_message
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___call_message_12;
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.AsyncResult::message_ctrl
RuntimeObject* ___message_ctrl_13;
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::reply_message
RuntimeObject* ___reply_message_14;
// System.Threading.WaitCallback System.Runtime.Remoting.Messaging.AsyncResult::orig_cb
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___orig_cb_15;
public:
inline static int32_t get_offset_of_async_state_0() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___async_state_0)); }
inline RuntimeObject * get_async_state_0() const { return ___async_state_0; }
inline RuntimeObject ** get_address_of_async_state_0() { return &___async_state_0; }
inline void set_async_state_0(RuntimeObject * value)
{
___async_state_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___async_state_0), (void*)value);
}
inline static int32_t get_offset_of_handle_1() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___handle_1)); }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * get_handle_1() const { return ___handle_1; }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** get_address_of_handle_1() { return &___handle_1; }
inline void set_handle_1(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value)
{
___handle_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___handle_1), (void*)value);
}
inline static int32_t get_offset_of_async_delegate_2() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___async_delegate_2)); }
inline RuntimeObject * get_async_delegate_2() const { return ___async_delegate_2; }
inline RuntimeObject ** get_address_of_async_delegate_2() { return &___async_delegate_2; }
inline void set_async_delegate_2(RuntimeObject * value)
{
___async_delegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___async_delegate_2), (void*)value);
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___data_3)); }
inline intptr_t get_data_3() const { return ___data_3; }
inline intptr_t* get_address_of_data_3() { return &___data_3; }
inline void set_data_3(intptr_t value)
{
___data_3 = value;
}
inline static int32_t get_offset_of_object_data_4() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___object_data_4)); }
inline RuntimeObject * get_object_data_4() const { return ___object_data_4; }
inline RuntimeObject ** get_address_of_object_data_4() { return &___object_data_4; }
inline void set_object_data_4(RuntimeObject * value)
{
___object_data_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___object_data_4), (void*)value);
}
inline static int32_t get_offset_of_sync_completed_5() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___sync_completed_5)); }
inline bool get_sync_completed_5() const { return ___sync_completed_5; }
inline bool* get_address_of_sync_completed_5() { return &___sync_completed_5; }
inline void set_sync_completed_5(bool value)
{
___sync_completed_5 = value;
}
inline static int32_t get_offset_of_completed_6() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___completed_6)); }
inline bool get_completed_6() const { return ___completed_6; }
inline bool* get_address_of_completed_6() { return &___completed_6; }
inline void set_completed_6(bool value)
{
___completed_6 = value;
}
inline static int32_t get_offset_of_endinvoke_called_7() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___endinvoke_called_7)); }
inline bool get_endinvoke_called_7() const { return ___endinvoke_called_7; }
inline bool* get_address_of_endinvoke_called_7() { return &___endinvoke_called_7; }
inline void set_endinvoke_called_7(bool value)
{
___endinvoke_called_7 = value;
}
inline static int32_t get_offset_of_async_callback_8() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___async_callback_8)); }
inline RuntimeObject * get_async_callback_8() const { return ___async_callback_8; }
inline RuntimeObject ** get_address_of_async_callback_8() { return &___async_callback_8; }
inline void set_async_callback_8(RuntimeObject * value)
{
___async_callback_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___async_callback_8), (void*)value);
}
inline static int32_t get_offset_of_current_9() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___current_9)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_current_9() const { return ___current_9; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_current_9() { return &___current_9; }
inline void set_current_9(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___current_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_9), (void*)value);
}
inline static int32_t get_offset_of_original_10() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___original_10)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_original_10() const { return ___original_10; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_original_10() { return &___original_10; }
inline void set_original_10(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___original_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_10), (void*)value);
}
inline static int32_t get_offset_of_add_time_11() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___add_time_11)); }
inline int64_t get_add_time_11() const { return ___add_time_11; }
inline int64_t* get_address_of_add_time_11() { return &___add_time_11; }
inline void set_add_time_11(int64_t value)
{
___add_time_11 = value;
}
inline static int32_t get_offset_of_call_message_12() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___call_message_12)); }
inline MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * get_call_message_12() const { return ___call_message_12; }
inline MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 ** get_address_of_call_message_12() { return &___call_message_12; }
inline void set_call_message_12(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * value)
{
___call_message_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___call_message_12), (void*)value);
}
inline static int32_t get_offset_of_message_ctrl_13() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___message_ctrl_13)); }
inline RuntimeObject* get_message_ctrl_13() const { return ___message_ctrl_13; }
inline RuntimeObject** get_address_of_message_ctrl_13() { return &___message_ctrl_13; }
inline void set_message_ctrl_13(RuntimeObject* value)
{
___message_ctrl_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___message_ctrl_13), (void*)value);
}
inline static int32_t get_offset_of_reply_message_14() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___reply_message_14)); }
inline RuntimeObject* get_reply_message_14() const { return ___reply_message_14; }
inline RuntimeObject** get_address_of_reply_message_14() { return &___reply_message_14; }
inline void set_reply_message_14(RuntimeObject* value)
{
___reply_message_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reply_message_14), (void*)value);
}
inline static int32_t get_offset_of_orig_cb_15() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2, ___orig_cb_15)); }
inline WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * get_orig_cb_15() const { return ___orig_cb_15; }
inline WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC ** get_address_of_orig_cb_15() { return &___orig_cb_15; }
inline void set_orig_cb_15(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * value)
{
___orig_cb_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___orig_cb_15), (void*)value);
}
};
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_StaticFields
{
public:
// System.Threading.ContextCallback System.Runtime.Remoting.Messaging.AsyncResult::ccb
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___ccb_16;
public:
inline static int32_t get_offset_of_ccb_16() { return static_cast<int32_t>(offsetof(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_StaticFields, ___ccb_16)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_ccb_16() const { return ___ccb_16; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_ccb_16() { return &___ccb_16; }
inline void set_ccb_16(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___ccb_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ccb_16), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Messaging.AsyncResult
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke
{
Il2CppIUnknown* ___async_state_0;
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke ___handle_1;
Il2CppIUnknown* ___async_delegate_2;
intptr_t ___data_3;
Il2CppIUnknown* ___object_data_4;
int32_t ___sync_completed_5;
int32_t ___completed_6;
int32_t ___endinvoke_called_7;
Il2CppIUnknown* ___async_callback_8;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___current_9;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___original_10;
int64_t ___add_time_11;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke* ___call_message_12;
RuntimeObject* ___message_ctrl_13;
RuntimeObject* ___reply_message_14;
Il2CppMethodPointer ___orig_cb_15;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Messaging.AsyncResult
struct AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com
{
Il2CppIUnknown* ___async_state_0;
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com* ___handle_1;
Il2CppIUnknown* ___async_delegate_2;
intptr_t ___data_3;
Il2CppIUnknown* ___object_data_4;
int32_t ___sync_completed_5;
int32_t ___completed_6;
int32_t ___endinvoke_called_7;
Il2CppIUnknown* ___async_callback_8;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___current_9;
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___original_10;
int64_t ___add_time_11;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com* ___call_message_12;
RuntimeObject* ___message_ctrl_13;
RuntimeObject* ___reply_message_14;
Il2CppMethodPointer ___orig_cb_15;
};
// System.Runtime.Remoting.Messaging.MonoMethodMessage
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 : public RuntimeObject
{
public:
// System.Reflection.MonoMethod System.Runtime.Remoting.Messaging.MonoMethodMessage::method
MonoMethod_t * ___method_0;
// System.Object[] System.Runtime.Remoting.Messaging.MonoMethodMessage::args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_1;
// System.String[] System.Runtime.Remoting.Messaging.MonoMethodMessage::names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___names_2;
// System.Byte[] System.Runtime.Remoting.Messaging.MonoMethodMessage::arg_types
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___arg_types_3;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MonoMethodMessage::ctx
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx_4;
// System.Object System.Runtime.Remoting.Messaging.MonoMethodMessage::rval
RuntimeObject * ___rval_5;
// System.Exception System.Runtime.Remoting.Messaging.MonoMethodMessage::exc
Exception_t * ___exc_6;
// System.Runtime.Remoting.Messaging.AsyncResult System.Runtime.Remoting.Messaging.MonoMethodMessage::asyncResult
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * ___asyncResult_7;
// System.Runtime.Remoting.Messaging.CallType System.Runtime.Remoting.Messaging.MonoMethodMessage::call_type
int32_t ___call_type_8;
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::uri
String_t* ___uri_9;
// System.Runtime.Remoting.Messaging.MCMDictionary System.Runtime.Remoting.Messaging.MonoMethodMessage::properties
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * ___properties_10;
// System.Type[] System.Runtime.Remoting.Messaging.MonoMethodMessage::methodSignature
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___methodSignature_11;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MonoMethodMessage::identity
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___identity_12;
public:
inline static int32_t get_offset_of_method_0() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___method_0)); }
inline MonoMethod_t * get_method_0() const { return ___method_0; }
inline MonoMethod_t ** get_address_of_method_0() { return &___method_0; }
inline void set_method_0(MonoMethod_t * value)
{
___method_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_0), (void*)value);
}
inline static int32_t get_offset_of_args_1() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___args_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_args_1() const { return ___args_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_args_1() { return &___args_1; }
inline void set_args_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___args_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___args_1), (void*)value);
}
inline static int32_t get_offset_of_names_2() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___names_2)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_names_2() const { return ___names_2; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_names_2() { return &___names_2; }
inline void set_names_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___names_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___names_2), (void*)value);
}
inline static int32_t get_offset_of_arg_types_3() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___arg_types_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_arg_types_3() const { return ___arg_types_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_arg_types_3() { return &___arg_types_3; }
inline void set_arg_types_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___arg_types_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arg_types_3), (void*)value);
}
inline static int32_t get_offset_of_ctx_4() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___ctx_4)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get_ctx_4() const { return ___ctx_4; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of_ctx_4() { return &___ctx_4; }
inline void set_ctx_4(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
___ctx_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ctx_4), (void*)value);
}
inline static int32_t get_offset_of_rval_5() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___rval_5)); }
inline RuntimeObject * get_rval_5() const { return ___rval_5; }
inline RuntimeObject ** get_address_of_rval_5() { return &___rval_5; }
inline void set_rval_5(RuntimeObject * value)
{
___rval_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rval_5), (void*)value);
}
inline static int32_t get_offset_of_exc_6() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___exc_6)); }
inline Exception_t * get_exc_6() const { return ___exc_6; }
inline Exception_t ** get_address_of_exc_6() { return &___exc_6; }
inline void set_exc_6(Exception_t * value)
{
___exc_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___exc_6), (void*)value);
}
inline static int32_t get_offset_of_asyncResult_7() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___asyncResult_7)); }
inline AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * get_asyncResult_7() const { return ___asyncResult_7; }
inline AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 ** get_address_of_asyncResult_7() { return &___asyncResult_7; }
inline void set_asyncResult_7(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * value)
{
___asyncResult_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___asyncResult_7), (void*)value);
}
inline static int32_t get_offset_of_call_type_8() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___call_type_8)); }
inline int32_t get_call_type_8() const { return ___call_type_8; }
inline int32_t* get_address_of_call_type_8() { return &___call_type_8; }
inline void set_call_type_8(int32_t value)
{
___call_type_8 = value;
}
inline static int32_t get_offset_of_uri_9() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___uri_9)); }
inline String_t* get_uri_9() const { return ___uri_9; }
inline String_t** get_address_of_uri_9() { return &___uri_9; }
inline void set_uri_9(String_t* value)
{
___uri_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_9), (void*)value);
}
inline static int32_t get_offset_of_properties_10() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___properties_10)); }
inline MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * get_properties_10() const { return ___properties_10; }
inline MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 ** get_address_of_properties_10() { return &___properties_10; }
inline void set_properties_10(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * value)
{
___properties_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_10), (void*)value);
}
inline static int32_t get_offset_of_methodSignature_11() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___methodSignature_11)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_methodSignature_11() const { return ___methodSignature_11; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_methodSignature_11() { return &___methodSignature_11; }
inline void set_methodSignature_11(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___methodSignature_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___methodSignature_11), (void*)value);
}
inline static int32_t get_offset_of_identity_12() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234, ___identity_12)); }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * get_identity_12() const { return ___identity_12; }
inline Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 ** get_address_of_identity_12() { return &___identity_12; }
inline void set_identity_12(Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * value)
{
___identity_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___identity_12), (void*)value);
}
};
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_StaticFields
{
public:
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::CallContextKey
String_t* ___CallContextKey_13;
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::UriKey
String_t* ___UriKey_14;
public:
inline static int32_t get_offset_of_CallContextKey_13() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_StaticFields, ___CallContextKey_13)); }
inline String_t* get_CallContextKey_13() const { return ___CallContextKey_13; }
inline String_t** get_address_of_CallContextKey_13() { return &___CallContextKey_13; }
inline void set_CallContextKey_13(String_t* value)
{
___CallContextKey_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CallContextKey_13), (void*)value);
}
inline static int32_t get_offset_of_UriKey_14() { return static_cast<int32_t>(offsetof(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_StaticFields, ___UriKey_14)); }
inline String_t* get_UriKey_14() const { return ___UriKey_14; }
inline String_t** get_address_of_UriKey_14() { return &___UriKey_14; }
inline void set_UriKey_14(String_t* value)
{
___UriKey_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriKey_14), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Messaging.MonoMethodMessage
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke
{
MonoMethod_t * ___method_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_1;
char** ___names_2;
Il2CppSafeArray/*NONE*/* ___arg_types_3;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx_4;
Il2CppIUnknown* ___rval_5;
Exception_t_marshaled_pinvoke* ___exc_6;
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke* ___asyncResult_7;
int32_t ___call_type_8;
char* ___uri_9;
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * ___properties_10;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___methodSignature_11;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___identity_12;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Messaging.MonoMethodMessage
struct MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com
{
MonoMethod_t * ___method_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_1;
Il2CppChar** ___names_2;
Il2CppSafeArray/*NONE*/* ___arg_types_3;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx_4;
Il2CppIUnknown* ___rval_5;
Exception_t_marshaled_com* ___exc_6;
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com* ___asyncResult_7;
int32_t ___call_type_8;
Il2CppChar* ___uri_9;
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * ___properties_10;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___methodSignature_11;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___identity_12;
};
// System.Runtime.Remoting.WellKnownServiceTypeEntry
struct WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE : public TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438
{
public:
// System.Type System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_type
Type_t * ___obj_type_2;
// System.String System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_uri
String_t* ___obj_uri_3;
// System.Runtime.Remoting.WellKnownObjectMode System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_mode
int32_t ___obj_mode_4;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
inline static int32_t get_offset_of_obj_uri_3() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE, ___obj_uri_3)); }
inline String_t* get_obj_uri_3() const { return ___obj_uri_3; }
inline String_t** get_address_of_obj_uri_3() { return &___obj_uri_3; }
inline void set_obj_uri_3(String_t* value)
{
___obj_uri_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_uri_3), (void*)value);
}
inline static int32_t get_offset_of_obj_mode_4() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE, ___obj_mode_4)); }
inline int32_t get_obj_mode_4() const { return ___obj_mode_4; }
inline int32_t* get_address_of_obj_mode_4() { return &___obj_mode_4; }
inline void set_obj_mode_4(int32_t value)
{
___obj_mode_4 = value;
}
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_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.Threading.EventWaitHandle
struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 : public WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6
{
public:
public:
};
// System.Threading.ExecutionContext
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 : public RuntimeObject
{
public:
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContext
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContext_0;
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContextNoFlow
SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * ____syncContextNoFlow_1;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::_logicalCallContext
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ____logicalCallContext_2;
// System.Runtime.Remoting.Messaging.IllogicalCallContext System.Threading.ExecutionContext::_illogicalCallContext
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * ____illogicalCallContext_3;
// System.Threading.ExecutionContext_Flags System.Threading.ExecutionContext::_flags
int32_t ____flags_4;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object> System.Threading.ExecutionContext::_localValues
Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * ____localValues_5;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal> System.Threading.ExecutionContext::_localChangeNotifications
List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * ____localChangeNotifications_6;
public:
inline static int32_t get_offset_of__syncContext_0() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContext_0)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContext_0() const { return ____syncContext_0; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContext_0() { return &____syncContext_0; }
inline void set__syncContext_0(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____syncContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContext_0), (void*)value);
}
inline static int32_t get_offset_of__syncContextNoFlow_1() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____syncContextNoFlow_1)); }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * get__syncContextNoFlow_1() const { return ____syncContextNoFlow_1; }
inline SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 ** get_address_of__syncContextNoFlow_1() { return &____syncContextNoFlow_1; }
inline void set__syncContextNoFlow_1(SynchronizationContext_t06AEFE2C7CFCFC242D0A5729A74464AF18CF84E7 * value)
{
____syncContextNoFlow_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContextNoFlow_1), (void*)value);
}
inline static int32_t get_offset_of__logicalCallContext_2() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____logicalCallContext_2)); }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * get__logicalCallContext_2() const { return ____logicalCallContext_2; }
inline LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E ** get_address_of__logicalCallContext_2() { return &____logicalCallContext_2; }
inline void set__logicalCallContext_2(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * value)
{
____logicalCallContext_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logicalCallContext_2), (void*)value);
}
inline static int32_t get_offset_of__illogicalCallContext_3() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____illogicalCallContext_3)); }
inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * get__illogicalCallContext_3() const { return ____illogicalCallContext_3; }
inline IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 ** get_address_of__illogicalCallContext_3() { return &____illogicalCallContext_3; }
inline void set__illogicalCallContext_3(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * value)
{
____illogicalCallContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____illogicalCallContext_3), (void*)value);
}
inline static int32_t get_offset_of__flags_4() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____flags_4)); }
inline int32_t get__flags_4() const { return ____flags_4; }
inline int32_t* get_address_of__flags_4() { return &____flags_4; }
inline void set__flags_4(int32_t value)
{
____flags_4 = value;
}
inline static int32_t get_offset_of__localValues_5() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localValues_5)); }
inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * get__localValues_5() const { return ____localValues_5; }
inline Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A ** get_address_of__localValues_5() { return &____localValues_5; }
inline void set__localValues_5(Dictionary_2_t46E74B8986EB45A18D8623D1C9307E035EB0D03A * value)
{
____localValues_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localValues_5), (void*)value);
}
inline static int32_t get_offset_of__localChangeNotifications_6() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70, ____localChangeNotifications_6)); }
inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * get__localChangeNotifications_6() const { return ____localChangeNotifications_6; }
inline List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB ** get_address_of__localChangeNotifications_6() { return &____localChangeNotifications_6; }
inline void set__localChangeNotifications_6(List_1_t1ADF451D4F388C3376F9A7121B54405D616DC6EB * value)
{
____localChangeNotifications_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localChangeNotifications_6), (void*)value);
}
};
struct ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields
{
public:
// System.Threading.ExecutionContext System.Threading.ExecutionContext::s_dummyDefaultEC
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___s_dummyDefaultEC_7;
public:
inline static int32_t get_offset_of_s_dummyDefaultEC_7() { return static_cast<int32_t>(offsetof(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_StaticFields, ___s_dummyDefaultEC_7)); }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * get_s_dummyDefaultEC_7() const { return ___s_dummyDefaultEC_7; }
inline ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 ** get_address_of_s_dummyDefaultEC_7() { return &___s_dummyDefaultEC_7; }
inline void set_s_dummyDefaultEC_7(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * value)
{
___s_dummyDefaultEC_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_dummyDefaultEC_7), (void*)value);
}
};
// System.Threading.RegisteredWaitHandle
struct RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Threading.WaitHandle System.Threading.RegisteredWaitHandle::_waitObject
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ____waitObject_1;
// System.Threading.WaitOrTimerCallback System.Threading.RegisteredWaitHandle::_callback
WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ____callback_2;
// System.Object System.Threading.RegisteredWaitHandle::_state
RuntimeObject * ____state_3;
// System.Threading.WaitHandle System.Threading.RegisteredWaitHandle::_finalEvent
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ____finalEvent_4;
// System.Threading.ManualResetEvent System.Threading.RegisteredWaitHandle::_cancelEvent
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ____cancelEvent_5;
// System.TimeSpan System.Threading.RegisteredWaitHandle::_timeout
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ____timeout_6;
// System.Int32 System.Threading.RegisteredWaitHandle::_callsInProcess
int32_t ____callsInProcess_7;
// System.Boolean System.Threading.RegisteredWaitHandle::_executeOnlyOnce
bool ____executeOnlyOnce_8;
// System.Boolean System.Threading.RegisteredWaitHandle::_unregistered
bool ____unregistered_9;
public:
inline static int32_t get_offset_of__waitObject_1() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____waitObject_1)); }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * get__waitObject_1() const { return ____waitObject_1; }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** get_address_of__waitObject_1() { return &____waitObject_1; }
inline void set__waitObject_1(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value)
{
____waitObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____waitObject_1), (void*)value);
}
inline static int32_t get_offset_of__callback_2() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____callback_2)); }
inline WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * get__callback_2() const { return ____callback_2; }
inline WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF ** get_address_of__callback_2() { return &____callback_2; }
inline void set__callback_2(WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * value)
{
____callback_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callback_2), (void*)value);
}
inline static int32_t get_offset_of__state_3() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____state_3)); }
inline RuntimeObject * get__state_3() const { return ____state_3; }
inline RuntimeObject ** get_address_of__state_3() { return &____state_3; }
inline void set__state_3(RuntimeObject * value)
{
____state_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____state_3), (void*)value);
}
inline static int32_t get_offset_of__finalEvent_4() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____finalEvent_4)); }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * get__finalEvent_4() const { return ____finalEvent_4; }
inline WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 ** get_address_of__finalEvent_4() { return &____finalEvent_4; }
inline void set__finalEvent_4(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * value)
{
____finalEvent_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____finalEvent_4), (void*)value);
}
inline static int32_t get_offset_of__cancelEvent_5() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____cancelEvent_5)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get__cancelEvent_5() const { return ____cancelEvent_5; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of__cancelEvent_5() { return &____cancelEvent_5; }
inline void set__cancelEvent_5(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
____cancelEvent_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____cancelEvent_5), (void*)value);
}
inline static int32_t get_offset_of__timeout_6() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____timeout_6)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get__timeout_6() const { return ____timeout_6; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of__timeout_6() { return &____timeout_6; }
inline void set__timeout_6(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
____timeout_6 = value;
}
inline static int32_t get_offset_of__callsInProcess_7() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____callsInProcess_7)); }
inline int32_t get__callsInProcess_7() const { return ____callsInProcess_7; }
inline int32_t* get_address_of__callsInProcess_7() { return &____callsInProcess_7; }
inline void set__callsInProcess_7(int32_t value)
{
____callsInProcess_7 = value;
}
inline static int32_t get_offset_of__executeOnlyOnce_8() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____executeOnlyOnce_8)); }
inline bool get__executeOnlyOnce_8() const { return ____executeOnlyOnce_8; }
inline bool* get_address_of__executeOnlyOnce_8() { return &____executeOnlyOnce_8; }
inline void set__executeOnlyOnce_8(bool value)
{
____executeOnlyOnce_8 = value;
}
inline static int32_t get_offset_of__unregistered_9() { return static_cast<int32_t>(offsetof(RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0, ____unregistered_9)); }
inline bool get__unregistered_9() const { return ____unregistered_9; }
inline bool* get_address_of__unregistered_9() { return &____unregistered_9; }
inline void set__unregistered_9(bool value)
{
____unregistered_9 = value;
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
// 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.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Reflection.MonoMethod
struct MonoMethod_t : public RuntimeMethodInfo_tAA605450647FBADB423FB22832C3432CEEB36E3E
{
public:
// System.IntPtr System.Reflection.MonoMethod::mhandle
intptr_t ___mhandle_0;
// System.String System.Reflection.MonoMethod::name
String_t* ___name_1;
// System.Type System.Reflection.MonoMethod::reftype
Type_t * ___reftype_2;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___mhandle_0)); }
inline intptr_t get_mhandle_0() const { return ___mhandle_0; }
inline intptr_t* get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(intptr_t value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___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_reftype_2() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___reftype_2)); }
inline Type_t * get_reftype_2() const { return ___reftype_2; }
inline Type_t ** get_address_of_reftype_2() { return &___reftype_2; }
inline void set_reftype_2(Type_t * value)
{
___reftype_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reftype_2), (void*)value);
}
};
// System.Reflection.TypeInfo
struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t
{
public:
public:
};
// System.Runtime.Remoting.Contexts.CrossContextDelegate
struct CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F : public MulticastDelegate_t
{
public:
public:
};
// System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate
struct RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 : public MulticastDelegate_t
{
public:
public:
};
// System.Runtime.Remoting.Messaging.HeaderHandler
struct HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F : public MulticastDelegate_t
{
public:
public:
};
// System.Runtime.Remoting.RemotingException
struct RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 : public RuntimeObject
{
public:
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_surrogates
RuntimeObject* ___m_surrogates_0;
// System.Runtime.Serialization.StreamingContext System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_context
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___m_context_1;
// System.Runtime.Serialization.SerializationBinder System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_binder
SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * ___m_binder_2;
// System.Runtime.Serialization.Formatters.FormatterTypeStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_typeFormat
int32_t ___m_typeFormat_3;
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_assemblyFormat
int32_t ___m_assemblyFormat_4;
// System.Runtime.Serialization.Formatters.TypeFilterLevel System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_securityLevel
int32_t ___m_securityLevel_5;
// System.Object[] System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_crossAppDomainArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_crossAppDomainArray_6;
public:
inline static int32_t get_offset_of_m_surrogates_0() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_surrogates_0)); }
inline RuntimeObject* get_m_surrogates_0() const { return ___m_surrogates_0; }
inline RuntimeObject** get_address_of_m_surrogates_0() { return &___m_surrogates_0; }
inline void set_m_surrogates_0(RuntimeObject* value)
{
___m_surrogates_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_surrogates_0), (void*)value);
}
inline static int32_t get_offset_of_m_context_1() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_context_1)); }
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 get_m_context_1() const { return ___m_context_1; }
inline StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * get_address_of_m_context_1() { return &___m_context_1; }
inline void set_m_context_1(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 value)
{
___m_context_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_context_1))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_binder_2() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_binder_2)); }
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * get_m_binder_2() const { return ___m_binder_2; }
inline SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 ** get_address_of_m_binder_2() { return &___m_binder_2; }
inline void set_m_binder_2(SerializationBinder_tB5EBAF328371FB7CF23E37F5984D8412762CFFA4 * value)
{
___m_binder_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_binder_2), (void*)value);
}
inline static int32_t get_offset_of_m_typeFormat_3() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_typeFormat_3)); }
inline int32_t get_m_typeFormat_3() const { return ___m_typeFormat_3; }
inline int32_t* get_address_of_m_typeFormat_3() { return &___m_typeFormat_3; }
inline void set_m_typeFormat_3(int32_t value)
{
___m_typeFormat_3 = value;
}
inline static int32_t get_offset_of_m_assemblyFormat_4() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_assemblyFormat_4)); }
inline int32_t get_m_assemblyFormat_4() const { return ___m_assemblyFormat_4; }
inline int32_t* get_address_of_m_assemblyFormat_4() { return &___m_assemblyFormat_4; }
inline void set_m_assemblyFormat_4(int32_t value)
{
___m_assemblyFormat_4 = value;
}
inline static int32_t get_offset_of_m_securityLevel_5() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_securityLevel_5)); }
inline int32_t get_m_securityLevel_5() const { return ___m_securityLevel_5; }
inline int32_t* get_address_of_m_securityLevel_5() { return &___m_securityLevel_5; }
inline void set_m_securityLevel_5(int32_t value)
{
___m_securityLevel_5 = value;
}
inline static int32_t get_offset_of_m_crossAppDomainArray_6() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0, ___m_crossAppDomainArray_6)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_crossAppDomainArray_6() const { return ___m_crossAppDomainArray_6; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_crossAppDomainArray_6() { return &___m_crossAppDomainArray_6; }
inline void set_m_crossAppDomainArray_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_crossAppDomainArray_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_crossAppDomainArray_6), (void*)value);
}
};
struct BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::typeNameCache
Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * ___typeNameCache_7;
public:
inline static int32_t get_offset_of_typeNameCache_7() { return static_cast<int32_t>(offsetof(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_StaticFields, ___typeNameCache_7)); }
inline Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * get_typeNameCache_7() const { return ___typeNameCache_7; }
inline Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 ** get_address_of_typeNameCache_7() { return &___typeNameCache_7; }
inline void set_typeNameCache_7(Dictionary_2_tDF0B764EEAE1242A344103EC40130E5D891C6934 * value)
{
___typeNameCache_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeNameCache_7), (void*)value);
}
};
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 : public EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98
{
public:
public:
};
// System.Threading.ThreadAbortException
struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Threading.TimerCallback
struct TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.WaitCallback
struct WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.WaitOrTimerCallback
struct WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_17;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_18;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___MemberName_18)); }
inline String_t* get_MemberName_18() const { return ___MemberName_18; }
inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; }
inline void set_MemberName_18(String_t* value)
{
___MemberName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberName_18), (void*)value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___Signature_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Signature_19), (void*)value);
}
};
// System.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);
}
};
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
// System.String System.MissingMethodException::signature
String_t* ___signature_20;
public:
inline static int32_t get_offset_of_signature_20() { return static_cast<int32_t>(offsetof(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498, ___signature_20)); }
inline String_t* get_signature_20() const { return ___signature_20; }
inline String_t** get_address_of_signature_20() { return &___signature_20; }
inline void set_signature_20(String_t* value)
{
___signature_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___signature_20), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Runtime.Remoting.Contexts.IContextProperty[]
struct IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB : 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.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.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.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.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.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.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.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.Decimal[]
struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 m_Items[1];
public:
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 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.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.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.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.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.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.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.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.MethodInfo[]
struct MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B : public RuntimeArray
{
public:
ALIGN_FIELD (8) MethodInfo_t * m_Items[1];
public:
inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodInfo_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, MethodInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
public:
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Runtime.Remoting.Messaging.Header[]
struct HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC : public RuntimeArray
{
public:
ALIGN_FIELD (8) Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C * m_Items[1];
public:
inline Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C ** 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, Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Header_tBB05146C08BE55AC72B8813E862DA50FDFB2417C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Runtime.Remoting.Contexts.IContextAttribute[]
struct IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C : 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);
}
};
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke_back(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled);
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_pinvoke_cleanup(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke_back(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke_cleanup(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled);
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com_back(const WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled, WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6& unmarshaled);
IL2CPP_EXTERN_C void WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshal_com_cleanup(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com_back(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com& marshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled);
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com_cleanup(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_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 AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke_back(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke& marshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled);
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke_cleanup(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_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);
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled);
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com_back(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled);
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com_cleanup(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke(const Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke_back(const Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke_cleanup(Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_pinvoke_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com(const Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com_back(const Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled);
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com_cleanup(Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_back(const MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF& unmarshaled);
IL2CPP_EXTERN_C void MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshal_com_cleanup(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke_back(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke_cleanup(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com_back(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled);
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com_cleanup(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled);
// 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.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.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.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.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.Thread::GetDomainID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547 (const RuntimeMethod* 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.Void System.Runtime.Remoting.Contexts.Context::RegisterContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_RegisterContext_m53A8770324E48E43E00DF56EDD2BDA22C943AD5A (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::ReleaseContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_ReleaseContext_m4DE83172C965BF9676ECED5EC0F62DC7EE29AB97 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalGetDefaultContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalGetDefaultContext_m1E1B382747D7755C1CC3647AEB3F6DD40EDB2B29 (const RuntimeMethod* method);
// T[] System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::ToArray()
inline IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* List_1_ToArray_m18C9FAA850A588E909089F128743DB5C5C22EBA3 (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, const RuntimeMethod* method)
{
return (( IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, const RuntimeMethod*))List_1_ToArray_m801D4DEF3587F60F463F04EEABE5CBE711FE5612_gshared)(__this, method);
}
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::get_HasProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::GetDynamicPropertyCollection(System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39 (ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * ___obj0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, RuntimeObject* ___prop0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::UnregisterDynamicProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.RemotingServices::IsTransparentProxy(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F (RuntimeObject * ___proxy0, const RuntimeMethod* method);
// System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.RemotingServices::GetRealProxy(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD (RuntimeObject * ___proxy0, const RuntimeMethod* method);
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Proxies.RealProxy::get_ObjectIdentity()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::get_ClientDynamicProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * Identity_get_ClientDynamicProperties_m0CCE31D0AA06ECE1BC76B1B214C5DC34C7BBE228 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.DynamicPropertyCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __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.Void System.Runtime.Remoting.Contexts.DynamicPropertyCollection::NotifyMessage(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, bool ___start0, RuntimeObject* ___msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::GetClientContextSinkChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasDynamicSinks_mAC09384B323B65123136996C0E465EA53765A91F (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasGlobalDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35 (const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::GetEnumerator()
inline Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, const RuntimeMethod* method)
{
return (( Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, const RuntimeMethod*))List_1_GetEnumerator_m52CC760E475D226A2B75048D70C4E22692F9F68D_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::get_Current()
inline RuntimeObject* Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_inline (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *, const RuntimeMethod*))Enumerator_get_Current_mD7829C7E8CFBEDD463B15A951CDE9B90A12CC55C_gshared_inline)(__this, 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.Boolean System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::MoveNext()
inline bool Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449 (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *, const RuntimeMethod*))Enumerator_MoveNext_m38B1099DDAD7EEDE2F4CDAB11C095AC784AC2E34_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Runtime.Remoting.Contexts.IContextProperty>::Dispose()
inline void Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *, const RuntimeMethod*))Enumerator_Dispose_m94D0DAE031619503CDA6E53C5C3CC78AF3139472_gshared)(__this, 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.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.Context::get_DefaultContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189 (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.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::.ctor()
inline void List_1__ctor_m39D94023C478714179AA07FDBCF8F75B5BDAD44B (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::Add(T)
inline void List_1_Add_m0C4AFFF9958408ADBD08F110FA8BA8A270DD44A7 (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, RuntimeObject*, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, ___item0, method);
}
// System.String System.String::Concat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ServerContextTerminatorSink::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerContextTerminatorSink__ctor_m058F40A2121D3A40C643802F839F6E28A32C142D (ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Count()
inline int32_t List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_inline (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>::get_Item(System.Int32)
inline RuntimeObject* List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_inline (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline)(__this, ___index0, method);
}
// System.Void System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::.ctor(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextTerminatorSink__ctor_m743A95C4584913C181F34489A99FEC7A35F11AD0 (ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB * __this, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::.ctor(System.MarshalByRefObject,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink__ctor_m2A44CFC4687F4F8698EC87D3ED54980E7B9302AB (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___obj0, bool ___forceInternalExecute1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerObjectTerminatorSink__ctor_m54A7376AB25FC67718DF72AE62573583E0377880 (ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD * __this, RuntimeObject* ___nextSink0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseSink__ctor_m32EF5051C64CBA7BB8131041080485F406CEEBAC (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___nextSink0, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.AppDomain::InternalSetContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * AppDomain_InternalSetContext_m37A1B8EC7FCF4AFF4B98A3ABD62076D3E96A3F43 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context__ctor_mAF138F36380F34582B1EA4F743AB4806257029A3 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.Context::SwitchToContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___newContext0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.ContextCallbackObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallbackObject__ctor_m73176ADB356AE15B3EBF9F662C0CB2841F8EEE2E (ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.ContextCallbackObject::DoCallBack(System.Runtime.Remoting.Contexts.CrossContextDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallbackObject_DoCallBack_m5EC06B4457E8403A14173E35FF423474B92484F5 (ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * __this, CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * ___deleg0, const RuntimeMethod* method);
// System.LocalDataStoreHolder System.LocalDataStoreMgr::CreateLocalDataStore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.LocalDataStore System.LocalDataStoreHolder::get_Store()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * LocalDataStoreHolder_get_Store_m2C6F36680CF6788220C9A3F029576541763FB8B5_inline (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method);
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateDataSlot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.LocalDataStoreSlot System.LocalDataStoreMgr::AllocateNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::FreeNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.LocalDataStoreSlot System.LocalDataStoreMgr::GetNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199 (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.Threading.Thread::get_CurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44 (const RuntimeMethod* method);
// System.LocalDataStore System.Runtime.Remoting.Contexts.Context::get_MyLocalStore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Object System.LocalDataStore::GetData(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5 (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method);
// System.Void System.LocalDataStore::SetData(System.LocalDataStoreSlot,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D (LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * __this, LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, RuntimeObject * ___data1, const RuntimeMethod* method);
// System.Void System.LocalDataStoreMgr::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * __this, const RuntimeMethod* method);
// System.Void System.ContextBoundObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextBoundObject__ctor_m39DB4687A77E8C96932EEDE05C2E804610B24F5A (ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetMessageTargetIdentity(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E (RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.ServerIdentity::get_Context()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyGlobalDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F (bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::GetServerContextSinkChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_GetServerContextSinkChain_m50A40BEC6E5E52CCD2CD63F78C8E39327361D902 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, Exception_t * ___e0, RuntimeObject* ___mcm1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.CrossContextChannel/ContextRestoreSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink,System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextRestoreSink__ctor_m78F6C5349FEDCD1FC0B30E71C1D3E0C516EAAF93 (ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 * __this, RuntimeObject* ___next0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context1, RuntimeObject* ___call2, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Contexts.DynamicPropertyCollection::FindProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject* ___c0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.DynamicPropertyCollection/DynamicPropertyReg::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyReg__ctor_m764A9DB95A522643F9EB6088FEAE462309B9190F (DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ProviderData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData__ctor_m62F7BEE2687705DF69132616A26FC2139AAFB1CF (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Metadata.SoapTypeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapTypeAttribute__ctor_m0864596C6B23265C358BE9B3408A71B3F399F991 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Metadata.SoapFieldAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapFieldAttribute__ctor_m8132378AE95B6B7981DAC2A0B1AB05E85B3453B7 (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Metadata.SoapMethodAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapMethodAttribute__ctor_m69ABE77883D5B9DD0FA3BE21C9FA2250855AA7F2 (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Metadata.SoapParameterAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapParameterAttribute__ctor_mDC782C88646C3237077194DA5BAC9AB6C01BA232 (SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method);
// System.Void System.MarshalByRefObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_LeaseTime()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1_inline (const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_RenewOnCallTime()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218_inline (const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_SponsorshipTimeout()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738_inline (const RuntimeMethod* method);
// System.DateTime System.DateTime::get_UtcNow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1 (const RuntimeMethod* method);
// System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t1, const RuntimeMethod* method);
// System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 DateTime_op_Subtraction_m8005DCC8F0F183AC1335F87A82FDF92926CC5021 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___d21, const RuntimeMethod* method);
// System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t10, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___t21, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::get_CurrentLeaseTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method);
// System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method);
// System.Void System.Collections.Queue::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, RuntimeObject* ___col0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.Lease::CheckNextSponsor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenewalDelegate__ctor_mBF442CBEAA77001CE55E917E44BB815F1E51676F (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.IAsyncResult System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate::BeginInvoke(System.Runtime.Remoting.Lifetime.ILease,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RenewalDelegate_BeginInvoke_mB60A7B40A62704549169506BE4577753A4EEE00F (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject* ___lease0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method);
// System.Void System.Threading.WaitOrTimerCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitOrTimerCallback__ctor_m3F8B82720682E41B16CC030AF8CDD748F882F67F (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Threading.RegisteredWaitHandle System.Threading.ThreadPool::RegisterWaitForSingleObject(System.Threading.WaitHandle,System.Threading.WaitOrTimerCallback,System.Object,System.TimeSpan,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RegisteredWaitHandle_t25AAC0B53C62CFA0B3F9BFFA87DDA3638F4308C0 * ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E (WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * ___waitObject0, WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * ___callBack1, RuntimeObject * ___state2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeout3, bool ___executeOnlyOnce4, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 RenewalDelegate_EndInvoke_m07BD8A9B85074E3C82621D2D6D0B7A1AC1B3DC20 (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject* ___result0, const RuntimeMethod* method);
// System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::Renew(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Lease_Renew_mDA55F829014C2AADE6F4596036C9136E3F843D3A (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___renewalTime0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.Lease::Unregister(System.Runtime.Remoting.Lifetime.ISponsor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_Unregister_mE5A778105D2FB15CFAD0B79B868554C14DBAF8A3 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, RuntimeObject* ___obj0, const RuntimeMethod* method);
// System.Boolean System.Threading.Timer::Change(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Timer_Change_mF2EE1A30C21C82757352489E6D49FF6D38573694 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___dueTime0, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___period1, const RuntimeMethod* method);
// System.Runtime.Remoting.Lifetime.Lease System.Runtime.Remoting.ServerIdentity::get_Lease()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.Lease::Activate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_Activate_mBC7B530CD89DCDCAEE59FEF852E7D22906E64D7A (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::StartManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_StartManager_mCD350DED26FBF47BEC9AC4E3D41B73FABB64215F (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method);
// System.Void System.Threading.TimerCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback__ctor_m6B85BEF2F0E429E5F8E4FA2F527B42247E95A690 (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_LeaseManagerPollTime()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_inline (const RuntimeMethod* method);
// System.Void System.Threading.Timer::.ctor(System.Threading.TimerCallback,System.Object,System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer__ctor_mE731E24B4A4D66AD0A34BF604E904E403A7959CF (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * ___callback0, RuntimeObject * ___state1, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___dueTime2, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___period3, const RuntimeMethod* method);
// System.Void System.Threading.Timer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9 (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.Lease::UpdateState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_UpdateState_m9243B509DA77DF0A15CAE4F256A83F62EEF410E6 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Lifetime.LeaseState System.Runtime.Remoting.Lifetime.Lease::get_CurrentState()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Lease_get_CurrentState_mEA64B32B0420975A794DCD40AC6ADB6C955652C2_inline (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::StopManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_StopManager_m6C1CF4980DBBE8FA4E774B19717A6092A699BAD3 (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseSink::RenewLease(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t10, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___t21, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager__ctor_m4088B4BB6131FE6329D70CD1997D18909E52E004 (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromSeconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromSeconds_mB18CB94089B3DA3B1B059BBE90367A9928AEE5CA (double ___value0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromMinutes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2 (double ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::SetPollTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_SetPollTime_m4FE0D172CD33C4D200D716AF781677381288586B (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeSpan0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::TrackLifetime(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_TrackLifetime_m5B166B91CDDB2E71423DBBC3A0F6DBB39FB887CF (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsByRef()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8 (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.Reflection.ParameterInfo::get_IsOut()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ParameterInfo_get_IsOut_mBD413F046E276BBF88D653EA7A261B221420A464 (ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * __this, const RuntimeMethod* method);
// System.Threading.ExecutionContext System.Threading.ExecutionContext::Capture(System.Threading.StackCrawlMark&,System.Threading.ExecutionContext/CaptureOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2 (int32_t* ___stackMark0, int32_t ___options1, const RuntimeMethod* method);
// System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.WaitCallback::Invoke(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback_Invoke_mB6A858A1792B8E0DE526C3C157624C1A59EEFA16 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * __this, RuntimeObject * ___state0, const RuntimeMethod* method);
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1 (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * __this, bool ___initialState0, const RuntimeMethod* method);
// System.Boolean System.Threading.EventWaitHandle::Set()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_m7959A86A39735296FC949EC86FDA42A6CFAAB94C (EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 * __this, const RuntimeMethod* method);
// System.Void System.AsyncCallback::Invoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncResult_Invoke_mEA3F1D003BE6DB4D31DC83761F0F18F3282D01CA (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method);
// System.Void System.Threading.ContextCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493 (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext_Run_mFF76DDA6501D993EB4A4B79EFDAF1F6476920945 (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * ___executionContext0, ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___callback1, RuntimeObject * ___state2, bool ___preserveSyncCtx3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodRef::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodRef__ctor_m3D6403DEB18F97243C60170212641E97C833512E (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObjectSafe(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObjectSafe_m220962E09CAFCE7A0A2C2760BF573A385DC61F93 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___mem0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMethodRef::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, const RuntimeMethod* method);
// System.Type System.Type::GetType(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A (String_t* ___typeName0, bool ___throwOnError1);
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method);
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::get_InternalDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __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.Boolean System.Type::get_IsPrimitive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A (Type_t * __this, 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.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE (Type_t * __this, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.CADMessageBase::IsPossibleToIgnoreMarshal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CADMessageBase_IsPossibleToIgnoreMarshal_m4D7D2CC00D75417E9768294057FDA46A67297C04 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___Obj0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADObjRef::.ctor(System.Runtime.Remoting.ObjRef,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADObjRef__ctor_m0DCA6A0D8746774AFF35E60349FA5D86D81820A2 (CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * __this, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___o0, int32_t ___sourceDomain1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADArgHolder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADArgHolder__ctor_m4A7DA606129C95794B2370D6871D66C83B3824A0 (CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * __this, int32_t ___i0, const RuntimeMethod* method);
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.ObjRef::DeserializeInTheCurrentDomain(System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ObjRef_DeserializeInTheCurrentDomain_mE66C6F771B2F2A032558CDEC0C775780CAA57C1D (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, int32_t ___domainId0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___tInfo1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::Unmarshal(System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objectRef0, const RuntimeMethod* method);
// System.TypeCode System.Type::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F (Type_t * ___type0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.String System.String::Copy(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Copy_m521EF2A77A1F54EFAB52903A780485ECD171EFA7 (String_t* ___str0, const RuntimeMethod* method);
// System.Int64 System.DateTime::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60 (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, const RuntimeMethod* method);
// System.Void System.DateTime::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, int64_t ___ticks0, const RuntimeMethod* 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.TimeSpan::.ctor(System.Int64)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC (RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArgument(System.Object,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject * ___arg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArgument(System.Object,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject * ___arg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodCallMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodCallMessage__ctor_mA8B6D39FB99F741D7CA9B491281EBE8F23691331 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, RuntimeObject* ___callMsg0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::MarshalProperties(System.Collections.IDictionary,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998 (RuntimeObject* ___dict0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArguments(System.Object[],System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___arguments0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::SaveLogicalCallContext(System.Runtime.Remoting.Messaging.IMethodMessage,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject* ___msg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___serializeList1, const RuntimeMethod* method);
// System.Void System.IO.MemoryStream::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObject(System.IO.MemoryStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObject_m5E2E88AC33CEA6A74DB5DB67846385EE2CE3B978 (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * ___mem0, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArguments(System.Object[],System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___arguments0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args1, const RuntimeMethod* method);
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodRef::GetTypes(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44 (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___typeArray0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07 (Type_t * __this, int32_t ___bindingAttr0, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types2, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers3, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___binder2, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___types3, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___modifiers4, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::op_Inequality(System.Reflection.MethodBase,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::op_Equality(System.Reflection.MethodBase,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method);
// System.Reflection.MethodInfo[] System.Type::GetMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* Type_GetMethods_m50864CCA29AC38E53711C885031DB3793D4C8C60 (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsConstructor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsConstructor_mB9D1652FC7716077DAADB6F5F0F1BE6E7199413C (MethodBase_t * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodReturnMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodReturnMessage__ctor_mEB5A55493B58D60C094D7CEF0A6DC0B195F88D42 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, RuntimeObject* ___retMsg0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMessageBase::GetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, const RuntimeMethod* method);
// System.Type[] System.Runtime.Remoting.Messaging.CADMessageBase::GetSignature(System.Reflection.MethodBase,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* CADMessageBase_GetSignature_m8985787EA84A7BD76C53DAAE2EE9DA757DEC6855 (MethodBase_t * ___methodBase0, bool ___load1, const RuntimeMethod* method);
// System.Byte[] System.Runtime.Remoting.ObjRef::SerializeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, 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.Threading.ExecutionContext System.Threading.Thread::GetMutableExecutionContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72 (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3 (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * __this, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::set_LogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ExecutionContext_set_LogicalCallContext_m325371A914D0CA3A3407D2138B06E16B6DB926B6_inline (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData__ctor_m40E6F13BF6714BF45DD3EA621F9E18598411B530 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::get_LogicalCallID()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_m0A36275A970AF6E1FC5A2A67875A32C048573E00_inline (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::set_LogicalCallID(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_m509E3F1E37E82149EDB396B84A89A2E3ED1D93B4_inline (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextSecurityData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextSecurityData__ctor_mD3F0B4B221F03F9629AD2618B8B5E7635FB4C446 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Activation.ActivationServices::RemoteActivate(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActivationServices_RemoteActivate_m24E9FFCF9CA297628244DC509E99FB4A5830C71C (RuntimeObject* ___ctorCall0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::get_ChannelSink()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ClientContextReplySink::.ctor(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextReplySink__ctor_m3EC73AC52E8C9909560502D6979E5EABB0F4A8BF (ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C * __this, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, RuntimeObject* ___replySink1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_m329402E5B534872AF6C990DB871A294D8D6047F6 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_m7E9902A41698A226E6FF236E851D05BF0152C859 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ConstructionCallDictionary::.ctor(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCallDictionary__ctor_m1A254A0CA2D2A92199639A25FE06703282147E7C (ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * __this, RuntimeObject* ___message0, const RuntimeMethod* method);
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::GetInternalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_GetInternalProperties_mB7970D787D61BDA1B76465969C8702B24591DDD1 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method);
// System.Type System.Type::GetType(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C (String_t* ___typeName0);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::InitMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_InitMethodProperty_m5439959AB074C5CC8DE5CFDF13688FAD95CBF4F3 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_GetObjectData_m89623BAE1207753351E235F93B5870727423327F (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, 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.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodCall_get_Properties_m89E516AEB07D857BCB334491598EDE5809A5624F (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary__ctor_m679873B25EF35750306D2976BC48BD4FE251F2D9 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject* ___message0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::set_MethodKeys(System.String[])
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary::GetMethodProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MessageDictionary_GetMethodProperty_m92F3D0F028D6A1FA220E457A49513E448ACF6D4B (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::SetMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_SetMethodProperty_mB59808702E99D5BA49B77671EB83F78A5864AD58 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Object,System.Object[],System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, RuntimeObject * ___returnValue0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___outArgs1, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx2, RuntimeObject* ___msg3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_mC6EA34E67B5FD04515508D8E869A2676A41F31DA (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, Exception_t * ___e0, RuntimeObject* ___msg1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_m343C795DDD2A47711F8E279DD62685E6F2AC43D7 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodResponse_get_Properties_m4E115130F0C43439A960AC23A9A33F439C99B82A (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnvoyTerminatorSink__ctor_mBEF35269DE49A941352567D9D150DB3D710A8261 (EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.IllogicalCallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IllogicalCallContext__ctor_m9D17628D132A9487505B0D4ECF3FE0DCE540314E (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.IllogicalCallContext::get_HostContext()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * IllogicalCallContext_get_HostContext_m142C53F446A09A12688E1932173BAD218D4A821B_inline (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.IllogicalCallContext::set_HostContext(System.Object)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IllogicalCallContext_set_HostContext_m12BBD230B82D8D2DE0E28E2E9FA6FA46F266AE7E_inline (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.IllogicalCallContext::get_HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IllogicalCallContext_get_HasUserData_mC8FC32C6A8E519F0D8E114B6ACD20B3A7292A874 (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method);
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.IllogicalCallContext::get_Datastore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * IllogicalCallContext_get_Datastore_m1BC3CA62792BE96022B27A0B6C8D70DC1C4EFE0B (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method);
// System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfoEnumerator::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method);
// System.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.Object System.Runtime.Serialization.SerializationInfoEnumerator::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, 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.Collections.Hashtable System.Runtime.Remoting.Messaging.LogicalCallContext::get_Datastore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::SetType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::get_HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CallContextRemotingData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextRemotingData_Clone_m22B610119C2E3A1690E252AB1C3134CA39730230 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CallContextSecurityData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextSecurityData_Clone_m45D64B92B764F05DA33F9D38635F14D1DBCD4720 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.CallContextRemotingData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextRemotingData_get_HasInfo_mBB8996303FBAEE2A3B9C2EE4B51F70AF5D83C40C (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.CallContextSecurityData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextSecurityData_get_HasInfo_m1098BDD0D505D4A6878B3CB42E15DBAE6CBFB720 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext/Reader::.ctor(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Reader__ctor_m484F7B31064D62F858B1860471E05068A4194B7E_inline (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext/Reader::get_IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext/Reader::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Reader_get_HasInfo_m6D6C2FFCC05CF1A0C7387A75A12E0199B479C394 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.LogicalCallContext::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LogicalCallContext_Clone_m923D2DCF2B20C87F8AB53030367D7DF0F623CAE1 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.LogicalCallContext/Reader::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::Add(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_Add_m015064027A6721BD583B7FAC2B1CF75BF809F8E9 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A (String_t* ___s0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::IsOverridenKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_IsOverridenKey_mD305D7E4CA9CA6B25A501B9A828582234FB7F79E (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, const RuntimeMethod* method);
// System.Collections.ICollection System.Runtime.Remoting.Messaging.MessageDictionary::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_get_Values_m6AB0F8B7CC24C6956F1B01B94712A15AE0FC7621 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator::.ctor(System.Runtime.Remoting.Messaging.MessageDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * ___methodDictionary0, const RuntimeMethod* method);
// System.Collections.DictionaryEntry System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator::get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.DictionaryEntry::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Runtime.Serialization.SerializationEntry System.Runtime.Serialization.SerializationInfoEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA SerializationInfoEnumerator_get_Current_m8C18D86105BD6390B0FB268A1C1E8151D8AF3C33 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationEntry::get_Name()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SerializationEntry_get_Name_m364D6CAEAD32EE66700B47B65E80C03D80596DC4_inline (SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.SerializationEntry::get_Value()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * SerializationEntry_get_Value_m6E7295904D91A38BFE2C47C662E75E8063ABC048_inline (SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_Uri()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CADMethodCallMessage_get_Uri_m15EEB5FEBEF308CC593B7EFFD2480E2C2E393B1E_inline (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * CADMethodCallMessage_GetArguments_m439B2118804E94D73DDDB17290603428C3D000A0 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMethodCallMessage_GetArgs_mD48812F959652364E7516C67D4A9BB271EB66ED8 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CADMessageBase::GetLogicalCallContext(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_PropertiesCount()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CADMethodCallMessage_get_PropertiesCount_mC293969177A5F92BFDBA4DF33985FAB6B80303A3_inline (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalProperties(System.Collections.IDictionary,System.Int32,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00 (RuntimeObject* ___dict0, int32_t ___count1, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::ResolveMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MCMDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21 (MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * __this, RuntimeObject* ___message0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodCall::get_Uri()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* MethodCall_get_Uri_m37614C649332CE054E21D0C43F427A9B010DB14E_inline (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::set_Uri(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MethodCall_set_Uri_mD2C68895B8A44372C4D9F5DB32F3A3536762A468_inline (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.RemotingServices::GetServerTypeForUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RemotingServices_GetServerTypeForUri_mDDC9FFB5DF59680CBC9DE30BB94E6AC9FA0FAD72 (String_t* ___URI0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.Messaging.MethodCall::CastTo(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MethodCall_CastTo_m6C8099061AD0228ABCD6F13AB9CFB3BDA66C206A (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___clientType0, Type_t * ___serverType1, 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.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetMethodBaseFromName(System.Type,System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872 (Type_t * ___type0, String_t* ___methodName1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___signature2, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, 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.Boolean System.Type::get_IsInterface()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetVirtualMethod(System.Type,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395 (Type_t * ___type0, MethodBase_t * ___method1, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetMethodBaseFromMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58 (RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodCall::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_get_TypeName_m50A7D32F1E357AF082B36B8101ACE546FA220DC4 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::get_GenericArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* MethodCall_get_GenericArguments_mCED9844490BEB3CE9865C7E144EE8E242BC6550E (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodCall::GetTypeNameFromAssemblyQualifiedName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_GetTypeNameFromAssemblyQualifiedName_m398DEE37D2859D0F6AA0369B0C92F2875583DAD0 (String_t* ___aqname0, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B (String_t* __this, String_t* ___value0, 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.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodCall::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * MethodCall_get_MethodBase_m1534082D2E7951BB4EDFD63767116C46FB5600C5 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * CADMethodReturnMessage_GetArguments_mDBC49529C7A1827E77267AD5697D8E3BEA1D561A (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, const RuntimeMethod* method);
// System.Exception System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetException(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * CADMethodReturnMessage_GetException_mD7E1261D3ABCF6432AF69C671940511C9D8C47D4 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetReturnValue(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMethodReturnMessage_GetReturnValue_m80FC97EA8DEE9B873A46DCF94588BB66CF3D613C (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMethodReturnMessage_GetArgs_m2FF58140F17FED157937B52541805B215DFF2B03 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodReturnMessage::get_PropertiesCount()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CADMethodReturnMessage_get_PropertiesCount_mDCAC8C0CD1B4EB2D10BA2F38486790B5AE2F4B9A_inline (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::InitMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_InitMethodProperty_m995C7A77C1C912B90C8F94BE3B4FBF4EE0638F9C (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_MethodName_m218892BD8D055E745DA318FD0E90310DFEF04757 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_TypeName_mC75D4224153ECF53328118A728D121D9208A925D (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodResponse::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * MethodResponse_get_MethodBase_m90DC4DEE74C2F6593B17DA3BFDA6DF6BAE8620C2 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ArgInfo::.ctor(System.Reflection.MethodBase,System.Runtime.Remoting.Messaging.ArgInfoType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A (ArgInfo_t67419B6DE53980148631C33DF785307579134942 * __this, MethodBase_t * ___method0, uint8_t ___type1, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.ArgInfo::GetInOutArgs(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6 (ArgInfo_t67419B6DE53980148631C33DF785307579134942 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodReturnDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A (MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * __this, RuntimeObject* ___message0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_Uri_mEAA6EC22168E484A36E811A8C9B21ABD68F715DA (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::set_Uri(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MethodResponse_set_Uri_m6A8681536CBB05AF2F4BD8FFC7A136E8E7003CDC_inline (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::InitMessage(System.Reflection.MonoMethod,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, MonoMethod_t * ___method0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___out_args1, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE (Type_t * __this, String_t* ___name0, 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.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.Reflection.MethodInfo System.Runtime.Remoting.Messaging.MonoMethodMessage::GetMethodInfo(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9 (Type_t * ___type0, String_t* ___methodName1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::.ctor(System.Reflection.MethodInfo,System.Object[],System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, MethodInfo_t * ___minfo0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___in_args1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___out_args2, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.CallType System.Runtime.Remoting.Messaging.MonoMethodMessage::get_CallType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Messaging.MonoMethodMessage::get_OutArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoMethodMessage_get_OutArgCount_mED628DAB0DD4F53E07153932EDE4C5F198F0B553 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.RemotingServices::IsOneWay(System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_IsOneWay_m7D017D4D9C29D18ED118BF475128D98B44B092BA (MethodBase_t * ___method0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510 (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, 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.Void System.Runtime.Remoting.RemotingServices::GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F (RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context2, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsMarshalByRef()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsMarshalByRef_mE12C8300F5A8BB91C6319CE71994EA3D1563C465 (Type_t * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ObjRefSurrogate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRefSurrogate__ctor_m70F2BA92B4ABC33214BB76CE69A51738B3D49FE6 (ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.RemotingSurrogate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogate__ctor_m29BEBC27986C9C65567B05BEA373C697774B5F8A (RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::get_Uri()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ReturnMessage_get_Uri_m3591EF63BD17A684921801695437DD4E15367C7E_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::set_Uri(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ReturnMessage_set_Uri_mCA6CBC9645665E22ED5E5E67FDA14B72D6F5CDB9_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ReturnMessage::get_MethodBase()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodBase_t * ReturnMessage_get_MethodBase_m7D3748540C2572738F4B0AFC940DC88D5F11DD20_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Activation.ActivationServices::CreateInstanceFromMessage(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActivationServices_CreateInstanceFromMessage_m316F6AA883460A4E1032CDC7E840AC995568BE1F (RuntimeObject* ___ctorCall0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::NotifyServerDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Identity::get_HasServerDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Identity_get_HasServerDynamicSinks_m69FD18B9C80973FF0375BFDB46647B2DD8664BB6 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ServerObjectReplySink::.ctor(System.Runtime.Remoting.ServerIdentity,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerObjectReplySink__ctor_m120671D0D04E406158696C0C11EA4B0520064109 (ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, RuntimeObject* ___replySink1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::CheckParameters(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMethodReturnMessage System.Runtime.Remoting.RemotingServices::InternalExecuteMessage(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___target0, RuntimeObject* ___reqMsg1, const RuntimeMethod* method);
// System.Boolean System.Threading.ThreadPool::QueueUserWorkItem(System.Threading.WaitCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItem_mF344DA7B44CDBE8C7163C1539D429F27E8553185 (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___callBack0, RuntimeObject * ___state1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::ExecuteAsyncMessage(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink_ExecuteAsyncMessage_m78BFD4AEE1F41531BED3452E01E5629BBA3D96F3 (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject * ___ob0, 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.Runtime.Remoting.Metadata.SoapAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1 (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * __this, 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.String System.Runtime.Remoting.SoapServices::GetXmlNamespaceForMethodResponse(System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapServices_GetXmlNamespaceForMethodResponse_m868F2E6F50D18120AEB71E048E5362E04FC66F06 (MethodBase_t * ___mb0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.SoapServices::GetXmlNamespaceForMethodCall(System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapServices_GetXmlNamespaceForMethodCall_m4A1C57780FBF810E42A16512D811A98C569C6316 (MethodBase_t * ___mb0, const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.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.Runtime.Remoting.SoapServices::CodeXmlNamespaceForClrTypeNamespace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapServices_CodeXmlNamespaceForClrTypeNamespace_mCF0E7A4181BF6EB8B45D9D550E286BD3F04A6B7C (String_t* ___typeNamespace0, String_t* ___assemblyName1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ObjRef::UpdateChannelInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_UpdateChannelInfo_mEB7A54FF066B8232DFDEFBBA8E255F4C0FCCF927 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.CrossAppDomainData::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossAppDomainData__ctor_mED632CE830A7710F3470E3DDE7D53B2AA321BF47 (CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE * __this, int32_t ___domainId0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ChannelInfo::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelInfo__ctor_mC8541D235044C39D26804C9BDC13745F59CC35BE (ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * __this, RuntimeObject * ___remoteChannelData0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ObjRef::.ctor(System.String,System.Runtime.Remoting.IChannelInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_mF39AA7DFDDDD477AC65118E2A7158EB6A09AF874 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, String_t* ___uri0, RuntimeObject* ___cinfo1, 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.Runtime.Remoting.TypeInfo::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeInfo__ctor_mC74EC4DBA656D6170C8060154E5F48156C3FDDA5 (TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mCF1152AF4138C1DD7A16643B22EE69A38373EF86 (RuntimeObject * ___value0, 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.Remoting.ChannelInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelInfo__ctor_m5779A75A2FEC132451B997410250729FB599156A (ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::.ctor(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy__ctor_mED470C821B287EAA284FAA263E1C1A98A84001C7 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Type_t * ___type0, String_t* ___activationUrl1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes2, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::GetProxyForRemoteObject(System.Runtime.Remoting.ObjRef,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objref0, Type_t * ___classToProxy1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type,System.IntPtr,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, intptr_t ___stub1, RuntimeObject * ___stubData2, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.Proxies.RealProxy::InternalGetProxyType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RealProxy_InternalGetProxyType_mE285E2D2DA5C90E676069DCF1189CE0E7D813185 (RuntimeObject * ___transparentProxy0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::set_LogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MonoMethodMessage_set_LogicalCallContext_mC537D5CD5A24D556624216727BF10D33FB318A3F_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___value0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.AsyncResult System.Runtime.Remoting.Messaging.MonoMethodMessage::get_AsyncResult()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::set_CallMessage(System.Runtime.Remoting.Messaging.MonoMethodMessage)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncResult_set_CallMessage_mAD854B93251BE37936DCE2234D88E9C00E7C2E8D_inline (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___value0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::EndInvoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_EndInvoke_mDF00A1546A469ECD9D9C93D4D01194F2BDCE2DCE (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MonoMethodMessage::get_MethodBase()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodBase_t * MonoMethodMessage_get_MethodBase_mD737855945B1C91D1E0C871472A53EAE73E349E8_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RemotingProxy::ActivateRemoteObject(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingProxy_ActivateRemoteObject_m2E16792316E2D090112FC732D608E078A322624B (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, RuntimeObject* ___request0, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.Proxies.RealProxy::GetProxiedType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall__ctor_m28DEE5DCDF1F838D6468F5EE0705962BD3C8A73C (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::.ctor(System.Object,System.Object[],System.Int32,System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, RuntimeObject * ___ret0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___outArgs1, int32_t ___outArgsCount2, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx3, RuntimeObject* ___mcm4, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::Merge(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___lc0, const RuntimeMethod* method);
// System.Exception System.Exception::FixRemotingException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2 (Exception_t * __this, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Proxies.RealProxy::ProcessResponse(System.Runtime.Remoting.Messaging.IMethodReturnMessage,System.Runtime.Remoting.Messaging.MonoMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA (RuntimeObject* ___mrm0, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___call1, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.MonoMethodMessage System.Runtime.Remoting.Messaging.AsyncResult::get_CallMessage()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * AsyncResult_get_CallMessage_m2FD4E7BE9C85D209372C98075BFA603C2CCE577C_inline (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetIdentityForUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980 (String_t* ___uri0, const RuntimeMethod* method);
// System.MarshalByRefObject System.Runtime.Remoting.ClientActivatedIdentity::GetServerObject()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * __this, 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.Boolean System.Runtime.Remoting.Messaging.MonoMethodMessage::NeedsOutProcessing(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoMethodMessage_NeedsOutProcessing_m91A820AC440989C58838EF714F839047DFE42012 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, int32_t* ___outCount0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.MonoMethodMessage::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoMethodMessage_GetArg_m529CCF8B626A5886D79B001AB600BCB09FBE410F (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, int32_t ___arg_num0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.RemotingServices::UpdateOutArgObject(System.Reflection.ParameterInfo,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_UpdateOutArgObject_m43E068A1FAB184AFEF32C91629393EC6556939D1 (ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * ___pi0, RuntimeObject * ___local1, RuntimeObject * ___remote2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type,System.Runtime.Remoting.ClientIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mD39E8A57474D97AB39E0C852DE4B3551B8D26BC6 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * ___identity1, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.ClientIdentity::get_TargetUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ClientIdentity_get_TargetUri_mFD169AEDB67445C13B5ECD7A09F83DF586B078DF (ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mEB28493534C3DF9ECC276A2CBDEB55A985065A1E (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.ConstructionCall System.Runtime.Remoting.Activation.ActivationServices::CreateConstructionCall(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * ActivationServices_CreateConstructionCall_mD7B2C98949E01190FC05667B20AB34CCC19566EF (Type_t * ___type0, String_t* ___activationUrl1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::NotifyClientDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_NotifyClientDynamicSinks_mA8E001AFED507D772A749CBD00679FA8F4AEC590 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasExitSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasExitSinks_m4F058AE201A183546F6A26122345BE7657EB43A1 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RealProxy::AttachServer(System.MarshalByRefObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RealProxy_AttachServer_mC9D2A70E80B2050BD2653E7247B05E673A0DD6CF_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___s0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ClientActivatedIdentity::SetClientProxy(System.MarshalByRefObject)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ClientActivatedIdentity_SetClientProxy_m19D6E3E55E17496B9810A34B5CAAF37B0DD575AD_inline (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___obj0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ClientIdentity::set_ClientProxy(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientIdentity_set_ClientProxy_m5FFB0857E02412C0C7AE4EBB04B1A93DB9DEF477 (ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___value0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Identity::get_ObjectUri()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::get_EnvoySink()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_EnvoySink_m3C9ABB6C826A976FB6B2CD7DC4CEB343AD284D84_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ConstructionResponse::.ctor(System.Object,System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionResponse__ctor_mEC3264294B069F837780553769DDFD82E612DFB3 (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * __this, RuntimeObject * ___resultObject0, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx1, RuntimeObject* ___msg2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodCall::CopyFrom(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_CopyFrom_mBDC7054B8D0E6BF7049D1402D4A96132EAC9B07B (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, RuntimeObject* ___call0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Activation.ActivationServices::Activate(System.Runtime.Remoting.Proxies.RemotingProxy,System.Runtime.Remoting.Messaging.ConstructionCall)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActivationServices_Activate_m16B879DA0C080FBAFF9486FBA01AB38310A64023 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * ___proxy0, ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * ___ctorCall1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.ObjRef::get_IsReferenceToWellKnow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices::DisposeIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___ident0, const RuntimeMethod* method);
// Mono.RuntimeClassHandle Mono.RuntimeRemoteClassHandle::get_ProxyClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 RuntimeRemoteClassHandle_get_ProxyClass_m849BC826C890A4A9BCB330D0E25BDD7907E7C685 (RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 * __this, const RuntimeMethod* method);
// System.RuntimeTypeHandle Mono.RuntimeClassHandle::GetTypeHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D RuntimeClassHandle_GetTypeHandle_m790F200983BE3D4F3B5979773C05801F9948219B (RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 * __this, const RuntimeMethod* method);
// System.RuntimeType System.Runtime.Remoting.Proxies.TransparentProxy::GetProxyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * TransparentProxy_GetProxyType_m850D00301C1E81BF83C9907795A13138425A52AA (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsContextful()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Proxies.TransparentProxy::get_IsContextBoundObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransparentProxy_get_IsContextBoundObject_m91709F803207B39CFF47F08C022EFC3B6082344E (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Proxies.TransparentProxy::get_TargetContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * TransparentProxy_get_TargetContext_mBE0230BC1A4B94BEF05C25A71604C27DBFC6C610 (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method);
// System.Void Mono.RuntimeClassHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeClassHandle__ctor_m46F68F9440F32F597CF0EF63B99796481A0F2089 (RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 * __this, intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.RuntimeFieldHandle::.ctor(System.IntPtr)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RuntimeFieldHandle__ctor_m0F5089DB23BC2C4CB780462950561A777E9480F1_inline (RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF * __this, intptr_t ___v0, const RuntimeMethod* method);
// System.Reflection.FieldInfo System.Reflection.FieldInfo::GetFieldFromHandle(System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FieldInfo_t * FieldInfo_GetFieldFromHandle_m4559B3EB75D60B9573FF47FB04F91F4752F1EDD6 (RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___handle0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Proxies.TransparentProxy::InCurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransparentProxy_InCurrentContext_m299CE6FA0687B1BCFE870067D6AF59827A51E52C (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __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.Void System.MissingMethodException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingMethodException__ctor_mEE8869A7C1042B1286DCD4D91DA67BF0D06E0452 (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * __this, String_t* ___className0, String_t* ___methodName1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Proxies.RealProxy::PrivateInvoke(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging.IMessage,System.Exception&,System.Object[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * ___rp0, RuntimeObject* ___msg1, Exception_t ** ___exc2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___out_args3, const RuntimeMethod* method);
// System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41 (FieldInfo_t * __this, RuntimeObject * ___obj0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.String System.AppDomain::GetProcessGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AppDomain_GetProcessGuid_mDAFFFAF5716D58A3C645D6033AD2F8FF95BE4315 (const RuntimeMethod* method);
// System.Void Mono.Xml.SmallXmlParser::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2 (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, const RuntimeMethod* method);
// System.String System.Environment::GetMachineConfigPath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C (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.Void System.Runtime.Remoting.ConfigHandler::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler__ctor_m182C33AA3BB7C99E7F18B62109A3B6B0C1507B68 (ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 * __this, bool ___onlyDelayedChannels0, const RuntimeMethod* method);
// System.Void Mono.Xml.SmallXmlParser::Parse(System.IO.TextReader,Mono.Xml.SmallXmlParser/IContentHandler)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * __this, TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___input0, RuntimeObject* ___handler1, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.ActivatedClientTypeEntry::get_ObjectType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Activation.ActivationServices::EnableProxyActivation(System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActivationServices_EnableProxyActivation_mB73834AA6794ABC779FE998B936A453602DEE853 (Type_t * ___type0, bool ___enable1, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.ActivatedServiceTypeEntry::get_ObjectType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ActivatedServiceTypeEntry_get_ObjectType_mD7930FD39E47012C78199EACBDBF177AD2B2DA9C_inline (ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * __this, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.WellKnownClientTypeEntry::get_ObjectType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.WellKnownServiceTypeEntry::get_ObjectUri()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* WellKnownServiceTypeEntry_get_ObjectUri_m57AA90363CFBE85146EEE8BB6C92FEB574E3DF06_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.WellKnownServiceTypeEntry::get_ObjectType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * WellKnownServiceTypeEntry_get_ObjectType_m66AB374A118C20B231AB450938D67776EF7D6EED_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.WellKnownObjectMode System.Runtime.Remoting.WellKnownServiceTypeEntry::get_Mode()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t WellKnownServiceTypeEntry_get_Mode_m2BF9E3CAB114FC05F1C871200E9F2BB6D88C4A71_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.ServerIdentity System.Runtime.Remoting.RemotingServices::CreateWellKnownServerIdentity(System.Type,System.String,System.Runtime.Remoting.WellKnownObjectMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9 (Type_t * ___objectType0, String_t* ___objectUri1, int32_t ___mode2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ChannelData::CopyFrom(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelData_CopyFrom_m0FE56D30FD896CF3272D35EC62A1704A2AAD07FA (ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * __this, ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * ___other0, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ServerProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ChannelData_get_ServerProviders_m07638833DD2E4A585ED187459F1674F12A86B095 (ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ProviderData::CopyFrom(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2 (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * __this, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * ___other0, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ClientProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ChannelData_get_ClientProviders_m7B4372E5AE3B6B3A1CE89C1B7AD15B3039457DCF (ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannelConfig(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannelConfig_mF580859D60B70A2AB298063C6176DC6F52EF3001 (ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * ___channel0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterActivatedClientType(System.Runtime.Remoting.ActivatedClientTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419 (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * ___entry0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterActivatedServiceType(System.Runtime.Remoting.ActivatedServiceTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterActivatedServiceType_mD8320F66EB153FFE3B7EDAEB0A986F51B78C46E5 (ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * ___entry0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterWellKnownClientType(System.Runtime.Remoting.WellKnownClientTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9 (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * ___entry0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterWellKnownServiceType(System.Runtime.Remoting.WellKnownServiceTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterWellKnownServiceType_m90D68C6F1968E3E71D9B99725F625FE545E8574E (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * ___entry0, const RuntimeMethod* method);
// System.String System.String::ToLower()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m5287204D93C9DDC4DF84581ADD756D0FDE2BA5A8 (String_t* __this, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mEB9049B75DE1D23B0515DD294BEF0AAC7792F465 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, 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.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.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.Runtime.Remoting.Messaging.RemotingSurrogateSelector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogateSelector__ctor_m5AEC278659397A63359757387A07AD305F8BE6B7 (RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.StreamingContext::.ctor(System.Runtime.Serialization.StreamingContextStates,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamingContext__ctor_mFDE6C04F21FF60F9832C30FF1B8C59258C02BF52 (StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 * __this, int32_t ___state0, RuntimeObject * ___additional1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::.ctor(System.Runtime.Serialization.ISurrogateSelector,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter__ctor_m89DA9542D935A5F3272C49D26984E68FEF2D8713 (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, RuntimeObject* ___selector0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::set_AssemblyFormat(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BinaryFormatter_set_AssemblyFormat_m7D82B2B610F97286886BAB761B98E6655056E8F7_inline (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices::RegisterInternalChannels()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_RegisterInternalChannels_m69A4E09D5E4777709530898636AC7EBA8032949F (const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CallContext::SetLogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * CallContext_SetLogicalCallContext_mAAF68FB2E7EC13678AE3D25BF7E771D7F4016C16 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::InternalExecute(System.Reflection.MethodBase,System.Object,System.Object[],System.Object[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_InternalExecute_mD700E602BFBA6EEFE57A94CCF0C2737FF4199EDA (MethodBase_t * ___method0, RuntimeObject * ___obj1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___out_args3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ObjRef::.ctor(System.Type,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, Type_t * ___type0, String_t* ___url1, RuntimeObject * ___remoteChannelData2, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::GetRemoteObject(System.Runtime.Remoting.ObjRef,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef0, Type_t * ___proxyType1, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.ServerIdentity::get_ObjectType()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ServerIdentity_get_ObjectType_mB93B782F357A4AFBFE6E8A7C0668F5D0CB7FDAC2_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::Unmarshal(System.Runtime.Remoting.ObjRef,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Unmarshal_mE12395241E45DC5F1BDCE371E275C7F3A207BCE9 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objectRef0, bool ___fRefine1, const RuntimeMethod* method);
// System.Type System.Runtime.Remoting.ObjRef::get_ServerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ObjRef_get_ServerType_m8461364BA216148B25DBB1AD68FAF0AA3E8EEED6 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Services.TrackingServices::NotifyUnmarshaledObject(System.Object,System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingServices_NotifyUnmarshaledObject_mF4DFEB56D2DF9B17E685B09D20FBC92B9A3B965C (RuntimeObject * ___obj0, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___or1, const RuntimeMethod* method);
// System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method);
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___Obj0, String_t* ___ObjURI1, Type_t * ___RequestedType2, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Identity::get_IsConnected()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Identity_get_IsConnected_m71FF39D6BAD417D698A5C306473747EDB090D12A (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.RemotingServices::NewUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD (const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::set_ObjectUri(System.String)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_ObjectUri_mE4630E3F65B2A6E9DA60D830975549031A9EA3B8_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices::RegisterServerIdentity(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91 (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ServerIdentity::StartTrackingLifetime(System.Runtime.Remoting.Lifetime.ILease)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerIdentity_StartTrackingLifetime_m42193F67CABCFAC75C1652D2AE84930FBAEEC43C (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, RuntimeObject* ___lease0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Services.TrackingServices::NotifyMarshaledObject(System.Object,System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrackingServices_NotifyMarshaledObject_mE3F8569E9629CEE1DA2A4B1AB995172FF98668EC (RuntimeObject * ___obj0, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___or1, const RuntimeMethod* method);
// System.Runtime.Remoting.ServerIdentity System.MarshalByRefObject::get_ObjectIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.ClientActivatedIdentity System.Runtime.Remoting.RemotingServices::CreateClientActivatedServerIdentity(System.MarshalByRefObject,System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___realObject0, Type_t * ___objectType1, String_t* ___objectUri2, const RuntimeMethod* method);
// System.Guid System.Guid::NewGuid()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29 (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.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9 (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method);
// System.Int32 System.Environment::get_TickCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C (const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::FindInterfaceMethod(System.Type,System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E (Type_t * ___type0, String_t* ___methodName1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___signature2, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.IContextAttribute[] System.Runtime.Remoting.ActivatedClientTypeEntry::get_ContextAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C* ActivatedClientTypeEntry_get_ContextAttributes_mA5710320FE91061287463310937310EBEEB00D4B (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.ActivatedClientTypeEntry::get_ApplicationUrl()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ActivatedClientTypeEntry_get_ApplicationUrl_m2C321054A0F16A35E987049E8EABB90211B3FEAA_inline (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::CreateClientProxy(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61 (Type_t * ___objectType0, String_t* ___url1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes2, const RuntimeMethod* method);
// System.Boolean System.String::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mE4F039DCC2A9FCB8C1ED2D04B00A35E3CE16DE99 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.RemotingServices::GetClientChannelSinkChain(System.String,System.Object,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB (String_t* ___url0, RuntimeObject * ___channelData1, String_t** ___objectUri2, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.WellKnownClientTypeEntry::get_ObjectUrl()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* WellKnownClientTypeEntry_get_ObjectUrl_m75F4EAF368F72E3EB71585945ECF1856341F3170_inline (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::Connect(System.Type,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Connect_mF20992AE1A78BC91FE90567919DA07F490A7A279 (Type_t * ___classToProxy0, String_t* ___url1, RuntimeObject * ___data2, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.RemotingServices::GetNormalizedUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929 (String_t* ___uri0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.RemotingServices::RemoveAppNameFromUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_RemoveAppNameFromUri_m06AD452F0027AEAB9FF9AAE81184B6DE37879130 (String_t* ___uri0, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.RemotingConfiguration::get_ApplicationName()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806_inline (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.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.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.MarshalByRefObject System.Runtime.Remoting.ClientIdentity::get_ClientProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ClientIdentity_get_ClientProxy_m00F8EE713C5435F8E61F7E27E8446EB6889E480F (ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ClientIdentity::.ctor(System.String,System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientIdentity__ctor_m531CCE2CFB19665D380646C6B87F8E7FE02760A2 (ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * __this, String_t* ___objectUri0, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::set_ChannelSink(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_ChannelSink_m83E9ABAA9D885C2687D9F94732BB08EFF7831118_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::.ctor(System.Type,System.Runtime.Remoting.ClientIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy__ctor_m28C32984A3C53F1E73B93E4DBA94861A91BD2BD5 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Type_t * ___type0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * ___identity1, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Channels.CrossAppDomainSink::get_TargetDomainId()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CrossAppDomainSink_get_TargetDomainId_m3AE0C1B8D43C8B746173F5C3F669CBA4F8616E2C_inline (CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Proxies.RealProxy::SetTargetDomain(System.Int32)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RealProxy_SetTargetDomain_mB7310C47D68D6C382A90B1C1872A6C1ECC0165D6_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, int32_t ___domainId0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.ChannelServices::CreateClientChannelSinkChain(System.String,System.Object,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CreateClientChannelSinkChain_mF3D74C368900D701AD0CECC73C0D53DE060942A4 (String_t* ___url0, RuntimeObject * ___remoteChannelData1, String_t** ___objectUri2, 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.Void System.Runtime.Remoting.ClientActivatedIdentity::.ctor(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientActivatedIdentity__ctor_mDD73F17C3071617E002404B442A8F29CA5555909 (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * __this, String_t* ___objectUri0, Type_t * ___objectType1, const RuntimeMethod* method);
// System.Runtime.Remoting.Contexts.CrossContextChannel System.Runtime.Remoting.Channels.ChannelServices::get_CrossContextChannel()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * ChannelServices_get_CrossContextChannel_mC44A705B5F28920BC7740D453812154206294153_inline (const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ServerIdentity::AttachServerObject(System.MarshalByRefObject,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerIdentity_AttachServerObject_mDAF46A8A96123B31091CEDBAA0070BE01226F7DD (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___serverObject0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SingleCallIdentity::.ctor(System.String,System.Runtime.Remoting.Contexts.Context,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleCallIdentity__ctor_m4B0D7D93CC9617660664172436323EF610FFC0D1 (SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083 * __this, String_t* ___objectUri0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context1, Type_t * ___objectType2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SingletonIdentity::.ctor(System.String,System.Runtime.Remoting.Contexts.Context,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingletonIdentity__ctor_m40742B79B36568EEEEF86558C348DDB254AA40CC (SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5 * __this, String_t* ___objectUri0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context1, Type_t * ___objectType2, const RuntimeMethod* method);
// System.Runtime.Remoting.ClientIdentity System.Runtime.Remoting.RemotingServices::GetOrCreateClientIdentity(System.Runtime.Remoting.ObjRef,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * RemotingServices_GetOrCreateClientIdentity_m06ABE462740B7DD4B1C078A6F8A92E7694A1998D (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef0, Type_t * ___proxyType1, RuntimeObject ** ___clientProxy2, const RuntimeMethod* method);
// System.Threading.ExecutionContext/Reader System.Threading.Thread::GetExecutionContextReader()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B Thread_GetExecutionContextReader_m94A554E99BC4602CE1703DFBA4C96373208D1A4B (Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext/Reader System.Threading.ExecutionContext/Reader::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 Reader_get_LogicalCallContext_m2ED53FE369B9E3B722607F004EC392320C97D56D (Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices/CACD::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CACD__ctor_mB97157ADE90FFB1C40E799D3FB015157C823D745 (CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A * __this, const RuntimeMethod* method);
// System.Void System.IO.MemoryStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m9D0F92C76EFEDA651B678A98EB693FD945286DC2 (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Serialize(System.IO.Stream,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter_Serialize_mBA2FB6DB94D34F42E14DF7D788056FCF0CF41D52 (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___serializationStream0, RuntimeObject * ___graph1, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Deserialize(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * BinaryFormatter_Deserialize_m20A831B13DF5C3F031F2141730291630A16A32AD (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___serializationStream0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.CrossAppDomainChannel::RegisterCrossAppDomainChannel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossAppDomainChannel_RegisterCrossAppDomainChannel_m9AF7B2D169F1E6F604713DB74B1BF6E3D4D1D7C6 (const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Identity::get_Disposed()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Identity_get_Disposed_m57B594F2F3A3FCCA0BFBF1AF65FE102A133DA137_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::set_Disposed(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_Disposed_m28D1BF11148E67DEE2AC2BD5681D4909DB6CC8CD_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550 (const RuntimeMethod* method);
#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.Runtime.Remoting.Contexts.Context
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke(const Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled)
{
Exception_t* ___server_context_sink_chain_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'server_context_sink_chain' of type 'Context': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___server_context_sink_chain_6Exception, NULL);
}
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke_back(const Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled)
{
Exception_t* ___server_context_sink_chain_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'server_context_sink_chain' of type 'Context': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___server_context_sink_chain_6Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Contexts.Context
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_pinvoke_cleanup(Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Contexts.Context
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com(const Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled)
{
Exception_t* ___server_context_sink_chain_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'server_context_sink_chain' of type 'Context': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___server_context_sink_chain_6Exception, NULL);
}
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com_back(const Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled, Context_tE86AB6B3D9759C8E715184808579EFE761683724& unmarshaled)
{
Exception_t* ___server_context_sink_chain_6Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'server_context_sink_chain' of type 'Context': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___server_context_sink_chain_6Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Contexts.Context
IL2CPP_EXTERN_C void Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshal_com_cleanup(Context_tE86AB6B3D9759C8E715184808579EFE761683724_marshaled_com& marshaled)
{
}
// System.Void System.Runtime.Remoting.Contexts.Context::RegisterContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_RegisterContext_m53A8770324E48E43E00DF56EDD2BDA22C943AD5A (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method)
{
typedef void (*Context_RegisterContext_m53A8770324E48E43E00DF56EDD2BDA22C943AD5A_ftn) (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *);
using namespace il2cpp::icalls;
((Context_RegisterContext_m53A8770324E48E43E00DF56EDD2BDA22C943AD5A_ftn)mscorlib::System::Runtime::Remoting::Contexts::Context::RegisterContext) (___ctx0);
}
// System.Void System.Runtime.Remoting.Contexts.Context::ReleaseContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_ReleaseContext_m4DE83172C965BF9676ECED5EC0F62DC7EE29AB97 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method)
{
typedef void (*Context_ReleaseContext_m4DE83172C965BF9676ECED5EC0F62DC7EE29AB97_ftn) (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *);
using namespace il2cpp::icalls;
((Context_ReleaseContext_m4DE83172C965BF9676ECED5EC0F62DC7EE29AB97_ftn)mscorlib::System::Runtime::Remoting::Contexts::Context::ReleaseContext) (___ctx0);
}
// System.Void System.Runtime.Remoting.Contexts.Context::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context__ctor_mAF138F36380F34582B1EA4F743AB4806257029A3 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context__ctor_mAF138F36380F34582B1EA4F743AB4806257029A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547(/*hidden argument*/NULL);
__this->set_domain_id_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
int32_t L_1 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_address_of_global_count_9()), /*hidden argument*/NULL);
__this->set_context_id_1(L_1);
Context_RegisterContext_m53A8770324E48E43E00DF56EDD2BDA22C943AD5A(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_Finalize_mB1CDF6B5E9AEC929352D0225929A174A12BE9340 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_Finalize_mB1CDF6B5E9AEC929352D0225929A174A12BE9340_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_ReleaseContext_m4DE83172C965BF9676ECED5EC0F62DC7EE29AB97(__this, /*hidden argument*/NULL);
IL2CPP_LEAVE(0xF, FINALLY_0008);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0008;
}
FINALLY_0008:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(8)
} // end finally (depth: 1)
IL2CPP_CLEANUP(8)
{
IL2CPP_JUMP_TBL(0xF, IL_000f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_000f:
{
return;
}
}
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.Context::get_DefaultContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189 (const RuntimeMethod* method)
{
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = AppDomain_InternalGetDefaultContext_m1E1B382747D7755C1CC3647AEB3F6DD40EDB2B29(/*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Runtime.Remoting.Contexts.Context::get_ContextID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Context_get_ContextID_m8461FF6BCC5C57D9015F6F42D67A814A613ABBA6 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_context_id_1();
return L_0;
}
}
// System.Runtime.Remoting.Contexts.IContextProperty[] System.Runtime.Remoting.Contexts.Context::get_ContextProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* Context_get_ContextProperties_m644534786462094D646FC59BD200D347F0ECE560 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_get_ContextProperties_m644534786462094D646FC59BD200D347F0ECE560_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_0 = __this->get_context_properties_8();
if (L_0)
{
goto IL_000f;
}
}
{
IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* L_1 = (IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB*)(IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB*)SZArrayNew(IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB_il2cpp_TypeInfo_var, (uint32_t)0);
return L_1;
}
IL_000f:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_2 = __this->get_context_properties_8();
NullCheck(L_2);
IContextPropertyU5BU5D_tFBBEED74F171FF63A1A119A5035D80F21E3F19CB* L_3 = List_1_ToArray_m18C9FAA850A588E909089F128743DB5C5C22EBA3(L_2, /*hidden argument*/List_1_ToArray_m18C9FAA850A588E909089F128743DB5C5C22EBA3_RuntimeMethod_var);
return L_3;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_IsDefaultContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_IsDefaultContext_m4A88393FE7394FD1CFFEF7DD01C2E062E94EB040 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_context_id_1();
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_NeedsContextSink()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_NeedsContextSink_m87D439FC7478E73CD069A510E641F23EF6B575CC (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_get_NeedsContextSink_m87D439FC7478E73CD069A510E641F23EF6B575CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_context_id_1();
if (L_0)
{
goto IL_0031;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
if (!L_1)
{
goto IL_001b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_2 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
NullCheck(L_2);
bool L_3 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0031;
}
}
IL_001b:
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_4 = __this->get_context_dynamic_properties_13();
if (!L_4)
{
goto IL_002f;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_5 = __this->get_context_dynamic_properties_13();
NullCheck(L_5);
bool L_6 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_5, /*hidden argument*/NULL);
return L_6;
}
IL_002f:
{
return (bool)0;
}
IL_0031:
{
return (bool)1;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_RegisterDynamicProperty_m3EF2DCB7EF2D4A318C33503A1CB608C3391DED30 (RuntimeObject* ___prop0, ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * ___obj1, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_RegisterDynamicProperty_m3EF2DCB7EF2D4A318C33503A1CB608C3391DED30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_0 = ___obj1;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = ___ctx2;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_2 = Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39(L_0, L_1, /*hidden argument*/NULL);
RuntimeObject* L_3 = ___prop0;
NullCheck(L_2);
bool L_4 = DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96(L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::UnregisterDynamicProperty(System.String,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_UnregisterDynamicProperty_mB141BFF85AF99F8B7AFC2826A6E8BF48690D2A74 (String_t* ___name0, ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * ___obj1, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_UnregisterDynamicProperty_mB141BFF85AF99F8B7AFC2826A6E8BF48690D2A74_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_0 = ___obj1;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = ___ctx2;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_2 = Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39(L_0, L_1, /*hidden argument*/NULL);
String_t* L_3 = ___name0;
NullCheck(L_2);
bool L_4 = DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18(L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::GetDynamicPropertyCollection(System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39 (ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * ___obj0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = ___ctx1;
if (L_0)
{
goto IL_0025;
}
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_1 = ___obj0;
if (!L_1)
{
goto IL_0025;
}
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_2 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_3 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001f;
}
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_4 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_5 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_6 = RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline(L_5, /*hidden argument*/NULL);
NullCheck(L_6);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_7 = Identity_get_ClientDynamicProperties_m0CCE31D0AA06ECE1BC76B1B214C5DC34C7BBE228(L_6, /*hidden argument*/NULL);
return L_7;
}
IL_001f:
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_8 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39_RuntimeMethod_var);
}
IL_0025:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_9 = ___ctx1;
if (!L_9)
{
goto IL_0045;
}
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_10 = ___obj0;
if (L_10)
{
goto IL_0045;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_11 = ___ctx1;
NullCheck(L_11);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_12 = L_11->get_context_dynamic_properties_13();
if (L_12)
{
goto IL_003e;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_13 = ___ctx1;
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_14 = (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C *)il2cpp_codegen_object_new(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C_il2cpp_TypeInfo_var);
DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809(L_14, /*hidden argument*/NULL);
NullCheck(L_13);
L_13->set_context_dynamic_properties_13(L_14);
}
IL_003e:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_15 = ___ctx1;
NullCheck(L_15);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_16 = L_15->get_context_dynamic_properties_13();
return L_16;
}
IL_0045:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_17 = ___ctx1;
if (L_17)
{
goto IL_0062;
}
}
{
ContextBoundObject_tB24722752964E8FCEB9E1E4F6707FA88DFA0DFF0 * L_18 = ___obj0;
if (L_18)
{
goto IL_0062;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_19 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
if (L_19)
{
goto IL_005c;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_20 = (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C *)il2cpp_codegen_object_new(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C_il2cpp_TypeInfo_var);
DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809(L_20, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->set_global_dynamic_properties_12(L_20);
}
IL_005c:
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_21 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
return L_21;
}
IL_0062:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_22 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_22, _stringLiteral71EBC45A99149FABA869857D89F16B45445EA8ED, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, Context_GetDynamicPropertyCollection_m87ADE069A88C32DAD6DEDA5F32EA36783D9DBF39_RuntimeMethod_var);
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyGlobalDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F (bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
if (!L_0)
{
goto IL_0021;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0021;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_3 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
bool L_4 = ___start0;
RuntimeObject* L_5 = ___req_msg1;
bool L_6 = ___client_site2;
bool L_7 = ___async3;
NullCheck(L_3);
DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1(L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0021:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasGlobalDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
if (!L_0)
{
goto IL_0012;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_global_dynamic_properties_12();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0012:
{
return (bool)0;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method)
{
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get_context_dynamic_properties_13();
if (!L_0)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = __this->get_context_dynamic_properties_13();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_3 = __this->get_context_dynamic_properties_13();
bool L_4 = ___start0;
RuntimeObject* L_5 = ___req_msg1;
bool L_6 = ___client_site2;
bool L_7 = ___async3;
NullCheck(L_3);
DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1(L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0025:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasDynamicSinks_mAC09384B323B65123136996C0E465EA53765A91F (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get_context_dynamic_properties_13();
if (!L_0)
{
goto IL_0014;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = __this->get_context_dynamic_properties_13();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasExitSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasExitSinks_m4F058AE201A183546F6A26122345BE7657EB43A1 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_get_HasExitSinks_m4F058AE201A183546F6A26122345BE7657EB43A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051(__this, /*hidden argument*/NULL);
if (!((ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB *)IsInstClass((RuntimeObject*)L_0, ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB_il2cpp_TypeInfo_var)))
{
goto IL_001b;
}
}
{
bool L_1 = Context_get_HasDynamicSinks_mAC09384B323B65123136996C0E465EA53765A91F(__this, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
bool L_2 = Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35(/*hidden argument*/NULL);
return L_2;
}
IL_001b:
{
return (bool)1;
}
}
// System.Runtime.Remoting.Contexts.IContextProperty System.Runtime.Remoting.Contexts.Context::GetProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_GetProperty_m991B509328882BC3BE4EA2F2020665CC2DEAC0C9 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_GetProperty_m991B509328882BC3BE4EA2F2020665CC2DEAC0C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_0 = __this->get_context_properties_8();
if (L_0)
{
goto IL_000a;
}
}
{
return (RuntimeObject*)NULL;
}
IL_000a:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_1 = __this->get_context_properties_8();
NullCheck(L_1);
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 L_2 = List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC(L_1, /*hidden argument*/List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC_RuntimeMethod_var);
V_0 = L_2;
}
IL_0016:
try
{ // begin try (depth: 1)
{
goto IL_0032;
}
IL_0018:
{
RuntimeObject* L_3 = Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_inline((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_RuntimeMethod_var);
V_1 = L_3;
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
String_t* L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Contexts.IContextProperty::get_Name() */, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var, L_4);
String_t* L_6 = ___name0;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0032;
}
}
IL_002e:
{
RuntimeObject* L_8 = V_1;
V_2 = L_8;
IL2CPP_LEAVE(0x4D, FINALLY_003d);
}
IL_0032:
{
bool L_9 = Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449_RuntimeMethod_var);
if (L_9)
{
goto IL_0018;
}
}
IL_003b:
{
IL2CPP_LEAVE(0x4B, FINALLY_003d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003d;
}
FINALLY_003d:
{ // begin finally (depth: 1)
Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C_RuntimeMethod_var);
IL2CPP_END_FINALLY(61)
} // end finally (depth: 1)
IL2CPP_CLEANUP(61)
{
IL2CPP_JUMP_TBL(0x4D, IL_004d)
IL2CPP_JUMP_TBL(0x4B, IL_004b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004b:
{
return (RuntimeObject*)NULL;
}
IL_004d:
{
RuntimeObject* L_10 = V_2;
return L_10;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::SetProperty(System.Runtime.Remoting.Contexts.IContextProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, RuntimeObject* ___prop0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___prop0;
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, _stringLiteralFA4EA1B5B5C1077DC1CE2C6F8189A488228480ED, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0_RuntimeMethod_var);
}
IL_000e:
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189(/*hidden argument*/NULL);
if ((!(((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)__this) == ((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_2))))
{
goto IL_0021;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_3 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_3, _stringLiteralF6BFB4BB1E8BB268BF4184A1A38F419E2B7BCBD3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Context_SetProperty_mD0157F800AA6EA23C9DC3EE13C088377F342F5B0_RuntimeMethod_var);
}
IL_0021:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_4 = __this->get_context_properties_8();
if (L_4)
{
goto IL_0034;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_5 = (List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D *)il2cpp_codegen_object_new(List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D_il2cpp_TypeInfo_var);
List_1__ctor_m39D94023C478714179AA07FDBCF8F75B5BDAD44B(L_5, /*hidden argument*/List_1__ctor_m39D94023C478714179AA07FDBCF8F75B5BDAD44B_RuntimeMethod_var);
__this->set_context_properties_8(L_5);
}
IL_0034:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_6 = __this->get_context_properties_8();
RuntimeObject* L_7 = ___prop0;
NullCheck(L_6);
List_1_Add_m0C4AFFF9958408ADBD08F110FA8BA8A270DD44A7(L_6, L_7, /*hidden argument*/List_1_Add_m0C4AFFF9958408ADBD08F110FA8BA8A270DD44A7_RuntimeMethod_var);
return;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::Freeze()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_Freeze_mCA2526FFB25B5005253EA8E8DEB8345FF2A798A9 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_Freeze_mCA2526FFB25B5005253EA8E8DEB8345FF2A798A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 V_0;
memset((&V_0), 0, sizeof(V_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);
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_0 = __this->get_context_properties_8();
if (!L_0)
{
goto IL_003c;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_1 = __this->get_context_properties_8();
NullCheck(L_1);
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 L_2 = List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC(L_1, /*hidden argument*/List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC_RuntimeMethod_var);
V_0 = L_2;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_0023;
}
IL_0016:
{
RuntimeObject* L_3 = Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_inline((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_RuntimeMethod_var);
NullCheck(L_3);
InterfaceActionInvoker1< Context_tE86AB6B3D9759C8E715184808579EFE761683724 * >::Invoke(1 /* System.Void System.Runtime.Remoting.Contexts.IContextProperty::Freeze(System.Runtime.Remoting.Contexts.Context) */, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var, L_3, __this);
}
IL_0023:
{
bool L_4 = Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449_RuntimeMethod_var);
if (L_4)
{
goto IL_0016;
}
}
IL_002c:
{
IL2CPP_LEAVE(0x3C, FINALLY_002e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002e;
}
FINALLY_002e:
{ // begin finally (depth: 1)
Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C_RuntimeMethod_var);
IL2CPP_END_FINALLY(46)
} // end finally (depth: 1)
IL2CPP_CLEANUP(46)
{
IL2CPP_JUMP_TBL(0x3C, IL_003c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003c:
{
return;
}
}
// System.String System.Runtime.Remoting.Contexts.Context::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Context_ToString_mDA84EBC853B32233677C1ADB2761084680649E08 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_ToString_mDA84EBC853B32233677C1ADB2761084680649E08_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_context_id_1();
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_1);
String_t* L_3 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(_stringLiteral967099FDC06D0F7EBC032D6C004F9E779A07CF57, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::GetServerContextSinkChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_GetServerContextSinkChain_m50A40BEC6E5E52CCD2CD63F78C8E39327361D902 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_GetServerContextSinkChain_m50A40BEC6E5E52CCD2CD63F78C8E39327361D902_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject* V_1 = NULL;
{
RuntimeObject* L_0 = __this->get_server_context_sink_chain_6();
if (L_0)
{
goto IL_006b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
RuntimeObject* L_1 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_default_server_context_sink_5();
if (L_1)
{
goto IL_0019;
}
}
{
ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 * L_2 = (ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 *)il2cpp_codegen_object_new(ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0_il2cpp_TypeInfo_var);
ServerContextTerminatorSink__ctor_m058F40A2121D3A40C643802F839F6E28A32C142D(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->set_default_server_context_sink_5(L_2);
}
IL_0019:
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get_default_server_context_sink_5();
__this->set_server_context_sink_chain_6(L_3);
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_4 = __this->get_context_properties_8();
if (!L_4)
{
goto IL_006b;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_5 = __this->get_context_properties_8();
NullCheck(L_5);
int32_t L_6 = List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_inline(L_5, /*hidden argument*/List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_RuntimeMethod_var);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1));
goto IL_0067;
}
IL_003c:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_7 = __this->get_context_properties_8();
int32_t L_8 = V_0;
NullCheck(L_7);
RuntimeObject* L_9 = List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_RuntimeMethod_var);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IContributeServerContextSink_t36D9256ED2C07E350009A8633130645D3FD55A4B_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_1;
if (!L_10)
{
goto IL_0063;
}
}
{
RuntimeObject* L_11 = V_1;
RuntimeObject* L_12 = __this->get_server_context_sink_chain_6();
NullCheck(L_11);
RuntimeObject* L_13 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.IContributeServerContextSink::GetServerContextSink(System.Runtime.Remoting.Messaging.IMessageSink) */, IContributeServerContextSink_t36D9256ED2C07E350009A8633130645D3FD55A4B_il2cpp_TypeInfo_var, L_11, L_12);
__this->set_server_context_sink_chain_6(L_13);
}
IL_0063:
{
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
}
IL_0067:
{
int32_t L_15 = V_0;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_003c;
}
}
IL_006b:
{
RuntimeObject* L_16 = __this->get_server_context_sink_chain_6();
return L_16;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::GetClientContextSinkChain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject* 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);
{
RuntimeObject* L_0 = __this->get_client_context_sink_chain_7();
if (L_0)
{
goto IL_0065;
}
}
{
ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB * L_1 = (ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB *)il2cpp_codegen_object_new(ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB_il2cpp_TypeInfo_var);
ClientContextTerminatorSink__ctor_m743A95C4584913C181F34489A99FEC7A35F11AD0(L_1, __this, /*hidden argument*/NULL);
__this->set_client_context_sink_chain_7(L_1);
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_2 = __this->get_context_properties_8();
if (!L_2)
{
goto IL_0065;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_3 = __this->get_context_properties_8();
NullCheck(L_3);
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 L_4 = List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC(L_3, /*hidden argument*/List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC_RuntimeMethod_var);
V_0 = L_4;
}
IL_0028:
try
{ // begin try (depth: 1)
{
goto IL_004c;
}
IL_002a:
{
RuntimeObject* L_5 = Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_inline((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_RuntimeMethod_var);
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IContributeClientContextSink_tD2FDF822E8DE6FFEAAF9CEEE8D3BC738267AB408_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_1;
if (!L_6)
{
goto IL_004c;
}
}
IL_003a:
{
RuntimeObject* L_7 = V_1;
RuntimeObject* L_8 = __this->get_client_context_sink_chain_7();
NullCheck(L_7);
RuntimeObject* L_9 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.IContributeClientContextSink::GetClientContextSink(System.Runtime.Remoting.Messaging.IMessageSink) */, IContributeClientContextSink_tD2FDF822E8DE6FFEAAF9CEEE8D3BC738267AB408_il2cpp_TypeInfo_var, L_7, L_8);
__this->set_client_context_sink_chain_7(L_9);
}
IL_004c:
{
bool L_10 = Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449_RuntimeMethod_var);
if (L_10)
{
goto IL_002a;
}
}
IL_0055:
{
IL2CPP_LEAVE(0x65, FINALLY_0057);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0057;
}
FINALLY_0057:
{ // begin finally (depth: 1)
Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_0), /*hidden argument*/Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C_RuntimeMethod_var);
IL2CPP_END_FINALLY(87)
} // end finally (depth: 1)
IL2CPP_CLEANUP(87)
{
IL2CPP_JUMP_TBL(0x65, IL_0065)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0065:
{
RuntimeObject* L_11 = __this->get_client_context_sink_chain_7();
return L_11;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::CreateServerObjectSinkChain(System.MarshalByRefObject,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_CreateServerObjectSinkChain_m6923378542152C208060176D6C466905C1AE7B25 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___obj0, bool ___forceInternalExecute1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_CreateServerObjectSinkChain_m6923378542152C208060176D6C466905C1AE7B25_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___obj0;
bool L_1 = ___forceInternalExecute1;
StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * L_2 = (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 *)il2cpp_codegen_object_new(StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897_il2cpp_TypeInfo_var);
StackBuilderSink__ctor_m2A44CFC4687F4F8698EC87D3ED54980E7B9302AB(L_2, L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
RuntimeObject* L_3 = V_0;
ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD * L_4 = (ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD *)il2cpp_codegen_object_new(ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD_il2cpp_TypeInfo_var);
ServerObjectTerminatorSink__ctor_m54A7376AB25FC67718DF72AE62573583E0377880(L_4, L_3, /*hidden argument*/NULL);
V_0 = L_4;
RuntimeObject* L_5 = V_0;
LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * L_6 = (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 *)il2cpp_codegen_object_new(LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0_il2cpp_TypeInfo_var);
LeaseSink__ctor_m32EF5051C64CBA7BB8131041080485F406CEEBAC(L_6, L_5, /*hidden argument*/NULL);
V_0 = L_6;
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_7 = __this->get_context_properties_8();
if (!L_7)
{
goto IL_0054;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_8 = __this->get_context_properties_8();
NullCheck(L_8);
int32_t L_9 = List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_inline(L_8, /*hidden argument*/List_1_get_Count_m9BE9338F151BCFD7928A54F9EC1B50BA2C6455FE_RuntimeMethod_var);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
goto IL_0050;
}
IL_002e:
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_10 = __this->get_context_properties_8();
int32_t L_11 = V_1;
NullCheck(L_10);
RuntimeObject* L_12 = List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_inline(L_10, L_11, /*hidden argument*/List_1_get_Item_m072A084F4736F385CC4878F7C0E57B33A91BC25D_RuntimeMethod_var);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IContributeObjectSink_t9EBF2882BE76CE70E53BF0DBC22310F47F52644E_il2cpp_TypeInfo_var));
RuntimeObject* L_13 = V_2;
if (!L_13)
{
goto IL_004c;
}
}
{
RuntimeObject* L_14 = V_2;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_15 = ___obj0;
RuntimeObject* L_16 = V_0;
NullCheck(L_14);
RuntimeObject* L_17 = InterfaceFuncInvoker2< RuntimeObject*, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.IContributeObjectSink::GetObjectSink(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMessageSink) */, IContributeObjectSink_t9EBF2882BE76CE70E53BF0DBC22310F47F52644E_il2cpp_TypeInfo_var, L_14, L_15, L_16);
V_0 = L_17;
}
IL_004c:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
IL_0050:
{
int32_t L_19 = V_1;
if ((((int32_t)L_19) >= ((int32_t)0)))
{
goto IL_002e;
}
}
IL_0054:
{
RuntimeObject* L_20 = V_0;
return L_20;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::CreateEnvoySink(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_CreateEnvoySink_mDAB32FB13E9205D9EE9CD4996779A51C6B46BC09 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___serverObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_CreateEnvoySink_mDAB32FB13E9205D9EE9CD4996779A51C6B46BC09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_il2cpp_TypeInfo_var);
EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * L_0 = ((EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_StaticFields*)il2cpp_codegen_static_fields_for(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_il2cpp_TypeInfo_var))->get_Instance_0();
V_0 = L_0;
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_1 = __this->get_context_properties_8();
if (!L_1)
{
goto IL_004e;
}
}
{
List_1_t2E9E934268E3583A1050C7A03B1647E77B57672D * L_2 = __this->get_context_properties_8();
NullCheck(L_2);
Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 L_3 = List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC(L_2, /*hidden argument*/List_1_GetEnumerator_m4FFBB046A2CF72B7BCC38407F0CCCD70399C56EC_RuntimeMethod_var);
V_1 = L_3;
}
IL_001a:
try
{ // begin try (depth: 1)
{
goto IL_0035;
}
IL_001c:
{
RuntimeObject* L_4 = Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_inline((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_1), /*hidden argument*/Enumerator_get_Current_mC2867EF3B339DEFC411FF240645BFFF5B306ABA6_RuntimeMethod_var);
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IContributeEnvoySink_tA10E4EC3942D2871B006A519489F2D637D760964_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_2;
if (!L_5)
{
goto IL_0035;
}
}
IL_002c:
{
RuntimeObject* L_6 = V_2;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_7 = ___serverObject0;
RuntimeObject* L_8 = V_0;
NullCheck(L_6);
RuntimeObject* L_9 = InterfaceFuncInvoker2< RuntimeObject*, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.IContributeEnvoySink::GetEnvoySink(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMessageSink) */, IContributeEnvoySink_tA10E4EC3942D2871B006A519489F2D637D760964_il2cpp_TypeInfo_var, L_6, L_7, L_8);
V_0 = L_9;
}
IL_0035:
{
bool L_10 = Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_mE783E3617D4032BED4A545C3B3EB1528076BA449_RuntimeMethod_var);
if (L_10)
{
goto IL_001c;
}
}
IL_003e:
{
IL2CPP_LEAVE(0x4E, FINALLY_0040);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0040;
}
FINALLY_0040:
{ // begin finally (depth: 1)
Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C((Enumerator_t325D17010597AC6F36BB11A1C47B1D1E62FEB163 *)(&V_1), /*hidden argument*/Enumerator_Dispose_mD2D360F5A9247358C6722D56B7B37FC33EA6229C_RuntimeMethod_var);
IL2CPP_END_FINALLY(64)
} // end finally (depth: 1)
IL2CPP_CLEANUP(64)
{
IL2CPP_JUMP_TBL(0x4E, IL_004e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004e:
{
RuntimeObject* L_11 = V_0;
return L_11;
}
}
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.Context::SwitchToContext(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567 (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___newContext0, const RuntimeMethod* method)
{
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = ___newContext0;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = AppDomain_InternalSetContext_m37A1B8EC7FCF4AFF4B98A3ABD62076D3E96A3F43(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Contexts.Context::CreateNewContext(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * Context_CreateNewContext_m8CB05DBC233D7CF7F723CADB93DA4BD3632E325B (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_CreateNewContext_m8CB05DBC233D7CF7F723CADB93DA4BD3632E325B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)il2cpp_codegen_object_new(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context__ctor_mAF138F36380F34582B1EA4F743AB4806257029A3(L_0, /*hidden argument*/NULL);
V_0 = L_0;
RuntimeObject* L_1 = ___msg0;
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Collections.IList System.Runtime.Remoting.Activation.IConstructionCallMessage::get_ContextProperties() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, L_1);
NullCheck(L_2);
RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_2);
V_1 = L_3;
}
IL_0012:
try
{ // begin try (depth: 1)
{
goto IL_0035;
}
IL_0014:
{
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_5, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var));
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_6 = V_0;
RuntimeObject* L_7 = V_2;
NullCheck(L_7);
String_t* L_8 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Contexts.IContextProperty::get_Name() */, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var, L_7);
NullCheck(L_6);
RuntimeObject* L_9 = VirtFuncInvoker1< RuntimeObject*, String_t* >::Invoke(6 /* System.Runtime.Remoting.Contexts.IContextProperty System.Runtime.Remoting.Contexts.Context::GetProperty(System.String) */, L_6, L_8);
if (L_9)
{
goto IL_0035;
}
}
IL_002e:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_10 = V_0;
RuntimeObject* L_11 = V_2;
NullCheck(L_10);
VirtActionInvoker1< RuntimeObject* >::Invoke(7 /* System.Void System.Runtime.Remoting.Contexts.Context::SetProperty(System.Runtime.Remoting.Contexts.IContextProperty) */, L_10, L_11);
}
IL_0035:
{
RuntimeObject* L_12 = V_1;
NullCheck(L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_12);
if (L_13)
{
goto IL_0014;
}
}
IL_003d:
{
IL2CPP_LEAVE(0x50, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
RuntimeObject* L_14 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_14, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_15 = V_3;
if (!L_15)
{
goto IL_004f;
}
}
IL_0049:
{
RuntimeObject* L_16 = V_3;
NullCheck(L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_16);
}
IL_004f:
{
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x50, IL_0050)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0050:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_17 = V_0;
NullCheck(L_17);
VirtActionInvoker0::Invoke(8 /* System.Void System.Runtime.Remoting.Contexts.Context::Freeze() */, L_17);
RuntimeObject* L_18 = ___msg0;
NullCheck(L_18);
RuntimeObject* L_19 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Collections.IList System.Runtime.Remoting.Activation.IConstructionCallMessage::get_ContextProperties() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, L_18);
NullCheck(L_19);
RuntimeObject* L_20 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_19);
V_1 = L_20;
}
IL_0062:
try
{ // begin try (depth: 1)
{
goto IL_0082;
}
IL_0064:
{
RuntimeObject* L_21 = V_1;
NullCheck(L_21);
RuntimeObject * L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_21);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_23 = V_0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_22, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var)));
bool L_24 = InterfaceFuncInvoker1< bool, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * >::Invoke(2 /* System.Boolean System.Runtime.Remoting.Contexts.IContextProperty::IsNewContextOK(System.Runtime.Remoting.Contexts.Context) */, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_22, IContextProperty_t837256B8E5BA4AE87C47552FE990D460A3818311_il2cpp_TypeInfo_var)), L_23);
if (L_24)
{
goto IL_0082;
}
}
IL_0077:
{
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_25 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_25, _stringLiteralA375D72FEDD8B0C358E309FCD44457A7600155F5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, Context_CreateNewContext_m8CB05DBC233D7CF7F723CADB93DA4BD3632E325B_RuntimeMethod_var);
}
IL_0082:
{
RuntimeObject* L_26 = V_1;
NullCheck(L_26);
bool L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_0064;
}
}
IL_008a:
{
IL2CPP_LEAVE(0x9D, FINALLY_008c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008c;
}
FINALLY_008c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_28 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_28, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_29 = V_3;
if (!L_29)
{
goto IL_009c;
}
}
IL_0096:
{
RuntimeObject* L_30 = V_3;
NullCheck(L_30);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_30);
}
IL_009c:
{
IL2CPP_END_FINALLY(140)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(140)
{
IL2CPP_JUMP_TBL(0x9D, IL_009d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009d:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_31 = V_0;
return L_31;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::DoCallBack(System.Runtime.Remoting.Contexts.CrossContextDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_DoCallBack_mE91932592028ADCE6B7C003AC188855E25A723FB (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * ___deleg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_DoCallBack_mE91932592028ADCE6B7C003AC188855E25A723FB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * 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);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * L_1 = __this->get_callback_object_14();
if (L_1)
{
goto IL_002b;
}
}
IL_0014:
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(__this, /*hidden argument*/NULL);
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * L_3 = (ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 *)il2cpp_codegen_object_new(ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0_il2cpp_TypeInfo_var);
ContextCallbackObject__ctor_m73176ADB356AE15B3EBF9F662C0CB2841F8EEE2E(L_3, /*hidden argument*/NULL);
__this->set_callback_object_14(L_3);
Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_2, /*hidden argument*/NULL);
}
IL_002b:
{
IL2CPP_LEAVE(0x37, FINALLY_002d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002d;
}
FINALLY_002d:
{ // begin finally (depth: 1)
{
bool L_4 = V_1;
if (!L_4)
{
goto IL_0036;
}
}
IL_0030:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_5 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_5, /*hidden argument*/NULL);
}
IL_0036:
{
IL2CPP_END_FINALLY(45)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(45)
{
IL2CPP_JUMP_TBL(0x37, IL_0037)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0037:
{
ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * L_6 = __this->get_callback_object_14();
CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * L_7 = ___deleg0;
NullCheck(L_6);
ContextCallbackObject_DoCallBack_m5EC06B4457E8403A14173E35FF423474B92484F5(L_6, L_7, /*hidden argument*/NULL);
return;
}
}
// System.LocalDataStore System.Runtime.Remoting.Contexts.Context::get_MyLocalStore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D (Context_tE86AB6B3D9759C8E715184808579EFE761683724 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * 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);
{
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_0 = __this->get__localDataStore_10();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0042;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_1 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
V_0 = L_1;
V_1 = (bool)0;
}
IL_0012:
try
{ // begin try (depth: 1)
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_3 = __this->get__localDataStore_10();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_0036;
}
}
IL_0024:
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_4 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
NullCheck(L_4);
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_5 = LocalDataStoreMgr_CreateLocalDataStore_m5455FCABE10BCFC739E52A0EF6404FF033E93417(L_4, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
__this->set__localDataStore_10(L_5);
}
IL_0036:
{
IL2CPP_LEAVE(0x42, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
{
bool L_6 = V_1;
if (!L_6)
{
goto IL_0041;
}
}
IL_003b:
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_7 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
}
IL_0041:
{
IL2CPP_END_FINALLY(56)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_JUMP_TBL(0x42, IL_0042)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0042:
{
LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * L_8 = __this->get__localDataStore_10();
il2cpp_codegen_memory_barrier();
NullCheck(L_8);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_9 = LocalDataStoreHolder_get_Store_m2C6F36680CF6788220C9A3F029576541763FB8B5_inline(L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.LocalDataStoreSlot System.Runtime.Remoting.Contexts.Context::AllocateDataSlot()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * Context_AllocateDataSlot_m291E142E57D6190094E17F213C9DDAE7141318C8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_AllocateDataSlot_m291E142E57D6190094E17F213C9DDAE7141318C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
NullCheck(L_0);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_1 = LocalDataStoreMgr_AllocateDataSlot_m879EF0F47F1E07F1B0F905EB2F964E875CF7E036(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.LocalDataStoreSlot System.Runtime.Remoting.Contexts.Context::AllocateNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * Context_AllocateNamedDataSlot_m608AF50CFDEB39E022D12C9728BE0F69FB3F3B6C (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_AllocateNamedDataSlot_m608AF50CFDEB39E022D12C9728BE0F69FB3F3B6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
String_t* L_1 = ___name0;
NullCheck(L_0);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = LocalDataStoreMgr_AllocateNamedDataSlot_mAD7738795BC4FF13631C2993592F6256FC309FF2(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::FreeNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_FreeNamedDataSlot_m722B6FFD3FD85A9582B05CB868D0AC0D723CEB62 (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_FreeNamedDataSlot_m722B6FFD3FD85A9582B05CB868D0AC0D723CEB62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
String_t* L_1 = ___name0;
NullCheck(L_0);
LocalDataStoreMgr_FreeNamedDataSlot_mBCCD17FD544CEA1AA4777AE367B20DA4F8F3C03D(L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.LocalDataStoreSlot System.Runtime.Remoting.Contexts.Context::GetNamedDataSlot(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * Context_GetNamedDataSlot_m657624F3E8381E909219E2F4B95618440AA0522B (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context_GetNamedDataSlot_m657624F3E8381E909219E2F4B95618440AA0522B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = ((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->get__localDataStoreMgr_11();
String_t* L_1 = ___name0;
NullCheck(L_0);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = LocalDataStoreMgr_GetNamedDataSlot_m71CB7DDCB5F93DBE1DDBCD5FCE756083E50CF199(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Runtime.Remoting.Contexts.Context::GetData(System.LocalDataStoreSlot)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Context_GetData_mCC8BDA4A566D3FBF15EBE815070CDD859D20D9D1 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, const RuntimeMethod* method)
{
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D(L_0, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
NullCheck(L_1);
RuntimeObject * L_3 = LocalDataStore_GetData_mEC1E4E690BDC29818205F9CF24910AA543F0EFF5(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::SetData(System.LocalDataStoreSlot,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_SetData_mB1D58A2406C153CE8591AEFB3C1F18718E6DD285 (LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * ___slot0, RuntimeObject * ___data1, const RuntimeMethod* method)
{
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_0);
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_1 = Context_get_MyLocalStore_m2CB15CE56C68E84BE69D008E507E58D9380E962D(L_0, /*hidden argument*/NULL);
LocalDataStoreSlot_tFE02E6A0F07F1CD042342F13B3C4E8E64A550C8E * L_2 = ___slot0;
RuntimeObject * L_3 = ___data1;
NullCheck(L_1);
LocalDataStore_SetData_m9F62362E786F82989BF7DE1D08B46F9D40A73C7D(L_1, L_2, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Contexts.Context::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context__cctor_mC9A543FDFC2215E0E3560414E453324515CD3B40 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Context__cctor_mC9A543FDFC2215E0E3560414E453324515CD3B40_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 * L_0 = (LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9 *)il2cpp_codegen_object_new(LocalDataStoreMgr_t1964DDB9F2BE154BE3159A7507D0D0CCBF8FDCA9_il2cpp_TypeInfo_var);
LocalDataStoreMgr__ctor_m8AB872E90E987DD5268F7484DE1DA726960073EB(L_0, /*hidden argument*/NULL);
((Context_tE86AB6B3D9759C8E715184808579EFE761683724_StaticFields*)il2cpp_codegen_static_fields_for(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var))->set__localDataStoreMgr_11(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Contexts.ContextCallbackObject::DoCallBack(System.Runtime.Remoting.Contexts.CrossContextDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallbackObject_DoCallBack_m5EC06B4457E8403A14173E35FF423474B92484F5 (ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * __this, CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * ___deleg0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.Contexts.ContextCallbackObject::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallbackObject__ctor_m73176ADB356AE15B3EBF9F662C0CB2841F8EEE2E (ContextCallbackObject_tA6E21305C9B16E0973DE8B607765D7E41632A4B0 * __this, const RuntimeMethod* method)
{
{
ContextBoundObject__ctor_m39DB4687A77E8C96932EEDE05C2E804610B24F5A(__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.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Contexts.CrossContextChannel::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CrossContextChannel_SyncProcessMessage_m9413B3BDD24E7161604BFECBA353AB5772FC3F04 (CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CrossContextChannel_SyncProcessMessage_m9413B3BDD24E7161604BFECBA353AB5772FC3F04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
V_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
V_1 = (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)NULL;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_3 = V_0;
NullCheck(L_3);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_4 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_3, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_2) == ((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_4)))
{
goto IL_0027;
}
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_5 = V_0;
NullCheck(L_5);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_6 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_7 = Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_6, /*hidden argument*/NULL);
V_1 = L_7;
}
IL_0027:
{
}
IL_0028:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
RuntimeObject* L_8 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)1, L_8, (bool)0, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_9 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
RuntimeObject* L_10 = ___msg0;
NullCheck(L_9);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_9, (bool)1, L_10, (bool)0, (bool)0, /*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_11 = V_0;
NullCheck(L_11);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_12 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
RuntimeObject* L_13 = Context_GetServerContextSinkChain_m50A40BEC6E5E52CCD2CD63F78C8E39327361D902(L_12, /*hidden argument*/NULL);
RuntimeObject* L_14 = ___msg0;
NullCheck(L_13);
RuntimeObject* L_15 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_13, L_14);
V_2 = L_15;
RuntimeObject* L_16 = ___msg0;
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_16, (bool)0, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_17 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
RuntimeObject* L_18 = ___msg0;
NullCheck(L_17);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_17, (bool)0, L_18, (bool)0, (bool)0, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x83, FINALLY_0078);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_006a;
throw e;
}
CATCH_006a:
{ // begin catch(System.Exception)
RuntimeObject* L_19 = ___msg0;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_20 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E(L_20, ((Exception_t *)__exception_local), ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_2 = L_20;
IL2CPP_LEAVE(0x83, FINALLY_0078);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0078;
}
FINALLY_0078:
{ // begin finally (depth: 1)
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_21 = V_1;
if (!L_21)
{
goto IL_0082;
}
}
IL_007b:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_22 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_22, /*hidden argument*/NULL);
}
IL_0082:
{
IL2CPP_END_FINALLY(120)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(120)
{
IL2CPP_JUMP_TBL(0x83, IL_0083)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0083:
{
RuntimeObject* L_23 = V_2;
return L_23;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Contexts.CrossContextChannel::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CrossContextChannel_AsyncProcessMessage_m7A467BB10101E5AE3316FE547DB1BFBC00C73118 (CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CrossContextChannel_AsyncProcessMessage_m7A467BB10101E5AE3316FE547DB1BFBC00C73118_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
RuntimeObject* G_B7_0 = NULL;
RuntimeObject* G_B6_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
V_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
V_1 = (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)NULL;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_3 = V_0;
NullCheck(L_3);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_4 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_3, /*hidden argument*/NULL);
if ((((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_2) == ((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_4)))
{
goto IL_0027;
}
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_5 = V_0;
NullCheck(L_5);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_6 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_7 = Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_6, /*hidden argument*/NULL);
V_1 = L_7;
}
IL_0027:
{
}
IL_0028:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
{
RuntimeObject* L_8 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)1, L_8, (bool)0, (bool)1, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_9 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
RuntimeObject* L_10 = ___msg0;
NullCheck(L_9);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_9, (bool)1, L_10, (bool)0, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_11 = ___replySink1;
if (!L_11)
{
goto IL_004c;
}
}
IL_0042:
{
RuntimeObject* L_12 = ___replySink1;
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_13 = V_1;
RuntimeObject* L_14 = ___msg0;
ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 * L_15 = (ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 *)il2cpp_codegen_object_new(ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4_il2cpp_TypeInfo_var);
ContextRestoreSink__ctor_m78F6C5349FEDCD1FC0B30E71C1D3E0C516EAAF93(L_15, L_12, L_13, L_14, /*hidden argument*/NULL);
___replySink1 = L_15;
}
IL_004c:
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_16 = V_0;
RuntimeObject* L_17 = ___msg0;
RuntimeObject* L_18 = ___replySink1;
NullCheck(L_16);
RuntimeObject* L_19 = VirtFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(7 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.ServerIdentity::AsyncObjectProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, L_16, L_17, L_18);
RuntimeObject* L_20 = ___replySink1;
G_B6_0 = L_19;
if (L_20)
{
G_B7_0 = L_19;
goto IL_006e;
}
}
IL_0057:
{
RuntimeObject* L_21 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_21, (bool)0, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_22 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
RuntimeObject* L_23 = ___msg0;
NullCheck(L_22);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_22, (bool)0, L_23, (bool)0, (bool)0, /*hidden argument*/NULL);
G_B7_0 = G_B6_0;
}
IL_006e:
{
V_2 = G_B7_0;
IL2CPP_LEAVE(0x97, FINALLY_008c);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0071;
throw e;
}
CATCH_0071:
{ // begin catch(System.Exception)
{
V_3 = ((Exception_t *)__exception_local);
RuntimeObject* L_24 = ___replySink1;
if (!L_24)
{
goto IL_0088;
}
}
IL_0075:
{
RuntimeObject* L_25 = ___replySink1;
Exception_t * L_26 = V_3;
RuntimeObject* L_27 = ___msg0;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_28 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E(L_28, L_26, ((RuntimeObject*)Castclass((RuntimeObject*)L_27, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
NullCheck(L_25);
InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_25, L_28);
}
IL_0088:
{
V_2 = (RuntimeObject*)NULL;
IL2CPP_LEAVE(0x97, FINALLY_008c);
}
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008c;
}
FINALLY_008c:
{ // begin finally (depth: 1)
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_29 = V_1;
if (!L_29)
{
goto IL_0096;
}
}
IL_008f:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_30 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_30, /*hidden argument*/NULL);
}
IL_0096:
{
IL2CPP_END_FINALLY(140)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(140)
{
IL2CPP_JUMP_TBL(0x97, IL_0097)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0097:
{
RuntimeObject* L_31 = V_2;
return L_31;
}
}
// System.Void System.Runtime.Remoting.Contexts.CrossContextChannel::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossContextChannel__ctor_m10CF8EDDE358CEAB4C1A6E8EAD0A49E8A4494012 (CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * __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.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink,System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextRestoreSink__ctor_m78F6C5349FEDCD1FC0B30E71C1D3E0C516EAAF93 (ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 * __this, RuntimeObject* ___next0, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___context1, RuntimeObject* ___call2, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___next0;
__this->set__next_0(L_0);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = ___context1;
__this->set__context_1(L_1);
RuntimeObject* L_2 = ___call2;
__this->set__call_2(L_2);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ContextRestoreSink_SyncProcessMessage_mB1B1A2B2F31C579A1F1AB0EBA01E95A53C674C58 (ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContextRestoreSink_SyncProcessMessage_mB1B1A2B2F31C579A1F1AB0EBA01E95A53C674C58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
try
{ // begin try (depth: 2)
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_0, (bool)0, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_1, (bool)0, L_2, (bool)0, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_3 = __this->get__next_0();
RuntimeObject* L_4 = ___msg0;
NullCheck(L_3);
RuntimeObject* L_5 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_3, L_4);
V_0 = L_5;
IL2CPP_LEAVE(0x4E, FINALLY_0039);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0026;
throw e;
}
CATCH_0026:
{ // begin catch(System.Exception)
RuntimeObject* L_6 = __this->get__call_2();
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_7 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E(L_7, ((Exception_t *)__exception_local), ((RuntimeObject*)Castclass((RuntimeObject*)L_6, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_7;
IL2CPP_LEAVE(0x4E, FINALLY_0039);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0039;
}
FINALLY_0039:
{ // begin finally (depth: 1)
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_8 = __this->get__context_1();
if (!L_8)
{
goto IL_004d;
}
}
IL_0041:
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_9 = __this->get__context_1();
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_SwitchToContext_mF59C5B176603BD429245C843164E9EA490464567(L_9, /*hidden argument*/NULL);
}
IL_004d:
{
IL2CPP_END_FINALLY(57)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(57)
{
IL2CPP_JUMP_TBL(0x4E, IL_004e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004e:
{
RuntimeObject* L_10 = V_0;
return L_10;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Contexts.CrossContextChannel_ContextRestoreSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ContextRestoreSink_AsyncProcessMessage_m020C0B9143FF15E75928D6A5B03045184FD2C06F (ContextRestoreSink_tC5387DA6265F16EBA91EC800A14F33DC8C5D18F4 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ContextRestoreSink_AsyncProcessMessage_m020C0B9143FF15E75928D6A5B03045184FD2C06F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ContextRestoreSink_AsyncProcessMessage_m020C0B9143FF15E75928D6A5B03045184FD2C06F_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F (CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * __this, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc();
}
// System.Void System.Runtime.Remoting.Contexts.CrossContextDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossContextDelegate__ctor_mAE80ADEB0C932DBAD849B8309696A3CA76FFB827 (CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * __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.Runtime.Remoting.Contexts.CrossContextDelegate::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossContextDelegate_Invoke_m9A38F899BCE87242833F388DE35E325C91B51EAC (CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * __this, 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 == 0)
{
// open
typedef void (*FunctionPointerType) (const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
else
{
// closed
if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis);
else
GenericVirtActionInvoker0::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
else
{
typedef void (*FunctionPointerType) (void*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
// System.IAsyncResult System.Runtime.Remoting.Contexts.CrossContextDelegate::BeginInvoke(System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CrossContextDelegate_BeginInvoke_m916BFF8D8A96085AA60EFD00C9F29EBAB64A42DB (CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
}
// System.Void System.Runtime.Remoting.Contexts.CrossContextDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossContextDelegate_EndInvoke_m1BC967CC8557D8A0D12FD123803BB9A84368D1BC (CrossContextDelegate_tB042FB42C495873AAE7558740B190D857C74CD9F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::get_HasProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, const RuntimeMethod* method)
{
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__properties_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return (bool)((((int32_t)L_1) > ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, RuntimeObject* ___prop0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * V_0 = NULL;
bool V_1 = false;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_2 = NULL;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * V_3 = NULL;
RuntimeObject* V_4 = NULL;
bool V_5 = 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);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
RuntimeObject* L_1 = ___prop0;
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Contexts.IDynamicProperty::get_Name() */, IDynamicProperty_t8DD3BC470CC26DE9C84615CFD5B604D2E06FF13F_il2cpp_TypeInfo_var, L_1);
int32_t L_3 = DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4(__this, L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0026;
}
}
IL_001b:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, _stringLiteral4EF06982247EA84F0B7630DD66DB4D378C32794E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, DynamicPropertyCollection_RegisterDynamicProperty_m08D36E30F397DA536A2FD8F6D4E2B264F9D1BC96_RuntimeMethod_var);
}
IL_0026:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_5 = __this->get__properties_0();
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_6, L_5, /*hidden argument*/NULL);
V_2 = L_6;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_7 = (DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F *)il2cpp_codegen_object_new(DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var);
DynamicPropertyReg__ctor_m764A9DB95A522643F9EB6088FEAE462309B9190F(L_7, /*hidden argument*/NULL);
V_3 = L_7;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_8 = V_3;
RuntimeObject* L_9 = ___prop0;
NullCheck(L_8);
L_8->set_Property_0(L_9);
RuntimeObject* L_10 = ___prop0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IContributeDynamicSink_t82A806D1417AFB21C9AC160C2D6B75C2AAEACC97_il2cpp_TypeInfo_var));
RuntimeObject* L_11 = V_4;
if (!L_11)
{
goto IL_0058;
}
}
IL_004b:
{
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_12 = V_3;
RuntimeObject* L_13 = V_4;
NullCheck(L_13);
RuntimeObject* L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Contexts.IDynamicMessageSink System.Runtime.Remoting.Contexts.IContributeDynamicSink::GetDynamicSink() */, IContributeDynamicSink_t82A806D1417AFB21C9AC160C2D6B75C2AAEACC97_il2cpp_TypeInfo_var, L_13);
NullCheck(L_12);
L_12->set_Sink_1(L_14);
}
IL_0058:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_15 = V_2;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_16 = V_3;
NullCheck(L_15);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_15, L_16);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = V_2;
__this->set__properties_0(L_17);
V_5 = (bool)1;
IL2CPP_LEAVE(0x76, FINALLY_006c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_006c;
}
FINALLY_006c:
{ // begin finally (depth: 1)
{
bool L_18 = V_1;
if (!L_18)
{
goto IL_0075;
}
}
IL_006f:
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_19 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_19, /*hidden argument*/NULL);
}
IL_0075:
{
IL2CPP_END_FINALLY(108)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(108)
{
IL2CPP_JUMP_TBL(0x76, IL_0076)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0076:
{
bool L_20 = V_5;
return L_20;
}
}
// System.Boolean System.Runtime.Remoting.Contexts.DynamicPropertyCollection::UnregisterDynamicProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = 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);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
String_t* L_1 = ___name0;
int32_t L_2 = DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4(__this, L_1, /*hidden argument*/NULL);
V_2 = L_2;
int32_t L_3 = V_2;
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_002e;
}
}
IL_0018:
{
String_t* L_4 = ___name0;
String_t* L_5 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral95B30331D509ECCA7D2BF0051ED3FDEEB761CCDE, L_4, _stringLiteral536963DC456C27EA6CD029F273CCC59D78CD8583, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_6 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, DynamicPropertyCollection_UnregisterDynamicProperty_m08ADECEEDD411F059E334F656761B7C3EBFF7F18_RuntimeMethod_var);
}
IL_002e:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_7 = __this->get__properties_0();
int32_t L_8 = V_2;
NullCheck(L_7);
VirtActionInvoker1< int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_7, L_8);
V_3 = (bool)1;
IL2CPP_LEAVE(0x48, FINALLY_003e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003e;
}
FINALLY_003e:
{ // begin finally (depth: 1)
{
bool L_9 = V_1;
if (!L_9)
{
goto IL_0047;
}
}
IL_0041:
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_10 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_10, /*hidden argument*/NULL);
}
IL_0047:
{
IL2CPP_END_FINALLY(62)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(62)
{
IL2CPP_JUMP_TBL(0x48, IL_0048)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0048:
{
bool L_11 = V_3;
return L_11;
}
}
// System.Void System.Runtime.Remoting.Contexts.DynamicPropertyCollection::NotifyMessage(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, bool ___start0, RuntimeObject* ___msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * V_2 = NULL;
RuntimeObject* V_3 = NULL;
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__properties_0();
V_0 = L_0;
bool L_1 = ___start0;
if (!L_1)
{
goto IL_0051;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_1 = L_3;
}
IL_0011:
try
{ // begin try (depth: 1)
{
goto IL_0036;
}
IL_0013:
{
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_4);
V_2 = ((DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F *)CastclassClass((RuntimeObject*)L_5, DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var));
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_6 = V_2;
NullCheck(L_6);
RuntimeObject* L_7 = L_6->get_Sink_1();
if (!L_7)
{
goto IL_0036;
}
}
IL_0027:
{
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_8 = V_2;
NullCheck(L_8);
RuntimeObject* L_9 = L_8->get_Sink_1();
RuntimeObject* L_10 = ___msg1;
bool L_11 = ___client_site2;
bool L_12 = ___async3;
NullCheck(L_9);
InterfaceActionInvoker3< RuntimeObject*, bool, bool >::Invoke(1 /* System.Void System.Runtime.Remoting.Contexts.IDynamicMessageSink::ProcessMessageStart(System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean) */, IDynamicMessageSink_t8EECDC47E2C48FAF02D5E1507699FDDFD0DFE78D_il2cpp_TypeInfo_var, L_9, L_10, L_11, L_12);
}
IL_0036:
{
RuntimeObject* L_13 = V_1;
NullCheck(L_13);
bool L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_13);
if (L_14)
{
goto IL_0013;
}
}
IL_003e:
{
IL2CPP_LEAVE(0x9B, FINALLY_0040);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0040;
}
FINALLY_0040:
{ // begin finally (depth: 1)
{
RuntimeObject* L_15 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_16 = V_3;
if (!L_16)
{
goto IL_0050;
}
}
IL_004a:
{
RuntimeObject* L_17 = V_3;
NullCheck(L_17);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_17);
}
IL_0050:
{
IL2CPP_END_FINALLY(64)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(64)
{
IL2CPP_JUMP_TBL(0x9B, IL_009b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0051:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject* L_19 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_18);
V_1 = L_19;
}
IL_0058:
try
{ // begin try (depth: 1)
{
goto IL_0080;
}
IL_005a:
{
RuntimeObject* L_20 = V_1;
NullCheck(L_20);
RuntimeObject * L_21 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
V_4 = ((DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F *)CastclassClass((RuntimeObject*)L_21, DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var));
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_22 = V_4;
NullCheck(L_22);
RuntimeObject* L_23 = L_22->get_Sink_1();
if (!L_23)
{
goto IL_0080;
}
}
IL_0070:
{
DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * L_24 = V_4;
NullCheck(L_24);
RuntimeObject* L_25 = L_24->get_Sink_1();
RuntimeObject* L_26 = ___msg1;
bool L_27 = ___client_site2;
bool L_28 = ___async3;
NullCheck(L_25);
InterfaceActionInvoker3< RuntimeObject*, bool, bool >::Invoke(0 /* System.Void System.Runtime.Remoting.Contexts.IDynamicMessageSink::ProcessMessageFinish(System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean) */, IDynamicMessageSink_t8EECDC47E2C48FAF02D5E1507699FDDFD0DFE78D_il2cpp_TypeInfo_var, L_25, L_26, L_27, L_28);
}
IL_0080:
{
RuntimeObject* L_29 = V_1;
NullCheck(L_29);
bool L_30 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_29);
if (L_30)
{
goto IL_005a;
}
}
IL_0088:
{
IL2CPP_LEAVE(0x9B, FINALLY_008a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008a;
}
FINALLY_008a:
{ // begin finally (depth: 1)
{
RuntimeObject* L_31 = V_1;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_31, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_32 = V_3;
if (!L_32)
{
goto IL_009a;
}
}
IL_0094:
{
RuntimeObject* L_33 = V_3;
NullCheck(L_33);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_33);
}
IL_009a:
{
IL2CPP_END_FINALLY(138)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(138)
{
IL2CPP_JUMP_TBL(0x9B, IL_009b)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009b:
{
return;
}
}
// System.Int32 System.Runtime.Remoting.Contexts.DynamicPropertyCollection::FindProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DynamicPropertyCollection_FindProperty_m6CB8444A6170AC2D71DF17C0CC7DDFF058BD0FF4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_002d;
}
IL_0004:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__properties_0();
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
NullCheck(((DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F *)CastclassClass((RuntimeObject*)L_2, DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var)));
RuntimeObject* L_3 = ((DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F *)CastclassClass((RuntimeObject*)L_2, DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F_il2cpp_TypeInfo_var))->get_Property_0();
NullCheck(L_3);
String_t* L_4 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Contexts.IDynamicProperty::get_Name() */, IDynamicProperty_t8DD3BC470CC26DE9C84615CFD5B604D2E06FF13F_il2cpp_TypeInfo_var, L_3);
String_t* L_5 = ___name0;
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0029;
}
}
{
int32_t L_7 = V_0;
return L_7;
}
IL_0029:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002d:
{
int32_t L_9 = V_0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = __this->get__properties_0();
NullCheck(L_10);
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0004;
}
}
{
return (-1);
}
}
// System.Void System.Runtime.Remoting.Contexts.DynamicPropertyCollection::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809 (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
__this->set__properties_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.Runtime.Remoting.Contexts.DynamicPropertyCollection_DynamicPropertyReg::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DynamicPropertyReg__ctor_m764A9DB95A522643F9EB6088FEAE462309B9190F (DynamicPropertyReg_t417FD9E5177381622AD4FD1DDC41C8960F01402F * __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.Runtime.Remoting.DisposerReplySink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink,System.IDisposable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposerReplySink__ctor_mD1FC610A3614015F28797281ECF93364167450A6 (DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13 * __this, RuntimeObject* ___next0, RuntimeObject* ___disposable1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___next0;
__this->set__next_0(L_0);
RuntimeObject* L_1 = ___disposable1;
__this->set__disposable_1(L_1);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.DisposerReplySink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DisposerReplySink_SyncProcessMessage_mA5CB9FCC0970065B382384F28773E84E96F785E2 (DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DisposerReplySink_SyncProcessMessage_mA5CB9FCC0970065B382384F28773E84E96F785E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__disposable_1();
NullCheck(L_0);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_0);
RuntimeObject* L_1 = __this->get__next_0();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
RuntimeObject* L_3 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.DisposerReplySink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DisposerReplySink_AsyncProcessMessage_m51BAAFF3E2BBBA10CE586CC03DE790B8D85B0443 (DisposerReplySink_tB82C204D78F2AC7B0C3F08CDF7F331E36188ED13 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DisposerReplySink_AsyncProcessMessage_m51BAAFF3E2BBBA10CE586CC03DE790B8D85B0443_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, DisposerReplySink_AsyncProcessMessage_m51BAAFF3E2BBBA10CE586CC03DE790B8D85B0443_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.EnvoyInfo::.ctor(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnvoyInfo__ctor_m39DB1B1CD9E0783AF5645515B815FD1EEC1B1973 (EnvoyInfo_tB3A3AF8D7FCFFF5C5468B6C3EDFE186015B1CD09 * __this, RuntimeObject* ___sinks0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___sinks0;
__this->set_envoySinks_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.EnvoyInfo::get_EnvoySinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnvoyInfo_get_EnvoySinks_m018A6F246F3AD845D37EB6D0F68D3EFBB534F8F7 (EnvoyInfo_tB3A3AF8D7FCFFF5C5468B6C3EDFE186015B1CD09 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_envoySinks_0();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.FormatterData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatterData__ctor_m595C6D76D003212F8F2C3A7C06C16B8541884D19 (FormatterData_t3580FF512A069A7768CA03968B0D8A5F2EED6C6A * __this, const RuntimeMethod* method)
{
{
ProviderData__ctor_m62F7BEE2687705DF69132616A26FC2139AAFB1CF(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Identity::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity__ctor_mFEE38F831AA3F06AB362718481DDAF3590479EE9 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, String_t* ___objectUri0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___objectUri0;
__this->set__objectUri_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::get_ChannelSink()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__channelSink_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Identity::set_ChannelSink(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_set_ChannelSink_m83E9ABAA9D885C2687D9F94732BB08EFF7831118 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__channelSink_1(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::get_EnvoySink()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_EnvoySink_m3C9ABB6C826A976FB6B2CD7DC4CEB343AD284D84 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__envoySink_2();
return L_0;
}
}
// System.String System.Runtime.Remoting.Identity::get_ObjectUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__objectUri_0();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Identity::set_ObjectUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_set_ObjectUri_mE4630E3F65B2A6E9DA60D830975549031A9EA3B8 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__objectUri_0(L_0);
return;
}
}
// System.Boolean System.Runtime.Remoting.Identity::get_IsConnected()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Identity_get_IsConnected_m71FF39D6BAD417D698A5C306473747EDB090D12A (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__objectUri_0();
return (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Boolean System.Runtime.Remoting.Identity::get_Disposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Identity_get_Disposed_m57B594F2F3A3FCCA0BFBF1AF65FE102A133DA137 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__disposed_6();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Identity::set_Disposed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_set_Disposed_m28D1BF11148E67DEE2AC2BD5681D4909DB6CC8CD (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set__disposed_6(L_0);
return;
}
}
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::get_ClientDynamicProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * Identity_get_ClientDynamicProperties_m0CCE31D0AA06ECE1BC76B1B214C5DC34C7BBE228 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Identity_get_ClientDynamicProperties_m0CCE31D0AA06ECE1BC76B1B214C5DC34C7BBE228_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get__clientDynamicProperties_3();
if (L_0)
{
goto IL_0013;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = (DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C *)il2cpp_codegen_object_new(DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C_il2cpp_TypeInfo_var);
DynamicPropertyCollection__ctor_m4860498A28E347477C6C791E603B983B3CEF1809(L_1, /*hidden argument*/NULL);
__this->set__clientDynamicProperties_3(L_1);
}
IL_0013:
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_2 = __this->get__clientDynamicProperties_3();
return L_2;
}
}
// System.Boolean System.Runtime.Remoting.Identity::get_HasServerDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Identity_get_HasServerDynamicSinks_m69FD18B9C80973FF0375BFDB46647B2DD8664BB6 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get__serverDynamicProperties_4();
if (!L_0)
{
goto IL_0014;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = __this->get__serverDynamicProperties_4();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Void System.Runtime.Remoting.Identity::NotifyClientDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_NotifyClientDynamicSinks_mA8E001AFED507D772A749CBD00679FA8F4AEC590 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method)
{
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get__clientDynamicProperties_3();
if (!L_0)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = __this->get__clientDynamicProperties_3();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_3 = __this->get__clientDynamicProperties_3();
bool L_4 = ___start0;
RuntimeObject* L_5 = ___req_msg1;
bool L_6 = ___client_site2;
bool L_7 = ___async3;
NullCheck(L_3);
DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1(L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0025:
{
return;
}
}
// System.Void System.Runtime.Remoting.Identity::NotifyServerDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143 (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method)
{
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_0 = __this->get__serverDynamicProperties_4();
if (!L_0)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_1 = __this->get__serverDynamicProperties_4();
NullCheck(L_1);
bool L_2 = DynamicPropertyCollection_get_HasProperties_mF3D9CD23D3E3652935D96DDE6BEF8CAF6F2C786C(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0025;
}
}
{
DynamicPropertyCollection_t53C262686576B02C86B55F8CAA16068AF33DC75C * L_3 = __this->get__serverDynamicProperties_4();
bool L_4 = ___start0;
RuntimeObject* L_5 = ___req_msg1;
bool L_6 = ___client_site2;
bool L_7 = ___async3;
NullCheck(L_3);
DynamicPropertyCollection_NotifyMessage_mDE6FD4A47A6051CE4F3A6FC8EB43CB3365CE69E1(L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
}
IL_0025:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Metadata.SoapAttribute System.Runtime.Remoting.InternalRemotingServices::GetCachedSoapAttribute(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * InternalRemotingServices_GetCachedSoapAttribute_mAFF020E6FAC7FA570DE27002378FF92B7B1CB684 (RuntimeObject * ___reflectionObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalRemotingServices_GetCachedSoapAttribute_mAFF020E6FAC7FA570DE27002378FF92B7B1CB684_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * V_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_3 = NULL;
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields*)il2cpp_codegen_static_fields_for(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var))->get__soapAttributes_0();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(27 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
V_1 = (bool)0;
}
IL_000d:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields*)il2cpp_codegen_static_fields_for(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var))->get__soapAttributes_0();
RuntimeObject * L_4 = ___reflectionObject0;
NullCheck(L_3);
RuntimeObject * L_5 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_3, L_4);
V_2 = ((SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE *)IsInstClass((RuntimeObject*)L_5, SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE_il2cpp_TypeInfo_var));
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_6 = V_2;
if (!L_6)
{
goto IL_0031;
}
}
IL_0029:
{
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_7 = V_2;
V_4 = L_7;
IL2CPP_LEAVE(0xB7, FINALLY_00ad);
}
IL_0031:
{
RuntimeObject * L_8 = ___reflectionObject0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_8, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = InterfaceFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(0 /* System.Object[] System.Reflection.ICustomAttributeProvider::GetCustomAttributes(System.Type,System.Boolean) */, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_8, ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55_il2cpp_TypeInfo_var)), L_10, (bool)1);
V_3 = L_11;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_3;
NullCheck(L_12);
if (!(((RuntimeArray*)L_12)->max_length))
{
goto IL_0057;
}
}
IL_004c:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_3;
NullCheck(L_13);
int32_t L_14 = 0;
RuntimeObject * L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_2 = ((SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE *)CastclassClass((RuntimeObject*)L_15, SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE_il2cpp_TypeInfo_var));
goto IL_0095;
}
IL_0057:
{
RuntimeObject * L_16 = ___reflectionObject0;
if (!((Type_t *)IsInstClass((RuntimeObject*)L_16, Type_t_il2cpp_TypeInfo_var)))
{
goto IL_0067;
}
}
IL_005f:
{
SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * L_17 = (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A *)il2cpp_codegen_object_new(SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A_il2cpp_TypeInfo_var);
SoapTypeAttribute__ctor_m0864596C6B23265C358BE9B3408A71B3F399F991(L_17, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_0095;
}
IL_0067:
{
RuntimeObject * L_18 = ___reflectionObject0;
if (!((FieldInfo_t *)IsInstClass((RuntimeObject*)L_18, FieldInfo_t_il2cpp_TypeInfo_var)))
{
goto IL_0077;
}
}
IL_006f:
{
SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * L_19 = (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C *)il2cpp_codegen_object_new(SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C_il2cpp_TypeInfo_var);
SoapFieldAttribute__ctor_m8132378AE95B6B7981DAC2A0B1AB05E85B3453B7(L_19, /*hidden argument*/NULL);
V_2 = L_19;
goto IL_0095;
}
IL_0077:
{
RuntimeObject * L_20 = ___reflectionObject0;
if (!((MethodBase_t *)IsInstClass((RuntimeObject*)L_20, MethodBase_t_il2cpp_TypeInfo_var)))
{
goto IL_0087;
}
}
IL_007f:
{
SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * L_21 = (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 *)il2cpp_codegen_object_new(SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722_il2cpp_TypeInfo_var);
SoapMethodAttribute__ctor_m69ABE77883D5B9DD0FA3BE21C9FA2250855AA7F2(L_21, /*hidden argument*/NULL);
V_2 = L_21;
goto IL_0095;
}
IL_0087:
{
RuntimeObject * L_22 = ___reflectionObject0;
if (!((ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB *)IsInstClass((RuntimeObject*)L_22, ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_il2cpp_TypeInfo_var)))
{
goto IL_0095;
}
}
IL_008f:
{
SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6 * L_23 = (SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6 *)il2cpp_codegen_object_new(SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6_il2cpp_TypeInfo_var);
SoapParameterAttribute__ctor_mDC782C88646C3237077194DA5BAC9AB6C01BA232(L_23, /*hidden argument*/NULL);
V_2 = L_23;
}
IL_0095:
{
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_24 = V_2;
RuntimeObject * L_25 = ___reflectionObject0;
NullCheck(L_24);
VirtActionInvoker1< RuntimeObject * >::Invoke(6 /* System.Void System.Runtime.Remoting.Metadata.SoapAttribute::SetReflectionObject(System.Object) */, L_24, L_25);
IL2CPP_RUNTIME_CLASS_INIT(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_26 = ((InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields*)il2cpp_codegen_static_fields_for(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var))->get__soapAttributes_0();
RuntimeObject * L_27 = ___reflectionObject0;
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_28 = V_2;
NullCheck(L_26);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_26, L_27, L_28);
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_29 = V_2;
V_4 = L_29;
IL2CPP_LEAVE(0xB7, FINALLY_00ad);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ad;
}
FINALLY_00ad:
{ // begin finally (depth: 1)
{
bool L_30 = V_1;
if (!L_30)
{
goto IL_00b6;
}
}
IL_00b0:
{
RuntimeObject * L_31 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_31, /*hidden argument*/NULL);
}
IL_00b6:
{
IL2CPP_END_FINALLY(173)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(173)
{
IL2CPP_JUMP_TBL(0xB7, IL_00b7)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b7:
{
SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * L_32 = V_4;
return L_32;
}
}
// System.Void System.Runtime.Remoting.InternalRemotingServices::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalRemotingServices__cctor_mADA6EE81D76FDEF7B8EB7CF121E4A3C9BEBE5422 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalRemotingServices__cctor_mADA6EE81D76FDEF7B8EB7CF121E4A3C9BEBE5422_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
((InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_StaticFields*)il2cpp_codegen_static_fields_for(InternalRemotingServices_t29F59247A12F343EFDCCB57E1F75DC33873532A3_il2cpp_TypeInfo_var))->set__soapAttributes_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Lifetime.Lease::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease__ctor_mBDCE338C031C3C0CC2121D6566BF10BB0F9869A1 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease__ctor_mBDCE338C031C3C0CC2121D6566BF10BB0F9869A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MarshalByRefObject__ctor_mD1C6F1D191B1A50DC93E8B214BCCA9BD93FDE850(__this, /*hidden argument*/NULL);
__this->set__currentState_2(1);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1_inline(/*hidden argument*/NULL);
__this->set__initialLeaseTime_3(L_0);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218_inline(/*hidden argument*/NULL);
__this->set__renewOnCallTime_4(L_1);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738_inline(/*hidden argument*/NULL);
__this->set__sponsorshipTimeout_5(L_2);
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = __this->get__initialLeaseTime_3();
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_5 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_3, L_4, /*hidden argument*/NULL);
__this->set__leaseExpireTime_1(L_5);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::get_CurrentLeaseTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = __this->get__leaseExpireTime_1();
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_1 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = DateTime_op_Subtraction_m8005DCC8F0F183AC1335F87A82FDF92926CC5021(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Runtime.Remoting.Lifetime.LeaseState System.Runtime.Remoting.Lifetime.Lease::get_CurrentState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Lease_get_CurrentState_mEA64B32B0420975A794DCD40AC6ADB6C955652C2 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__currentState_2();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Lifetime.Lease::Activate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_Activate_mBC7B530CD89DCDCAEE59FEF852E7D22906E64D7A (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
{
__this->set__currentState_2(2);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::get_RenewOnCallTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Lease_get_RenewOnCallTime_mBD9F6AE9AB27DD373A89B9914BEADBC4EC2785DA (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = __this->get__renewOnCallTime_4();
return L_0;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease::Renew(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 Lease_Renew_mDA55F829014C2AADE6F4596036C9136E3F843D3A (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___renewalTime0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease_Renew_mDA55F829014C2AADE6F4596036C9136E3F843D3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_0;
memset((&V_0), 0, sizeof(V_0));
{
IL2CPP_RUNTIME_CLASS_INIT(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_0 = DateTime_get_UtcNow_m171F52F4B3A213E4BAD7B78DC8E794A269DE38A1(/*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = ___renewalTime0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_2 = DateTime_op_Addition_m6CE7A79B6E219E67A75AB17545D1873529262282(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_3 = V_0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_4 = __this->get__leaseExpireTime_1();
bool L_5 = DateTime_op_GreaterThan_mC9384F126E5D8A3AAAB0BDFC44D1D7319367C89E(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0021;
}
}
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_6 = V_0;
__this->set__leaseExpireTime_1(L_6);
}
IL_0021:
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223(__this, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Runtime.Remoting.Lifetime.Lease::Unregister(System.Runtime.Remoting.Lifetime.ISponsor)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_Unregister_mE5A778105D2FB15CFAD0B79B868554C14DBAF8A3 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, RuntimeObject* ___obj0, const RuntimeMethod* method)
{
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * V_0 = NULL;
bool V_1 = false;
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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get__sponsors_6();
if (L_1)
{
goto IL_0016;
}
}
IL_0014:
{
IL2CPP_LEAVE(0x55, FINALLY_004b);
}
IL_0016:
{
V_2 = 0;
goto IL_003b;
}
IL_001a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = __this->get__sponsors_6();
int32_t L_3 = V_2;
NullCheck(L_2);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3);
RuntimeObject* L_5 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_4) == ((RuntimeObject*)(RuntimeObject*)L_5))))
{
goto IL_0037;
}
}
IL_0029:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = __this->get__sponsors_6();
int32_t L_7 = V_2;
NullCheck(L_6);
VirtActionInvoker1< int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_6, L_7);
IL2CPP_LEAVE(0x55, FINALLY_004b);
}
IL_0037:
{
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_003b:
{
int32_t L_9 = V_2;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = __this->get__sponsors_6();
NullCheck(L_10);
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_001a;
}
}
IL_0049:
{
IL2CPP_LEAVE(0x55, FINALLY_004b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
{
bool L_12 = V_1;
if (!L_12)
{
goto IL_0054;
}
}
IL_004e:
{
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_13 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_13, /*hidden argument*/NULL);
}
IL_0054:
{
IL2CPP_END_FINALLY(75)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0x55, IL_0055)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0055:
{
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.Lease::UpdateState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_UpdateState_m9243B509DA77DF0A15CAE4F256A83F62EEF410E6 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease_UpdateState_m9243B509DA77DF0A15CAE4F256A83F62EEF410E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * 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);
{
int32_t L_0 = __this->get__currentState_2();
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_000a;
}
}
{
return;
}
IL_000a:
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = Lease_get_CurrentLeaseTime_mF22B866E5ABA6A6D9B1B6B97DE9AFAE4F8C77223(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0();
bool L_3 = TimeSpan_op_GreaterThan_mC4CE0AD3057035058479B695ACDC089F3A6EA486(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001d;
}
}
{
return;
}
IL_001d:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = __this->get__sponsors_6();
if (!L_4)
{
goto IL_005c;
}
}
{
__this->set__currentState_2(3);
V_0 = __this;
V_1 = (bool)0;
}
IL_0030:
try
{ // begin try (depth: 1)
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_5 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_5, (bool*)(&V_1), /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = __this->get__sponsors_6();
Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_7 = (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 *)il2cpp_codegen_object_new(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3_il2cpp_TypeInfo_var);
Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52(L_7, L_6, /*hidden argument*/NULL);
__this->set__renewingSponsors_7(L_7);
IL2CPP_LEAVE(0x55, FINALLY_004b);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
{
bool L_8 = V_1;
if (!L_8)
{
goto IL_0054;
}
}
IL_004e:
{
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_9 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_9, /*hidden argument*/NULL);
}
IL_0054:
{
IL2CPP_END_FINALLY(75)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0x55, IL_0055)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0055:
{
Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22(__this, /*hidden argument*/NULL);
return;
}
IL_005c:
{
__this->set__currentState_2(4);
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.Lease::CheckNextSponsor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22 (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_0 = __this->get__renewingSponsors_7();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Queue::get_Count() */, L_0);
if (L_1)
{
goto IL_001c;
}
}
{
__this->set__currentState_2(4);
__this->set__renewingSponsors_7((Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 *)NULL);
return;
}
IL_001c:
{
Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_2 = __this->get__renewingSponsors_7();
NullCheck(L_2);
RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Queue::Peek() */, L_2);
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_3, ISponsor_tE2236D41CBD818B492F52B2B3B135EFB2816A6EC_il2cpp_TypeInfo_var));
RuntimeObject* L_4 = V_0;
RuntimeObject* L_5 = L_4;
RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * L_6 = (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 *)il2cpp_codegen_object_new(RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652_il2cpp_TypeInfo_var);
RenewalDelegate__ctor_mBF442CBEAA77001CE55E917E44BB815F1E51676F(L_6, L_5, (intptr_t)((intptr_t)GetInterfaceMethodInfo(L_5, 0, ISponsor_tE2236D41CBD818B492F52B2B3B135EFB2816A6EC_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
__this->set__renewalDelegate_8(L_6);
RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * L_7 = __this->get__renewalDelegate_8();
NullCheck(L_7);
RuntimeObject* L_8 = RenewalDelegate_BeginInvoke_mB60A7B40A62704549169506BE4577753A4EEE00F(L_7, __this, (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)NULL, NULL, /*hidden argument*/NULL);
V_1 = L_8;
RuntimeObject* L_9 = V_1;
NullCheck(L_9);
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_10 = InterfaceFuncInvoker0< WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * >::Invoke(0 /* System.Threading.WaitHandle System.IAsyncResult::get_AsyncWaitHandle() */, IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var, L_9);
WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF * L_11 = (WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF *)il2cpp_codegen_object_new(WaitOrTimerCallback_tC7370E7654DC005FC74E8E82993FD40C2C6AF8CF_il2cpp_TypeInfo_var);
WaitOrTimerCallback__ctor_m3F8B82720682E41B16CC030AF8CDD748F882F67F(L_11, __this, (intptr_t)((intptr_t)Lease_ProcessSponsorResponse_mAB6D03A0D1EC3EBA8B285751DA7A76D1FED5E59D_RuntimeMethod_var), /*hidden argument*/NULL);
RuntimeObject* L_12 = V_1;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_13 = __this->get__sponsorshipTimeout_5();
ThreadPool_RegisterWaitForSingleObject_m1FAE6A729D61DDDF3EE72AEB72D886184A8FA58E(L_10, L_11, L_12, L_13, (bool)1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.Lease::ProcessSponsorResponse(System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lease_ProcessSponsorResponse_mAB6D03A0D1EC3EBA8B285751DA7A76D1FED5E59D (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, RuntimeObject * ___state0, bool ___timedOut1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Lease_ProcessSponsorResponse_mAB6D03A0D1EC3EBA8B285751DA7A76D1FED5E59D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = ___timedOut1;
if (L_0)
{
goto IL_0041;
}
}
IL_0003:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = ___state0;
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598_il2cpp_TypeInfo_var));
RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * L_2 = __this->get__renewalDelegate_8();
RuntimeObject* L_3 = V_0;
NullCheck(L_2);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = RenewalDelegate_EndInvoke_m07BD8A9B85074E3C82621D2D6D0B7A1AC1B3DC20(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = ((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))->get_Zero_0();
bool L_7 = TimeSpan_op_Inequality_mEAE207F8B9A9B42CC33F4DE882E69E98C09065FC(L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003c;
}
}
IL_0024:
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_8 = V_1;
Lease_Renew_mDA55F829014C2AADE6F4596036C9136E3F843D3A(__this, L_8, /*hidden argument*/NULL);
__this->set__currentState_2(2);
__this->set__renewingSponsors_7((Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 *)NULL);
goto IL_005d;
}
IL_003c:
{
goto IL_0041;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003e;
throw e;
}
CATCH_003e:
{ // begin catch(System.Object)
goto IL_0041;
} // end catch (depth: 1)
IL_0041:
{
Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_9 = __this->get__renewingSponsors_7();
NullCheck(L_9);
RuntimeObject * L_10 = VirtFuncInvoker0< RuntimeObject * >::Invoke(13 /* System.Object System.Collections.Queue::Dequeue() */, L_9);
Lease_Unregister_mE5A778105D2FB15CFAD0B79B868554C14DBAF8A3(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_10, ISponsor_tE2236D41CBD818B492F52B2B3B135EFB2816A6EC_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
Lease_CheckNextSponsor_m8E3467244B3F18ADFCFDD03E0226806810F16B22(__this, /*hidden argument*/NULL);
}
IL_005d:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenewalDelegate__ctor_mBF442CBEAA77001CE55E917E44BB815F1E51676F (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __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.TimeSpan System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate::Invoke(System.Runtime.Remoting.Lifetime.ILease)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 RenewalDelegate_Invoke_mB5CD838D18E1531DE445C5C58FA1000A12C88F03 (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject* ___lease0, const RuntimeMethod* method)
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 result;
memset((&result), 0, sizeof(result));
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 == 1)
{
// open
typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___lease0, targetMethod);
}
else
{
// closed
typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___lease0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// 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))
result = GenericInterfaceFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(targetMethod, ___lease0);
else
result = GenericVirtFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(targetMethod, ___lease0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___lease0);
else
result = VirtFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___lease0);
}
}
else
{
typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___lease0, 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 TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___lease0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , RuntimeObject* >::Invoke(targetMethod, targetThis, ___lease0);
else
result = GenericVirtFuncInvoker1< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , RuntimeObject* >::Invoke(targetMethod, targetThis, ___lease0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___lease0);
else
result = VirtFuncInvoker1< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___lease0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___lease0) - 1), targetMethod);
}
else
{
typedef TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___lease0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate::BeginInvoke(System.Runtime.Remoting.Lifetime.ILease,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RenewalDelegate_BeginInvoke_mB60A7B40A62704549169506BE4577753A4EEE00F (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject* ___lease0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___lease0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.Lease_RenewalDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 RenewalDelegate_EndInvoke_m07BD8A9B85074E3C82621D2D6D0B7A1AC1B3DC20 (RenewalDelegate_tD6A85E04432395B57C6A3E7663AA82E00CEDF652 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::SetPollTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_SetPollTime_m4FE0D172CD33C4D200D716AF781677381288586B (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeSpan0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__objects_0();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
V_0 = L_1;
V_1 = (bool)0;
}
IL_000e:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_3 = __this->get__timer_1();
if (!L_3)
{
goto IL_002c;
}
}
IL_001e:
{
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_4 = __this->get__timer_1();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_5 = ___timeSpan0;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_6 = ___timeSpan0;
NullCheck(L_4);
Timer_Change_mF2EE1A30C21C82757352489E6D49FF6D38573694(L_4, L_5, L_6, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_LEAVE(0x38, FINALLY_002e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002e;
}
FINALLY_002e:
{ // begin finally (depth: 1)
{
bool L_7 = V_1;
if (!L_7)
{
goto IL_0037;
}
}
IL_0031:
{
RuntimeObject * L_8 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_8, /*hidden argument*/NULL);
}
IL_0037:
{
IL2CPP_END_FINALLY(46)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(46)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0038:
{
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::TrackLifetime(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_TrackLifetime_m5B166B91CDDB2E71423DBBC3A0F6DBB39FB887CF (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__objects_0();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
V_0 = L_1;
V_1 = (bool)0;
}
IL_000e:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_3 = ___identity0;
NullCheck(L_3);
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_4 = ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
Lease_Activate_mBC7B530CD89DCDCAEE59FEF852E7D22906E64D7A(L_4, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_5 = __this->get__objects_0();
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_6 = ___identity0;
NullCheck(L_5);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6);
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_7 = __this->get__timer_1();
if (L_7)
{
goto IL_003c;
}
}
IL_0036:
{
LeaseManager_StartManager_mCD350DED26FBF47BEC9AC4E3D41B73FABB64215F(__this, /*hidden argument*/NULL);
}
IL_003c:
{
IL2CPP_LEAVE(0x48, FINALLY_003e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003e;
}
FINALLY_003e:
{ // begin finally (depth: 1)
{
bool L_8 = V_1;
if (!L_8)
{
goto IL_0047;
}
}
IL_0041:
{
RuntimeObject * L_9 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_9, /*hidden argument*/NULL);
}
IL_0047:
{
IL2CPP_END_FINALLY(62)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(62)
{
IL2CPP_JUMP_TBL(0x48, IL_0048)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0048:
{
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::StartManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_StartManager_mCD350DED26FBF47BEC9AC4E3D41B73FABB64215F (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseManager_StartManager_mCD350DED26FBF47BEC9AC4E3D41B73FABB64215F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 * L_0 = (TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219 *)il2cpp_codegen_object_new(TimerCallback_tC89F2FB1294A86F64DEB2C1F68024954018AA219_il2cpp_TypeInfo_var);
TimerCallback__ctor_m6B85BEF2F0E429E5F8E4FA2F527B42247E95A690(L_0, __this, (intptr_t)((intptr_t)LeaseManager_ManageLeases_m37D536C2B194A5D8888523B87CD3994B6E2E0D09_RuntimeMethod_var), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_inline(/*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_inline(/*hidden argument*/NULL);
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_3 = (Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)il2cpp_codegen_object_new(Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553_il2cpp_TypeInfo_var);
Timer__ctor_mE731E24B4A4D66AD0A34BF604E904E403A7959CF(L_3, L_0, NULL, L_1, L_2, /*hidden argument*/NULL);
__this->set__timer_1(L_3);
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::StopManager()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_StopManager_m6C1CF4980DBBE8FA4E774B19717A6092A699BAD3 (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method)
{
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * V_0 = NULL;
{
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_0 = __this->get__timer_1();
V_0 = L_0;
__this->set__timer_1((Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 *)NULL);
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_1 = V_0;
if (!L_1)
{
goto IL_0017;
}
}
{
Timer_t67FAB8E41573B4FA09CA56AE30725AF4297C2553 * L_2 = V_0;
NullCheck(L_2);
Timer_Dispose_mAD09E4EAC3D4A4732B55911919A60CACCF8173D9(L_2, /*hidden argument*/NULL);
}
IL_0017:
{
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::ManageLeases(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager_ManageLeases_m37D536C2B194A5D8888523B87CD3994B6E2E0D09 (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseManager_ManageLeases_m37D536C2B194A5D8888523B87CD3994B6E2E0D09_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = __this->get__objects_0();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
V_0 = L_1;
V_1 = (bool)0;
}
IL_000e:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
V_2 = 0;
goto IL_005d;
}
IL_001a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = __this->get__objects_0();
int32_t L_4 = V_2;
NullCheck(L_3);
RuntimeObject * L_5 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, L_4);
V_3 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_5, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_6 = V_3;
NullCheck(L_6);
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_7 = ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
Lease_UpdateState_m9243B509DA77DF0A15CAE4F256A83F62EEF410E6(L_7, /*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_8 = V_3;
NullCheck(L_8);
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_9 = ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline(L_8, /*hidden argument*/NULL);
NullCheck(L_9);
int32_t L_10 = Lease_get_CurrentState_mEA64B32B0420975A794DCD40AC6ADB6C955652C2_inline(L_9, /*hidden argument*/NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)4))))
{
goto IL_0059;
}
}
IL_0045:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = __this->get__objects_0();
int32_t L_12 = V_2;
NullCheck(L_11);
VirtActionInvoker1< int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_11, L_12);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_13 = V_3;
NullCheck(L_13);
VirtActionInvoker0::Invoke(5 /* System.Void System.Runtime.Remoting.ServerIdentity::OnLifetimeExpired() */, L_13);
goto IL_005d;
}
IL_0059:
{
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_005d:
{
int32_t L_15 = V_2;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = __this->get__objects_0();
NullCheck(L_16);
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_16);
if ((((int32_t)L_15) < ((int32_t)L_17)))
{
goto IL_001a;
}
}
IL_006b:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_18 = __this->get__objects_0();
NullCheck(L_18);
int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_18);
if (L_19)
{
goto IL_007e;
}
}
IL_0078:
{
LeaseManager_StopManager_m6C1CF4980DBBE8FA4E774B19717A6092A699BAD3(__this, /*hidden argument*/NULL);
}
IL_007e:
{
IL2CPP_LEAVE(0x8A, FINALLY_0080);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0080;
}
FINALLY_0080:
{ // begin finally (depth: 1)
{
bool L_20 = V_1;
if (!L_20)
{
goto IL_0089;
}
}
IL_0083:
{
RuntimeObject * L_21 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_21, /*hidden argument*/NULL);
}
IL_0089:
{
IL2CPP_END_FINALLY(128)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(128)
{
IL2CPP_JUMP_TBL(0x8A, IL_008a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_008a:
{
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseManager::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseManager__ctor_m4088B4BB6131FE6329D70CD1997D18909E52E004 (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseManager__ctor_m4088B4BB6131FE6329D70CD1997D18909E52E004_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
__this->set__objects_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.Runtime.Remoting.Lifetime.LeaseSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseSink__ctor_m32EF5051C64CBA7BB8131041080485F406CEEBAC (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___nextSink0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___nextSink0;
__this->set__nextSink_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Lifetime.LeaseSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LeaseSink_SyncProcessMessage_m9988956E98FEB28121926451B9AF69AFCC4FEE8C (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseSink_SyncProcessMessage_m9988956E98FEB28121926451B9AF69AFCC4FEE8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A(__this, L_0, /*hidden argument*/NULL);
RuntimeObject* L_1 = __this->get__nextSink_0();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
RuntimeObject* L_3 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Lifetime.LeaseSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LeaseSink_AsyncProcessMessage_m5C7C3996C06F571869D5C0781D783FF6E44DDF74 (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseSink_AsyncProcessMessage_m5C7C3996C06F571869D5C0781D783FF6E44DDF74_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A(__this, L_0, /*hidden argument*/NULL);
RuntimeObject* L_1 = __this->get__nextSink_0();
RuntimeObject* L_2 = ___msg0;
RuntimeObject* L_3 = ___replySink1;
NullCheck(L_1);
RuntimeObject* L_4 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_1, L_2, L_3);
return L_4;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LeaseSink::RenewLease(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A (LeaseSink_t6DB5E9591CAD0D513BE7F79B9326E58B685F7AC0 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LeaseSink_RenewLease_mCFA03E0A27B30095A3BB86F81AEE0F71183C356A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
NullCheck(((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)));
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_2 = ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline(((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_2;
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_0034;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_5 = InterfaceFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(0 /* System.TimeSpan System.Runtime.Remoting.Lifetime.ILease::get_CurrentLeaseTime() */, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var, L_4);
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_7 = InterfaceFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(2 /* System.TimeSpan System.Runtime.Remoting.Lifetime.ILease::get_RenewOnCallTime() */, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var, L_6);
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var);
bool L_8 = TimeSpan_op_LessThan_mF92FF63DD1E52540977D3B1753D43895F7B0A117(L_5, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0034;
}
}
{
RuntimeObject* L_9 = V_0;
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_11 = InterfaceFuncInvoker0< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(2 /* System.TimeSpan System.Runtime.Remoting.Lifetime.ILease::get_RenewOnCallTime() */, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var, L_10);
NullCheck(L_9);
InterfaceFuncInvoker1< TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 , TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 >::Invoke(3 /* System.TimeSpan System.Runtime.Remoting.Lifetime.ILease::Renew(System.TimeSpan) */, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var, L_9, L_11);
}
IL_0034:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices__cctor_m3C4ECB489EF8D476EA8AB5C7C46BE6BF86E0EB7F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices__cctor_m3C4ECB489EF8D476EA8AB5C7C46BE6BF86E0EB7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * L_0 = (LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 *)il2cpp_codegen_object_new(LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727_il2cpp_TypeInfo_var);
LeaseManager__ctor_m4088B4BB6131FE6329D70CD1997D18909E52E004(L_0, /*hidden argument*/NULL);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__leaseManager_4(L_0);
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_1 = TimeSpan_FromSeconds_mB18CB94089B3DA3B1B059BBE90367A9928AEE5CA((10.0), /*hidden argument*/NULL);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__leaseManagerPollTime_0(L_1);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2((5.0), /*hidden argument*/NULL);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__leaseTime_1(L_2);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_3 = TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2((2.0), /*hidden argument*/NULL);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__renewOnCallTime_2(L_3);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_4 = TimeSpan_FromMinutes_m3038BAC5BAB62262567D7BB3AE6DD845FC985BC2((2.0), /*hidden argument*/NULL);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__sponsorshipTimeout_3(L_4);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_LeaseManagerPollTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseManagerPollTime_0();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_LeaseManagerPollTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_set_LeaseManagerPollTime_mA7B9788CA1C9D385AF35C91A9A5F24836433D82D (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_LeaseManagerPollTime_mA7B9788CA1C9D385AF35C91A9A5F24836433D82D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__leaseManagerPollTime_0(L_0);
LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * L_1 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseManager_4();
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_2 = ___value0;
NullCheck(L_1);
LeaseManager_SetPollTime_m4FE0D172CD33C4D200D716AF781677381288586B(L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_LeaseTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseTime_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_LeaseTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_set_LeaseTime_m098BC16F4DC1EDC20917AE529C1438BAC872E828 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_LeaseTime_m098BC16F4DC1EDC20917AE529C1438BAC872E828_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__leaseTime_1(L_0);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_RenewOnCallTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__renewOnCallTime_2();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_RenewOnCallTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_set_RenewOnCallTime_mBE01C9F3CABFDDB6FE555523F686066E25387276 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_RenewOnCallTime_mBE01C9F3CABFDDB6FE555523F686066E25387276_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__renewOnCallTime_2(L_0);
return;
}
}
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::get_SponsorshipTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__sponsorshipTimeout_3();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_SponsorshipTimeout(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_set_SponsorshipTimeout_m0A36FAB17E13FF9E34EB02168A3A580D5F7277DD (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_SponsorshipTimeout_m0A36FAB17E13FF9E34EB02168A3A580D5F7277DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->set__sponsorshipTimeout_3(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::TrackLifetime(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_TrackLifetime_mB6FA0BB508C87E844CA1E2FDB232F0B6EA435284 (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_TrackLifetime_mB6FA0BB508C87E844CA1E2FDB232F0B6EA435284_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
LeaseManager_tEFB9001FB4D16244A99F84D45030C2C775BCA727 * L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseManager_4();
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_1 = ___identity0;
NullCheck(L_0);
LeaseManager_TrackLifetime_m5B166B91CDDB2E71423DBBC3A0F6DBB39FB887CF(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.Runtime.Remoting.Messaging.ArgInfo::.ctor(System.Reflection.MethodBase,System.Runtime.Remoting.Messaging.ArgInfoType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A (ArgInfo_t67419B6DE53980148631C33DF785307579134942 * __this, MethodBase_t * ___method0, uint8_t ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MethodBase_t * L_0 = ___method0;
__this->set__method_2(L_0);
MethodBase_t * L_1 = __this->get__method_2();
NullCheck(L_1);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_1);
V_0 = L_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_3 = V_0;
NullCheck(L_3);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))));
__this->set__paramMap_0(L_4);
__this->set__inoutArgCount_1(0);
uint8_t L_5 = ___type1;
if (L_5)
{
goto IL_0068;
}
}
{
V_1 = 0;
goto IL_0061;
}
IL_0035:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_6 = V_0;
int32_t L_7 = V_1;
NullCheck(L_6);
int32_t L_8 = L_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
NullCheck(L_9);
Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_9);
NullCheck(L_10);
bool L_11 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_005d;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = __this->get__paramMap_0();
int32_t L_13 = __this->get__inoutArgCount_1();
V_2 = L_13;
int32_t L_14 = V_2;
__this->set__inoutArgCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)));
int32_t L_15 = V_2;
int32_t L_16 = V_1;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (int32_t)L_16);
}
IL_005d:
{
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0061:
{
int32_t L_18 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_19 = V_0;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))))
{
goto IL_0035;
}
}
{
return;
}
IL_0068:
{
V_3 = 0;
goto IL_00a2;
}
IL_006c:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_20 = V_0;
int32_t L_21 = V_3;
NullCheck(L_20);
int32_t L_22 = L_21;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck(L_23);
Type_t * L_24 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_23);
NullCheck(L_24);
bool L_25 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_24, /*hidden argument*/NULL);
if (L_25)
{
goto IL_0085;
}
}
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_26 = V_0;
int32_t L_27 = V_3;
NullCheck(L_26);
int32_t L_28 = L_27;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_29);
bool L_30 = ParameterInfo_get_IsOut_mBD413F046E276BBF88D653EA7A261B221420A464(L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_009e;
}
}
IL_0085:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_31 = __this->get__paramMap_0();
int32_t L_32 = __this->get__inoutArgCount_1();
V_2 = L_32;
int32_t L_33 = V_2;
__this->set__inoutArgCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)));
int32_t L_34 = V_2;
int32_t L_35 = V_3;
NullCheck(L_31);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_35);
}
IL_009e:
{
int32_t L_36 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_00a2:
{
int32_t L_37 = V_3;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_38 = V_0;
NullCheck(L_38);
if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_38)->max_length)))))))
{
goto IL_006c;
}
}
{
return;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.ArgInfo::GetInOutArgs(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6 (ArgInfo_t67419B6DE53980148631C33DF785307579134942 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = __this->get__inoutArgCount_1();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_0);
V_0 = L_1;
V_1 = 0;
goto IL_0021;
}
IL_0010:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = V_0;
int32_t L_3 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___args0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = __this->get__paramMap_0();
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_4);
int32_t L_9 = L_8;
RuntimeObject * L_10 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_10);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_10);
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0021:
{
int32_t L_12 = V_1;
int32_t L_13 = __this->get__inoutArgCount_1();
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0010;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
return L_14;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Runtime.Remoting.Messaging.AsyncResult
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke& marshaled)
{
Exception_t* ___current_9Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'current' of type 'AsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___current_9Exception, NULL);
}
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke_back(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke& marshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled)
{
Exception_t* ___current_9Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'current' of type 'AsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___current_9Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.AsyncResult
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_pinvoke_cleanup(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Messaging.AsyncResult
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled)
{
Exception_t* ___current_9Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'current' of type 'AsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___current_9Exception, NULL);
}
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com_back(const AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2& unmarshaled)
{
Exception_t* ___current_9Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'current' of type 'AsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___current_9Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.AsyncResult
IL2CPP_EXTERN_C void AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshal_com_cleanup(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_marshaled_com& marshaled)
{
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult__ctor_m2EBAFF464AC0722C702C349D37ABFC651716C956 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::.ctor(System.Threading.WaitCallback,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult__ctor_mCFA5C491314CEE809D783894BC7A9B0358DA9D5A (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * ___cb0, RuntimeObject * ___state1, bool ___capture_context2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult__ctor_mCFA5C491314CEE809D783894BC7A9B0358DA9D5A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_0 = ___cb0;
__this->set_orig_cb_15(L_0);
bool L_1 = ___capture_context2;
if (!L_1)
{
goto IL_002e;
}
}
{
V_0 = 0;
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_2 = ExecutionContext_Capture_m03E9840F580CC8E82725D5969D6132B0ABADD5F2((int32_t*)(&V_0), 3, /*hidden argument*/NULL);
__this->set_current_9(L_2);
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_3 = (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC *)il2cpp_codegen_object_new(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var);
WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31(L_3, __this, (intptr_t)((intptr_t)AsyncResult_U3C_ctorU3Eb__17_0_m474CBF97F60521F1B16BB3FA94D58A206C7015E1_RuntimeMethod_var), /*hidden argument*/NULL);
___cb0 = L_3;
}
IL_002e:
{
RuntimeObject * L_4 = ___state1;
__this->set_async_state_0(L_4);
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_5 = ___cb0;
__this->set_async_delegate_2(L_5);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::WaitCallback_Context(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_WaitCallback_Context_mC3B4E29233E21283C4784C2BA86BC55FFD562F6E (RuntimeObject * ___state0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult_WaitCallback_Context_mC3B4E29233E21283C4784C2BA86BC55FFD562F6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * V_0 = NULL;
{
RuntimeObject * L_0 = ___state0;
V_0 = ((AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 *)CastclassClass((RuntimeObject*)L_0, AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_il2cpp_TypeInfo_var));
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_1 = V_0;
NullCheck(L_1);
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_2 = L_1->get_orig_cb_15();
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4 = L_3->get_async_state_0();
NullCheck(L_2);
WaitCallback_Invoke_mB6A858A1792B8E0DE526C3C157624C1A59EEFA16(L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncResult_get_AsyncState_m9B591BCF2A6830FA6F9E2773C8DB0608ED80B6AA (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_async_state_0();
return L_0;
}
}
// System.Threading.WaitHandle System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncWaitHandle()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * AsyncResult_get_AsyncWaitHandle_m2122EADF631DF9C8A3A83440CA9A0DC6FC8843BC (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult_get_AsyncWaitHandle_m2122EADF631DF9C8A3A83440CA9A0DC6FC8843BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * V_0 = NULL;
bool V_1 = false;
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_1 = __this->get_handle_1();
if (L_1)
{
goto IL_0025;
}
}
IL_0014:
{
bool L_2 = __this->get_completed_6();
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_3 = (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)il2cpp_codegen_object_new(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var);
ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1(L_3, L_2, /*hidden argument*/NULL);
__this->set_handle_1(L_3);
}
IL_0025:
{
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_4 = __this->get_handle_1();
V_2 = L_4;
IL2CPP_LEAVE(0x38, FINALLY_002e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002e;
}
FINALLY_002e:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0037;
}
}
IL_0031:
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0037:
{
IL2CPP_END_FINALLY(46)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(46)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0038:
{
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_7 = V_2;
return L_7;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::get_CompletedSynchronously()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncResult_get_CompletedSynchronously_m0F190DCDD373A6610BD398A5C49D59FB344B5208 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_sync_completed_5();
return L_0;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::get_IsCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncResult_get_IsCompleted_m72A21953EECA7C24E40255CAE0046FC6612BF5D8 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_completed_6();
return L_0;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.AsyncResult::get_EndInvokeCalled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AsyncResult_get_EndInvokeCalled_m51C0FE0166CFF2DE35D64459920DAD75A83E6574 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_endinvoke_called_7();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::set_EndInvokeCalled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_set_EndInvokeCalled_mEED19AD70FF5DED0075D0004A7B465D9EDB62E48 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_endinvoke_called_7(L_0);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncDelegate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncResult_get_AsyncDelegate_m9F9645BB882A06010C91E3370E1165E4EE75D4A6 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_async_delegate_2();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Messaging.AsyncResult::get_NextSink()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_get_NextSink_m02756811E6BA603E4D2C0B8C64AF0A0C825F2CE3 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.AsyncResult::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_AsyncProcessMessage_mD2C85C8758130B39ECF51DCB9A0818A492912929 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult_AsyncProcessMessage_mD2C85C8758130B39ECF51DCB9A0818A492912929_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, AsyncResult_AsyncProcessMessage_mD2C85C8758130B39ECF51DCB9A0818A492912929_RuntimeMethod_var);
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::GetReplyMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_GetReplyMessage_m891FCC0A516F5CE3E2A055EEA63C863074B78632 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_reply_message_14();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::SetMessageCtrl(System.Runtime.Remoting.Messaging.IMessageCtrl)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_SetMessageCtrl_m9F3E93674F5417033EA75D8B4E419C36EF0EC0B3 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, RuntimeObject* ___mc0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___mc0;
__this->set_message_ctrl_13(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::SetCompletedSynchronously(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_SetCompletedSynchronously_m1AC7303421A6F984ACD482C61F55760D42790692 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, bool ___completed0, const RuntimeMethod* method)
{
{
bool L_0 = ___completed0;
__this->set_sync_completed_5(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::EndInvoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_EndInvoke_mDF00A1546A469ECD9D9C93D4D01194F2BDCE2DCE (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * V_0 = NULL;
bool V_1 = false;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
bool L_1 = __this->get_completed_6();
if (!L_1)
{
goto IL_001d;
}
}
IL_0014:
{
RuntimeObject* L_2 = __this->get_reply_message_14();
V_2 = L_2;
IL2CPP_LEAVE(0x3C, FINALLY_001f);
}
IL_001d:
{
IL2CPP_LEAVE(0x29, FINALLY_001f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
{
bool L_3 = V_1;
if (!L_3)
{
goto IL_0028;
}
}
IL_0022:
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_4 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_4, /*hidden argument*/NULL);
}
IL_0028:
{
IL2CPP_END_FINALLY(31)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x3C, IL_003c)
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0029:
{
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_5 = VirtFuncInvoker0< WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * >::Invoke(10 /* System.Threading.WaitHandle System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncWaitHandle() */, __this);
NullCheck(L_5);
VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Threading.WaitHandle::WaitOne() */, L_5);
RuntimeObject* L_6 = __this->get_reply_message_14();
return L_6;
}
IL_003c:
{
RuntimeObject* L_7 = V_2;
return L_7;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncResult_SyncProcessMessage_m2570D8DF531719D2FDC7F5E4A3B2F8A897F568F1 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult_SyncProcessMessage_m2570D8DF531719D2FDC7F5E4A3B2F8A897F568F1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * 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);
{
RuntimeObject* L_0 = ___msg0;
__this->set_reply_message_14(L_0);
V_0 = __this;
V_1 = (bool)0;
}
IL_000b:
try
{ // begin try (depth: 1)
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
__this->set_completed_6((bool)1);
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_2 = __this->get_handle_1();
if (!L_2)
{
goto IL_0033;
}
}
IL_0022:
{
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_3 = VirtFuncInvoker0< WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * >::Invoke(10 /* System.Threading.WaitHandle System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncWaitHandle() */, __this);
NullCheck(((ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var)));
EventWaitHandle_Set_m7959A86A39735296FC949EC86FDA42A6CFAAB94C(((ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)CastclassSealed((RuntimeObject*)L_3, ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_0033:
{
IL2CPP_LEAVE(0x3F, 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)
{
bool L_4 = V_1;
if (!L_4)
{
goto IL_003e;
}
}
IL_0038:
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_5 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_5, /*hidden argument*/NULL);
}
IL_003e:
{
IL2CPP_END_FINALLY(53)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(53)
{
IL2CPP_JUMP_TBL(0x3F, IL_003f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003f:
{
RuntimeObject * L_6 = __this->get_async_callback_8();
if (!L_6)
{
goto IL_0058;
}
}
{
RuntimeObject * L_7 = __this->get_async_callback_8();
NullCheck(((AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)CastclassSealed((RuntimeObject*)L_7, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_il2cpp_TypeInfo_var)));
AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C(((AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 *)CastclassSealed((RuntimeObject*)L_7, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_il2cpp_TypeInfo_var)), __this, /*hidden argument*/NULL);
}
IL_0058:
{
return (RuntimeObject*)NULL;
}
}
// System.Runtime.Remoting.Messaging.MonoMethodMessage System.Runtime.Remoting.Messaging.AsyncResult::get_CallMessage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * AsyncResult_get_CallMessage_m2FD4E7BE9C85D209372C98075BFA603C2CCE577C (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_0 = __this->get_call_message_12();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::set_CallMessage(System.Runtime.Remoting.Messaging.MonoMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_set_CallMessage_mAD854B93251BE37936DCE2234D88E9C00E7C2E8D (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___value0, const RuntimeMethod* method)
{
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_0 = ___value0;
__this->set_call_message_12(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem_m0E442E99D9CACBFE506556846FC609FE7FB6A9E5 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
AsyncResult_Invoke_mEA3F1D003BE6DB4D31DC83761F0F18F3282D01CA(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::System.Threading.IThreadPoolWorkItem.MarkAborted(System.Threading.ThreadAbortException)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_System_Threading_IThreadPoolWorkItem_MarkAborted_m38E11AFA17FFDD3E99211B643D7C479E0BA527E7 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * ___tae0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.AsyncResult::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * AsyncResult_Invoke_mEA3F1D003BE6DB4D31DC83761F0F18F3282D01CA (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
typedef RuntimeObject * (*AsyncResult_Invoke_mEA3F1D003BE6DB4D31DC83761F0F18F3282D01CA_ftn) (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 *);
using namespace il2cpp::icalls;
return ((AsyncResult_Invoke_mEA3F1D003BE6DB4D31DC83761F0F18F3282D01CA_ftn)mscorlib::System::Runtime::Remoting::Messaging::AsyncResult::Invoke) (__this);
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult__cctor_m3F1E9452417D0F66B50F5F1CB88D6A30FEE38A14 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult__cctor_m3F1E9452417D0F66B50F5F1CB88D6A30FEE38A14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_0 = (ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 *)il2cpp_codegen_object_new(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676_il2cpp_TypeInfo_var);
ContextCallback__ctor_m079F8FC3EE21C47D9FDD09FD90C14BDD34539493(L_0, NULL, (intptr_t)((intptr_t)AsyncResult_WaitCallback_Context_mC3B4E29233E21283C4784C2BA86BC55FFD562F6E_RuntimeMethod_var), /*hidden argument*/NULL);
((AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_StaticFields*)il2cpp_codegen_static_fields_for(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_il2cpp_TypeInfo_var))->set_ccb_16(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.AsyncResult::<.ctor>b__17_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncResult_U3C_ctorU3Eb__17_0_m474CBF97F60521F1B16BB3FA94D58A206C7015E1 (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, RuntimeObject * ___U3Cp0U3E0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncResult_U3C_ctorU3Eb__17_0_m474CBF97F60521F1B16BB3FA94D58A206C7015E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_0 = __this->get_current_9();
IL2CPP_RUNTIME_CLASS_INIT(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_il2cpp_TypeInfo_var);
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * L_1 = ((AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_StaticFields*)il2cpp_codegen_static_fields_for(AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2_il2cpp_TypeInfo_var))->get_ccb_16();
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70_il2cpp_TypeInfo_var);
ExecutionContext_Run_mFF76DDA6501D993EB4A4B79EFDAF1F6476920945(L_0, L_1, __this, (bool)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.Runtime.Remoting.Messaging.CADArgHolder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADArgHolder__ctor_m4A7DA606129C95794B2370D6871D66C83B3824A0 (CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * __this, int32_t ___i0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___i0;
__this->set_index_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * V_0 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg0;
CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * L_1 = (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 *)il2cpp_codegen_object_new(CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759_il2cpp_TypeInfo_var);
CADMethodRef__ctor_m3D6403DEB18F97243C60170212641E97C833512E(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * L_2 = V_0;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_3 = CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_3);
__this->set_serializedMethod_4(L_4);
return;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMessageBase::GetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_serializedMethod_4();
RuntimeObject * L_1 = CADSerializer_DeserializeObjectSafe_m220962E09CAFCE7A0A2C2760BF573A385DC61F93(L_0, /*hidden argument*/NULL);
NullCheck(((CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 *)CastclassClass((RuntimeObject*)L_1, CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759_il2cpp_TypeInfo_var)));
MethodBase_t * L_2 = CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA(((CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 *)CastclassClass((RuntimeObject*)L_1, CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
}
// System.Type[] System.Runtime.Remoting.Messaging.CADMessageBase::GetSignature(System.Reflection.MethodBase,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* CADMessageBase_GetSignature_m8985787EA84A7BD76C53DAAE2EE9DA757DEC6855 (MethodBase_t * ___methodBase0, bool ___load1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetSignature_m8985787EA84A7BD76C53DAAE2EE9DA757DEC6855_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL;
int32_t V_2 = 0;
{
MethodBase_t * L_0 = ___methodBase0;
NullCheck(L_0);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0);
V_0 = L_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = V_0;
NullCheck(L_2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
V_1 = L_3;
V_2 = 0;
goto IL_003e;
}
IL_0014:
{
bool L_4 = ___load1;
if (!L_4)
{
goto IL_002f;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = V_1;
int32_t L_6 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_7 = V_0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_10);
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_11);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A, L_12, (bool)1, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_13);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Type_t *)L_13);
goto IL_003a;
}
IL_002f:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_14 = V_1;
int32_t L_15 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_16 = V_0;
int32_t L_17 = V_2;
NullCheck(L_16);
int32_t L_18 = L_17;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_19);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_20);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (Type_t *)L_20);
}
IL_003a:
{
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_003e:
{
int32_t L_22 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_23 = V_0;
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_0014;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_24 = V_1;
return L_24;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::MarshalProperties(System.Collections.IDictionary,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998 (RuntimeObject* ___dict0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * V_2 = NULL;
RuntimeObject* V_3 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_4;
memset((&V_4), 0, sizeof(V_4));
RuntimeObject* V_5 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_6;
memset((&V_6), 0, sizeof(V_6));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___dict0;
V_0 = L_0;
V_1 = 0;
RuntimeObject* L_1 = ___dict0;
V_2 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)IsInstClass((RuntimeObject*)L_1, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var));
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_2 = V_2;
if (!L_2)
{
goto IL_0078;
}
}
{
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_3 = V_2;
NullCheck(L_3);
bool L_4 = MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_00cd;
}
}
{
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_5 = V_2;
NullCheck(L_5);
RuntimeObject* L_6 = MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A(L_5, /*hidden argument*/NULL);
V_0 = L_6;
RuntimeObject* L_7 = V_0;
if (!L_7)
{
goto IL_00cd;
}
}
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_8);
V_3 = L_9;
}
IL_002d:
try
{ // begin try (depth: 1)
{
goto IL_005a;
}
IL_002f:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_10);
V_4 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_11, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_12 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_12);
if (L_13)
{
goto IL_0047;
}
}
IL_0040:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_14 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_15 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_15, /*hidden argument*/NULL);
*((RuntimeObject **)L_14) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_15);
}
IL_0047:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_16 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_16);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_18 = V_4;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_19 = L_18;
RuntimeObject * L_20 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_20);
int32_t L_21 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_005a:
{
RuntimeObject* L_22 = V_3;
NullCheck(L_22);
bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_002f;
}
}
IL_0062:
{
IL2CPP_LEAVE(0xCD, FINALLY_0064);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0064;
}
FINALLY_0064:
{ // begin finally (depth: 1)
{
RuntimeObject* L_24 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_24, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_25 = V_5;
if (!L_25)
{
goto IL_0077;
}
}
IL_0070:
{
RuntimeObject* L_26 = V_5;
NullCheck(L_26);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_26);
}
IL_0077:
{
IL2CPP_END_FINALLY(100)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(100)
{
IL2CPP_JUMP_TBL(0xCD, IL_00cd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0078:
{
RuntimeObject* L_27 = ___dict0;
if (!L_27)
{
goto IL_00cd;
}
}
{
RuntimeObject* L_28 = V_0;
NullCheck(L_28);
RuntimeObject* L_29 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_28);
V_3 = L_29;
}
IL_0082:
try
{ // begin try (depth: 1)
{
goto IL_00af;
}
IL_0084:
{
RuntimeObject* L_30 = V_3;
NullCheck(L_30);
RuntimeObject * L_31 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_30);
V_6 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_31, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_32 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_33 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_32);
if (L_33)
{
goto IL_009c;
}
}
IL_0095:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_34 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_35 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_35, /*hidden argument*/NULL);
*((RuntimeObject **)L_34) = (RuntimeObject *)L_35;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_34, (void*)(RuntimeObject *)L_35);
}
IL_009c:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_36 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_37 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_36);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_38 = V_6;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_39 = L_38;
RuntimeObject * L_40 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_39);
NullCheck(L_37);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_37, L_40);
int32_t L_41 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_00af:
{
RuntimeObject* L_42 = V_3;
NullCheck(L_42);
bool L_43 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_42);
if (L_43)
{
goto IL_0084;
}
}
IL_00b7:
{
IL2CPP_LEAVE(0xCD, FINALLY_00b9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00b9;
}
FINALLY_00b9:
{ // begin finally (depth: 1)
{
RuntimeObject* L_44 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_44, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_45 = V_5;
if (!L_45)
{
goto IL_00cc;
}
}
IL_00c5:
{
RuntimeObject* L_46 = V_5;
NullCheck(L_46);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_46);
}
IL_00cc:
{
IL2CPP_END_FINALLY(185)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(185)
{
IL2CPP_JUMP_TBL(0xCD, IL_00cd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00cd:
{
int32_t L_47 = V_1;
return L_47;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalProperties(System.Collections.IDictionary,System.Int32,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00 (RuntimeObject* ___dict0, int32_t ___count1, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
V_0 = 0;
goto IL_0029;
}
IL_0004:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = ___args2;
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_1 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_2, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject* L_3 = ___dict0;
RuntimeObject * L_4 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_5 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_3, L_4, L_5);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0029:
{
int32_t L_7 = V_0;
int32_t L_8 = ___count1;
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.CADMessageBase::IsPossibleToIgnoreMarshal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CADMessageBase_IsPossibleToIgnoreMarshal_m4D7D2CC00D75417E9768294057FDA46A67297C04 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_IsPossibleToIgnoreMarshal_m4D7D2CC00D75417E9768294057FDA46A67297C04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Type_t * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0021;
}
}
{
Type_t * L_4 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_5, /*hidden argument*/NULL);
bool L_7 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0023;
}
}
IL_0021:
{
return (bool)1;
}
IL_0023:
{
Type_t * L_8 = V_0;
NullCheck(L_8);
bool L_9 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0048;
}
}
{
Type_t * L_10 = V_0;
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_10);
NullCheck(L_11);
bool L_12 = Type_get_IsPrimitive_m8E39430EE4B70E1AE690B51E9BE681C7758DFF5A(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0048;
}
}
{
RuntimeObject * L_13 = ___obj0;
NullCheck(((RuntimeArray *)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)));
int32_t L_14 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(((RuntimeArray *)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_0048;
}
}
{
return (bool)1;
}
IL_0048:
{
RuntimeObject * L_15 = ___obj0;
if (((String_t*)IsInstSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_16 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_16, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_17 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_0062;
}
}
IL_0060:
{
return (bool)1;
}
IL_0062:
{
return (bool)0;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArgument(System.Object,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject * ___arg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * V_0 = NULL;
{
RuntimeObject * L_0 = ___arg0;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___arg0;
bool L_2 = CADMessageBase_IsPossibleToIgnoreMarshal_m4D7D2CC00D75417E9768294057FDA46A67297C04(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
RuntimeObject * L_3 = ___arg0;
return L_3;
}
IL_000f:
{
RuntimeObject * L_4 = ___arg0;
V_0 = ((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)IsInstClass((RuntimeObject*)L_4, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var));
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_5 = V_0;
if (!L_5)
{
goto IL_0032;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_7 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0032;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_9 = RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3(L_8, /*hidden argument*/NULL);
int32_t L_10 = Thread_GetDomainID_m7C6DEB9A3289C82B0B17F7234DCA9D2677731547(/*hidden argument*/NULL);
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * L_11 = (CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 *)il2cpp_codegen_object_new(CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591_il2cpp_TypeInfo_var);
CADObjRef__ctor_m0DCA6A0D8746774AFF35E60349FA5D86D81820A2(L_11, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0032:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_12 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_12);
if (L_13)
{
goto IL_003d;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_14 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_15 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_15, /*hidden argument*/NULL);
*((RuntimeObject **)L_14) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_15);
}
IL_003d:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_16 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_16);
RuntimeObject * L_18 = ___arg0;
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_19 = ___args1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_20 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_19);
NullCheck(L_20);
int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_20);
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_22 = (CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A *)il2cpp_codegen_object_new(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A_il2cpp_TypeInfo_var);
CADArgHolder__ctor_m4A7DA606129C95794B2370D6871D66C83B3824A0(L_22, ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/NULL);
return L_22;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArgument(System.Object,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject * ___arg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * V_0 = NULL;
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * V_1 = NULL;
RuntimeArray * V_2 = NULL;
RuntimeArray * V_3 = NULL;
int32_t V_4 = 0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_5;
memset((&V_5), 0, sizeof(V_5));
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_6;
memset((&V_6), 0, sizeof(V_6));
{
RuntimeObject * L_0 = ___arg0;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___arg0;
V_0 = ((CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A *)IsInstClass((RuntimeObject*)L_1, CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A_il2cpp_TypeInfo_var));
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = ___args1;
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = L_4->get_index_0();
NullCheck(L_3);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, L_5);
return L_6;
}
IL_001c:
{
RuntimeObject * L_7 = ___arg0;
V_1 = ((CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 *)IsInstClass((RuntimeObject*)L_7, CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591_il2cpp_TypeInfo_var));
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * L_8 = V_1;
if (!L_8)
{
goto IL_0043;
}
}
{
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * L_9 = V_1;
NullCheck(L_9);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_10 = L_9->get_objref_0();
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * L_11 = V_1;
NullCheck(L_11);
int32_t L_12 = L_11->get_SourceDomain_1();
CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * L_13 = V_1;
NullCheck(L_13);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = L_13->get_TypeInfo_2();
NullCheck(L_10);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_15 = ObjRef_DeserializeInTheCurrentDomain_mE66C6F771B2F2A032558CDEC0C775780CAA57C1D(L_10, L_12, L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A(L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0043:
{
RuntimeObject * L_17 = ___arg0;
if (!((RuntimeArray *)IsInstClass((RuntimeObject*)L_17, RuntimeArray_il2cpp_TypeInfo_var)))
{
goto IL_017b;
}
}
{
RuntimeObject * L_18 = ___arg0;
V_2 = ((RuntimeArray *)CastclassClass((RuntimeObject*)L_18, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeObject * L_19 = ___arg0;
NullCheck(L_19);
Type_t * L_20 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_20);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
int32_t L_22 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F(L_21, /*hidden argument*/NULL);
V_4 = L_22;
int32_t L_23 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)3)))
{
case 0:
{
goto IL_00a9;
}
case 1:
{
goto IL_00cb;
}
case 2:
{
goto IL_0125;
}
case 3:
{
goto IL_00ba;
}
case 4:
{
goto IL_00fb;
}
case 5:
{
goto IL_0141;
}
case 6:
{
goto IL_0109;
}
case 7:
{
goto IL_014f;
}
case 8:
{
goto IL_0117;
}
case 9:
{
goto IL_015d;
}
case 10:
{
goto IL_0133;
}
case 11:
{
goto IL_00ed;
}
case 12:
{
goto IL_00dc;
}
}
}
{
goto IL_016b;
}
IL_00a9:
{
RuntimeArray * L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_24, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_26 = (BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040*)SZArrayNew(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040_il2cpp_TypeInfo_var, (uint32_t)L_25);
V_3 = (RuntimeArray *)L_26;
goto IL_0171;
}
IL_00ba:
{
RuntimeArray * L_27 = V_2;
NullCheck(L_27);
int32_t L_28 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_27, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_28);
V_3 = (RuntimeArray *)L_29;
goto IL_0171;
}
IL_00cb:
{
RuntimeArray * L_30 = V_2;
NullCheck(L_30);
int32_t L_31 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_30, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_31);
V_3 = (RuntimeArray *)L_32;
goto IL_0171;
}
IL_00dc:
{
RuntimeArray * L_33 = V_2;
NullCheck(L_33);
int32_t L_34 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_33, /*hidden argument*/NULL);
DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_35 = (DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*)(DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F*)SZArrayNew(DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F_il2cpp_TypeInfo_var, (uint32_t)L_34);
V_3 = (RuntimeArray *)L_35;
goto IL_0171;
}
IL_00ed:
{
RuntimeArray * L_36 = V_2;
NullCheck(L_36);
int32_t L_37 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_36, /*hidden argument*/NULL);
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_38 = (DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D*)SZArrayNew(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D_il2cpp_TypeInfo_var, (uint32_t)L_37);
V_3 = (RuntimeArray *)L_38;
goto IL_0171;
}
IL_00fb:
{
RuntimeArray * L_39 = V_2;
NullCheck(L_39);
int32_t L_40 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_39, /*hidden argument*/NULL);
Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_41 = (Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*)(Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28*)SZArrayNew(Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28_il2cpp_TypeInfo_var, (uint32_t)L_40);
V_3 = (RuntimeArray *)L_41;
goto IL_0171;
}
IL_0109:
{
RuntimeArray * L_42 = V_2;
NullCheck(L_42);
int32_t L_43 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_42, /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_44 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)L_43);
V_3 = (RuntimeArray *)L_44;
goto IL_0171;
}
IL_0117:
{
RuntimeArray * L_45 = V_2;
NullCheck(L_45);
int32_t L_46 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_45, /*hidden argument*/NULL);
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_47 = (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)SZArrayNew(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var, (uint32_t)L_46);
V_3 = (RuntimeArray *)L_47;
goto IL_0171;
}
IL_0125:
{
RuntimeArray * L_48 = V_2;
NullCheck(L_48);
int32_t L_49 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_48, /*hidden argument*/NULL);
SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_50 = (SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*)(SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889*)SZArrayNew(SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889_il2cpp_TypeInfo_var, (uint32_t)L_49);
V_3 = (RuntimeArray *)L_50;
goto IL_0171;
}
IL_0133:
{
RuntimeArray * L_51 = V_2;
NullCheck(L_51);
int32_t L_52 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_51, /*hidden argument*/NULL);
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_53 = (SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5*)SZArrayNew(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5_il2cpp_TypeInfo_var, (uint32_t)L_52);
V_3 = (RuntimeArray *)L_53;
goto IL_0171;
}
IL_0141:
{
RuntimeArray * L_54 = V_2;
NullCheck(L_54);
int32_t L_55 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_54, /*hidden argument*/NULL);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_56 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)L_55);
V_3 = (RuntimeArray *)L_56;
goto IL_0171;
}
IL_014f:
{
RuntimeArray * L_57 = V_2;
NullCheck(L_57);
int32_t L_58 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_57, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_59 = (UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB*)SZArrayNew(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB_il2cpp_TypeInfo_var, (uint32_t)L_58);
V_3 = (RuntimeArray *)L_59;
goto IL_0171;
}
IL_015d:
{
RuntimeArray * L_60 = V_2;
NullCheck(L_60);
int32_t L_61 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_60, /*hidden argument*/NULL);
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_62 = (UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4*)SZArrayNew(UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4_il2cpp_TypeInfo_var, (uint32_t)L_61);
V_3 = (RuntimeArray *)L_62;
goto IL_0171;
}
IL_016b:
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_63 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_63, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D_RuntimeMethod_var);
}
IL_0171:
{
RuntimeArray * L_64 = V_2;
RuntimeArray * L_65 = V_3;
NullCheck(L_64);
Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7(L_64, L_65, 0, /*hidden argument*/NULL);
RuntimeArray * L_66 = V_3;
return L_66;
}
IL_017b:
{
RuntimeObject * L_67 = ___arg0;
NullCheck(L_67);
Type_t * L_68 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
int32_t L_69 = Type_GetTypeCode_m3105BBCE671D89EFE212F9BA06AAB90944A6116F(L_68, /*hidden argument*/NULL);
V_4 = L_69;
int32_t L_70 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)3)))
{
case 0:
{
goto IL_01d6;
}
case 1:
{
goto IL_01ee;
}
case 2:
{
goto IL_0236;
}
case 3:
{
goto IL_01e2;
}
case 4:
{
goto IL_0212;
}
case 5:
{
goto IL_024e;
}
case 6:
{
goto IL_021e;
}
case 7:
{
goto IL_025a;
}
case 8:
{
goto IL_022a;
}
case 9:
{
goto IL_0266;
}
case 10:
{
goto IL_0242;
}
case 11:
{
goto IL_0206;
}
case 12:
{
goto IL_01fa;
}
case 13:
{
goto IL_027e;
}
case 14:
{
goto IL_0298;
}
case 15:
{
goto IL_0272;
}
}
}
{
goto IL_0298;
}
IL_01d6:
{
RuntimeObject * L_71 = ___arg0;
bool L_72 = ((*(bool*)((bool*)UnBox(L_71, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))));
RuntimeObject * L_73 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_72);
return L_73;
}
IL_01e2:
{
RuntimeObject * L_74 = ___arg0;
uint8_t L_75 = ((*(uint8_t*)((uint8_t*)UnBox(L_74, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))));
RuntimeObject * L_76 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_75);
return L_76;
}
IL_01ee:
{
RuntimeObject * L_77 = ___arg0;
Il2CppChar L_78 = ((*(Il2CppChar*)((Il2CppChar*)UnBox(L_77, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))));
RuntimeObject * L_79 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_78);
return L_79;
}
IL_01fa:
{
RuntimeObject * L_80 = ___arg0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_81 = ((*(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)UnBox(L_80, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var))));
RuntimeObject * L_82 = Box(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_il2cpp_TypeInfo_var, &L_81);
return L_82;
}
IL_0206:
{
RuntimeObject * L_83 = ___arg0;
double L_84 = ((*(double*)((double*)UnBox(L_83, Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var))));
RuntimeObject * L_85 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_84);
return L_85;
}
IL_0212:
{
RuntimeObject * L_86 = ___arg0;
int16_t L_87 = ((*(int16_t*)((int16_t*)UnBox(L_86, Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var))));
RuntimeObject * L_88 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_87);
return L_88;
}
IL_021e:
{
RuntimeObject * L_89 = ___arg0;
int32_t L_90 = ((*(int32_t*)((int32_t*)UnBox(L_89, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
RuntimeObject * L_91 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_90);
return L_91;
}
IL_022a:
{
RuntimeObject * L_92 = ___arg0;
int64_t L_93 = ((*(int64_t*)((int64_t*)UnBox(L_92, Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var))));
RuntimeObject * L_94 = Box(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_il2cpp_TypeInfo_var, &L_93);
return L_94;
}
IL_0236:
{
RuntimeObject * L_95 = ___arg0;
int8_t L_96 = ((*(int8_t*)((int8_t*)UnBox(L_95, SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var))));
RuntimeObject * L_97 = Box(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_il2cpp_TypeInfo_var, &L_96);
return L_97;
}
IL_0242:
{
RuntimeObject * L_98 = ___arg0;
float L_99 = ((*(float*)((float*)UnBox(L_98, Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var))));
RuntimeObject * L_100 = Box(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_il2cpp_TypeInfo_var, &L_99);
return L_100;
}
IL_024e:
{
RuntimeObject * L_101 = ___arg0;
uint16_t L_102 = ((*(uint16_t*)((uint16_t*)UnBox(L_101, UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var))));
RuntimeObject * L_103 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_102);
return L_103;
}
IL_025a:
{
RuntimeObject * L_104 = ___arg0;
uint32_t L_105 = ((*(uint32_t*)((uint32_t*)UnBox(L_104, UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var))));
RuntimeObject * L_106 = Box(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_il2cpp_TypeInfo_var, &L_105);
return L_106;
}
IL_0266:
{
RuntimeObject * L_107 = ___arg0;
uint64_t L_108 = ((*(uint64_t*)((uint64_t*)UnBox(L_107, UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var))));
RuntimeObject * L_109 = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &L_108);
return L_109;
}
IL_0272:
{
RuntimeObject * L_110 = ___arg0;
String_t* L_111 = String_Copy_m521EF2A77A1F54EFAB52903A780485ECD171EFA7(((String_t*)CastclassSealed((RuntimeObject*)L_110, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_111;
}
IL_027e:
{
RuntimeObject * L_112 = ___arg0;
V_5 = ((*(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)UnBox(L_112, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var))));
int64_t L_113 = DateTime_get_Ticks_mBCB529E43D065E498EAF08971D2EB49D5CB59D60((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_5), /*hidden argument*/NULL);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_114;
memset((&L_114), 0, sizeof(L_114));
DateTime__ctor_m027A935E14EB81BCC0739BD56AE60CDE3387990C((&L_114), L_113, /*hidden argument*/NULL);
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_115 = L_114;
RuntimeObject * L_116 = Box(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_il2cpp_TypeInfo_var, &L_115);
return L_116;
}
IL_0298:
{
RuntimeObject * L_117 = ___arg0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_117, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var)))
{
goto IL_02ba;
}
}
{
RuntimeObject * L_118 = ___arg0;
V_6 = ((*(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)UnBox(L_118, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var))));
int64_t L_119 = TimeSpan_get_Ticks_m829C28C42028CDBFC9E338962DC7B6B10C8FFBE7_inline((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_6), /*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_120;
memset((&L_120), 0, sizeof(L_120));
TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline((&L_120), L_119, /*hidden argument*/NULL);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_121 = L_120;
RuntimeObject * L_122 = Box(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_il2cpp_TypeInfo_var, &L_121);
return L_122;
}
IL_02ba:
{
RuntimeObject * L_123 = ___arg0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_123, IntPtr_t_il2cpp_TypeInfo_var)))
{
goto IL_02ce;
}
}
{
RuntimeObject * L_124 = ___arg0;
intptr_t L_125 = ((*(intptr_t*)((intptr_t*)UnBox(L_124, IntPtr_t_il2cpp_TypeInfo_var))));
RuntimeObject * L_126 = Box(IntPtr_t_il2cpp_TypeInfo_var, &L_125);
return L_126;
}
IL_02ce:
{
RuntimeObject * L_127 = ___arg0;
NullCheck(L_127);
Type_t * L_128 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_127, /*hidden argument*/NULL);
String_t* L_129 = String_Concat_m2E1F71C491D2429CC80A28745488FEA947BB7AAC(_stringLiteralFCFACB85BEA1A1CD285880B297479A7AB82A099A, L_128, _stringLiteralD073258B488473E169677942A609E003142161BA, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_130 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_130, L_129, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_130, CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D_RuntimeMethod_var);
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArguments(System.Object[],System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___arguments0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___arguments0;
NullCheck(L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___arguments0;
NullCheck(L_2);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
V_2 = 0;
goto IL_0022;
}
IL_0011:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
int32_t L_4 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___arguments0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_9 = ___args1;
RuntimeObject * L_10 = CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC(__this, L_8, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_9, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_10);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_10);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0022:
{
int32_t L_12 = V_2;
int32_t L_13 = V_1;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0011;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
return L_14;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArguments(System.Object[],System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___arguments0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___arguments0;
NullCheck(L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___arguments0;
NullCheck(L_2);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
V_2 = 0;
goto IL_0022;
}
IL_0011:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0;
int32_t L_4 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___arguments0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_9 = ___args1;
RuntimeObject * L_10 = CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D(__this, L_8, L_9, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_10);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_10);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0022:
{
int32_t L_12 = V_2;
int32_t L_13 = V_1;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0011;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = V_0;
return L_14;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::SaveLogicalCallContext(System.Runtime.Remoting.Messaging.IMethodMessage,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, RuntimeObject* ___msg0, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** ___serializeList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
NullCheck(L_0);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_0);
if (!L_1)
{
goto IL_0040;
}
}
{
RuntimeObject* L_2 = ___msg0;
NullCheck(L_2);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_3 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
NullCheck(L_3);
bool L_4 = LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0040;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_5 = ___serializeList1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_5);
if (L_6)
{
goto IL_0020;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_7 = ___serializeList1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_8 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_8, /*hidden argument*/NULL);
*((RuntimeObject **)L_7) = (RuntimeObject *)L_8;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)L_8);
}
IL_0020:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_9 = ___serializeList1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_9);
NullCheck(L_10);
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_12 = (CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A *)il2cpp_codegen_object_new(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A_il2cpp_TypeInfo_var);
CADArgHolder__ctor_m4A7DA606129C95794B2370D6871D66C83B3824A0(L_12, L_11, /*hidden argument*/NULL);
__this->set__callContext_3(L_12);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** L_13 = ___serializeList1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_14 = *((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)L_13);
RuntimeObject* L_15 = ___msg0;
NullCheck(L_15);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_16 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_15);
NullCheck(L_14);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_16);
}
IL_0040:
{
return;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CADMessageBase::GetLogicalCallContext(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982 (CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_0 = __this->get__callContext_3();
if (L_0)
{
goto IL_000a;
}
}
{
return (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL;
}
IL_000a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___args0;
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_2 = __this->get__callContext_3();
NullCheck(L_2);
int32_t L_3 = L_2->get_index_0();
NullCheck(L_1);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_3);
return ((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)CastclassSealed((RuntimeObject*)L_4, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CADMethodCallMessage_get_Uri_m15EEB5FEBEF308CC593B7EFFD2480E2C2E393B1E (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_5();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.CADMethodCallMessage System.Runtime.Remoting.Messaging.CADMethodCallMessage::Create(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * CADMethodCallMessage_Create_mBA25229E51DAEADB2E34731F004E6767FF6F927E (RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage_Create_mBA25229E51DAEADB2E34731F004E6767FF6F927E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 *)NULL;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_3 = (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 *)il2cpp_codegen_object_new(CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8_il2cpp_TypeInfo_var);
CADMethodCallMessage__ctor_mA8B6D39FB99F741D7CA9B491281EBE8F23691331(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodCallMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodCallMessage__ctor_mA8B6D39FB99F741D7CA9B491281EBE8F23691331 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage__ctor_mA8B6D39FB99F741D7CA9B491281EBE8F23691331_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_1 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E(__this, L_0, /*hidden argument*/NULL);
RuntimeObject* L_1 = ___callMsg0;
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_1);
__this->set__uri_5(L_2);
V_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
RuntimeObject* L_3 = ___callMsg0;
NullCheck(L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.IMessage::get_Properties() */, IMessage_t959A000023FFE2ED91C7AF8BB68CB6482888F8EB_il2cpp_TypeInfo_var, L_3);
int32_t L_5 = CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998(L_4, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__propertyCount_2(L_5);
RuntimeObject* L_6 = ___callMsg0;
NullCheck(L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707(__this, L_7, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__args_0(L_8);
RuntimeObject* L_9 = ___callMsg0;
CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04(__this, L_9, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = V_0;
if (!L_10)
{
goto IL_0060;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_11 = V_0;
NullCheck(L_11);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = VirtFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(36 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_11);
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_13 = CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047((RuntimeObject *)(RuntimeObject *)L_12, /*hidden argument*/NULL);
V_1 = L_13;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_14 = V_1;
NullCheck(L_14);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_14);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__serializedArgs_1(L_15);
}
IL_0060:
{
return;
}
}
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * CADMethodCallMessage_GetArguments_m439B2118804E94D73DDDB17290603428C3D000A0 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage_GetArguments_m439B2118804E94D73DDDB17290603428C3D000A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
{
V_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__serializedArgs_1();
if (!L_0)
{
goto IL_002c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__serializedArgs_1();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_2 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF(L_2, L_1, /*hidden argument*/NULL);
RuntimeObject * L_3 = CADSerializer_DeserializeObject_m5E2E88AC33CEA6A74DB5DB67846385EE2CE3B978(L_2, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_4, (RuntimeObject*)(RuntimeObject*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_4;
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__serializedArgs_1((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
}
IL_002c:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_5 = V_0;
return L_5;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMethodCallMessage_GetArgs_mD48812F959652364E7516C67D4A9BB271EB66ED8 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__args_0();
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___args0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_PropertiesCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMethodCallMessage_get_PropertiesCount_mC293969177A5F92BFDBA4DF33985FAB6B80303A3 (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__propertyCount_2();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodRef::GetTypes(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44 (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___typeArray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL;
int32_t V_1 = 0;
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___typeArray0;
NullCheck(L_0);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
V_1 = 0;
goto IL_001d;
}
IL_000d:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = V_0;
int32_t L_3 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = ___typeArray0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A, L_7, (bool)1, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_8);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (Type_t *)L_8);
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_001d:
{
int32_t L_10 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = ___typeArray0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_000d;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = V_0;
return L_12;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMethodRef::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
MethodBase_t * V_1 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_2 = NULL;
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* V_3 = NULL;
int32_t V_4 = 0;
MethodInfo_t * V_5 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_6 = NULL;
int32_t V_7 = 0;
{
String_t* L_0 = __this->get_typeName_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_m8A8A6481B24551476F2AF999A970AD705BA68C7A, L_0, (bool)1, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
V_0 = L_1;
V_1 = (MethodBase_t *)NULL;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get_param_names_3();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44(__this, L_2, /*hidden argument*/NULL);
V_2 = L_3;
bool L_4 = __this->get_ctor_0();
if (!L_4)
{
goto IL_0032;
}
}
{
Type_t * L_5 = V_0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = V_2;
NullCheck(L_5);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_7 = Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07(L_5, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_6, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_0044;
}
IL_0032:
{
Type_t * L_8 = V_0;
String_t* L_9 = __this->get_methodName_2();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_10 = V_2;
NullCheck(L_8);
MethodInfo_t * L_11 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_8, L_9, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_10, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_1 = L_11;
}
IL_0044:
{
MethodBase_t * L_12 = V_1;
bool L_13 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_12, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_005f;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = __this->get_generic_arg_names_4();
if (!L_14)
{
goto IL_005f;
}
}
{
MethodBase_t * L_15 = V_1;
NullCheck(L_15);
bool L_16 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_15);
if (L_16)
{
goto IL_005f;
}
}
{
V_1 = (MethodBase_t *)NULL;
}
IL_005f:
{
MethodBase_t * L_17 = V_1;
bool L_18 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_17, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0088;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = __this->get_generic_arg_names_4();
if (!L_19)
{
goto IL_0088;
}
}
{
MethodBase_t * L_20 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = __this->get_generic_arg_names_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_22 = CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44(__this, L_21, /*hidden argument*/NULL);
NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_20, MethodInfo_t_il2cpp_TypeInfo_var)));
MethodInfo_t * L_23 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_20, MethodInfo_t_il2cpp_TypeInfo_var)), L_22);
V_1 = L_23;
}
IL_0088:
{
MethodBase_t * L_24 = V_1;
bool L_25 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_24, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_0160;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_26 = __this->get_generic_arg_names_4();
if (!L_26)
{
goto IL_0160;
}
}
{
Type_t * L_27 = V_0;
NullCheck(L_27);
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_28 = Type_GetMethods_m50864CCA29AC38E53711C885031DB3793D4C8C60(L_27, /*hidden argument*/NULL);
V_3 = L_28;
V_4 = 0;
goto IL_0156;
}
IL_00ae:
{
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_29 = V_3;
int32_t L_30 = V_4;
NullCheck(L_29);
int32_t L_31 = L_30;
MethodInfo_t * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_5 = L_32;
MethodInfo_t * L_33 = V_5;
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_33);
String_t* L_35 = __this->get_methodName_2();
bool L_36 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_34, L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0150;
}
}
{
MethodInfo_t * L_37 = V_5;
NullCheck(L_37);
bool L_38 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_37);
if (!L_38)
{
goto IL_0150;
}
}
{
MethodInfo_t * L_39 = V_5;
NullCheck(L_39);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_40 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_39);
NullCheck(L_40);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_41 = __this->get_generic_arg_names_4();
NullCheck(L_41);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length))))))))
{
goto IL_0150;
}
}
{
MethodInfo_t * L_42 = V_5;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_43 = __this->get_generic_arg_names_4();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_44 = CADMethodRef_GetTypes_m0AAF488D77C609ADC2FE3D0F100502AE2FADBE44(__this, L_43, /*hidden argument*/NULL);
NullCheck(L_42);
MethodInfo_t * L_45 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_42, L_44);
V_1 = L_45;
MethodBase_t * L_46 = V_1;
NullCheck(L_46);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_47 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_46);
V_6 = L_47;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_48 = __this->get_param_names_3();
NullCheck(L_48);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_49 = V_6;
NullCheck(L_49);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length))))))))
{
goto IL_0150;
}
}
{
V_7 = 0;
goto IL_013f;
}
IL_0116:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_50 = V_6;
int32_t L_51 = V_7;
NullCheck(L_50);
int32_t L_52 = L_51;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
NullCheck(L_53);
Type_t * L_54 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_53);
NullCheck(L_54);
String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_54);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_56 = __this->get_param_names_3();
int32_t L_57 = V_7;
NullCheck(L_56);
int32_t L_58 = L_57;
String_t* L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
bool L_60 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_55, L_59, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0139;
}
}
{
V_1 = (MethodBase_t *)NULL;
goto IL_0147;
}
IL_0139:
{
int32_t L_61 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
}
IL_013f:
{
int32_t L_62 = V_7;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_63 = V_6;
NullCheck(L_63);
if ((((int32_t)L_62) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length)))))))
{
goto IL_0116;
}
}
IL_0147:
{
MethodBase_t * L_64 = V_1;
bool L_65 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_64, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (L_65)
{
goto IL_0160;
}
}
IL_0150:
{
int32_t L_66 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
}
IL_0156:
{
int32_t L_67 = V_4;
MethodInfoU5BU5D_t93E968F23AF2DB5CFCFF13BE775A0E222C03586B* L_68 = V_3;
NullCheck(L_68);
if ((((int32_t)L_67) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length)))))))
{
goto IL_00ae;
}
}
IL_0160:
{
MethodBase_t * L_69 = V_1;
bool L_70 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_69, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_70)
{
goto IL_0185;
}
}
{
String_t* L_71 = __this->get_methodName_2();
String_t* L_72 = __this->get_typeName_1();
String_t* L_73 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral11D295715C38C4B50C80282B2BD01540AEA807F8, L_71, L_72, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_74 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_74, L_73, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, CADMethodRef_Resolve_m5C588AE2434256D374BF50342EC15CA18436F5EA_RuntimeMethod_var);
}
IL_0185:
{
MethodBase_t * L_75 = V_1;
return L_75;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodRef::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodRef__ctor_m3D6403DEB18F97243C60170212641E97C833512E (CADMethodRef_t5AA4D29CC08E917A0691DD37DB71600FC0059759 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef__ctor_m3D6403DEB18F97243C60170212641E97C833512E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodBase_t * V_0 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_1 = NULL;
int32_t V_2 = 0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_3 = NULL;
int32_t V_4 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg0;
NullCheck(L_0);
MethodBase_t * L_1 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
MethodBase_t * L_2 = V_0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_2);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_3);
__this->set_typeName_1(L_4);
MethodBase_t * L_5 = V_0;
NullCheck(L_5);
bool L_6 = MethodBase_get_IsConstructor_mB9D1652FC7716077DAADB6F5F0F1BE6E7199413C(L_5, /*hidden argument*/NULL);
__this->set_ctor_0(L_6);
MethodBase_t * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7);
__this->set_methodName_2(L_8);
MethodBase_t * L_9 = V_0;
NullCheck(L_9);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_10 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_9);
V_1 = L_10;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_11 = V_1;
NullCheck(L_11);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))));
__this->set_param_names_3(L_12);
V_2 = 0;
goto IL_0068;
}
IL_004f:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = __this->get_param_names_3();
int32_t L_14 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_15 = V_1;
int32_t L_16 = V_2;
NullCheck(L_15);
int32_t L_17 = L_16;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_18);
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_18);
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_19);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_20);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (String_t*)L_20);
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_0068:
{
int32_t L_22 = V_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_23 = V_1;
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_004f;
}
}
{
bool L_24 = __this->get_ctor_0();
if (L_24)
{
goto IL_00b7;
}
}
{
MethodBase_t * L_25 = V_0;
NullCheck(L_25);
bool L_26 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_25);
if (!L_26)
{
goto IL_00b7;
}
}
{
MethodBase_t * L_27 = V_0;
NullCheck(L_27);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_27);
V_3 = L_28;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_29 = V_3;
NullCheck(L_29);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_30 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))));
__this->set_generic_arg_names_4(L_30);
V_4 = 0;
goto IL_00b0;
}
IL_0098:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_31 = __this->get_generic_arg_names_4();
int32_t L_32 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = L_34;
Type_t * L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_36);
String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_36);
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_37);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (String_t*)L_37);
int32_t L_38 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_00b0:
{
int32_t L_39 = V_4;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_40 = V_3;
NullCheck(L_40);
if ((((int32_t)L_39) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))))))
{
goto IL_0098;
}
}
IL_00b7:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage System.Runtime.Remoting.Messaging.CADMethodReturnMessage::Create(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * CADMethodReturnMessage_Create_m4C63A24FC645651E4137AE00A6E7037F480E4062 (RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_Create_m4C63A24FC645651E4137AE00A6E7037F480E4062_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C *)NULL;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_3 = (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C *)il2cpp_codegen_object_new(CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C_il2cpp_TypeInfo_var);
CADMethodReturnMessage__ctor_mEB5A55493B58D60C094D7CEF0A6DC0B195F88D42(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodReturnMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodReturnMessage__ctor_mEB5A55493B58D60C094D7CEF0A6DC0B195F88D42 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, RuntimeObject* ___retMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage__ctor_mEB5A55493B58D60C094D7CEF0A6DC0B195F88D42_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_1 = NULL;
{
RuntimeObject* L_0 = ___retMsg0;
CADMessageBase__ctor_m073A45282178AB872729171B3D384AE32332739E(__this, L_0, /*hidden argument*/NULL);
V_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
RuntimeObject* L_1 = ___retMsg0;
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.IMessage::get_Properties() */, IMessage_t959A000023FFE2ED91C7AF8BB68CB6482888F8EB_il2cpp_TypeInfo_var, L_1);
int32_t L_3 = CADMessageBase_MarshalProperties_m1636AE4D27C1D5AADD251FBBA5A32F899F4E7998(L_2, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__propertyCount_2(L_3);
RuntimeObject* L_4 = ___retMsg0;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_4);
RuntimeObject * L_6 = CADMessageBase_MarshalArgument_m918C1456B830145432EFA51E61885E083C9A0CBC(__this, L_5, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
__this->set__returnValue_5(L_6);
RuntimeObject* L_7 = ___retMsg0;
NullCheck(L_7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = CADMessageBase_MarshalArguments_m303E94E91290009C469476029B5D3C7464951707(__this, L_8, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__args_0(L_9);
MethodBase_t * L_10 = CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2(__this, /*hidden argument*/NULL);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_11 = CADMessageBase_GetSignature_m8985787EA84A7BD76C53DAAE2EE9DA757DEC6855(L_10, (bool)1, /*hidden argument*/NULL);
__this->set__sig_7(L_11);
RuntimeObject* L_12 = ___retMsg0;
NullCheck(L_12);
Exception_t * L_13 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_12);
if (!L_13)
{
goto IL_0085;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_14 = V_0;
if (L_14)
{
goto IL_0067;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_15 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_15, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_0067:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_16);
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_18 = (CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A *)il2cpp_codegen_object_new(CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A_il2cpp_TypeInfo_var);
CADArgHolder__ctor_m4A7DA606129C95794B2370D6871D66C83B3824A0(L_18, L_17, /*hidden argument*/NULL);
__this->set__exception_6(L_18);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_19 = V_0;
RuntimeObject* L_20 = ___retMsg0;
NullCheck(L_20);
Exception_t * L_21 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_20);
NullCheck(L_19);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_19, L_21);
}
IL_0085:
{
RuntimeObject* L_22 = ___retMsg0;
CADMessageBase_SaveLogicalCallContext_m935FDC42D45651300258F9DF3F927A31873C5B04(__this, L_22, (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 **)(&V_0), /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_23 = V_0;
if (!L_23)
{
goto IL_00a9;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_24 = V_0;
NullCheck(L_24);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = VirtFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(36 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_24);
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_26 = CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047((RuntimeObject *)(RuntimeObject *)L_25, /*hidden argument*/NULL);
V_1 = L_26;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_27 = V_1;
NullCheck(L_27);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_27);
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__serializedArgs_1(L_28);
}
IL_00a9:
{
return;
}
}
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * CADMethodReturnMessage_GetArguments_mDBC49529C7A1827E77267AD5697D8E3BEA1D561A (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_GetArguments_mDBC49529C7A1827E77267AD5697D8E3BEA1D561A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
{
V_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__serializedArgs_1();
if (!L_0)
{
goto IL_002c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__serializedArgs_1();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_2 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF(L_2, L_1, /*hidden argument*/NULL);
RuntimeObject * L_3 = CADSerializer_DeserializeObject_m5E2E88AC33CEA6A74DB5DB67846385EE2CE3B978(L_2, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1(L_4, (RuntimeObject*)(RuntimeObject*)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_3, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_4;
((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->set__serializedArgs_1((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL);
}
IL_002c:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_5 = V_0;
return L_5;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* CADMethodReturnMessage_GetArgs_m2FF58140F17FED157937B52541805B215DFF2B03 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__args_0();
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___args0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = CADMessageBase_UnmarshalArguments_m2328B0BA795039314434073499C9E107618BD0A1(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetReturnValue(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMethodReturnMessage_GetReturnValue_m80FC97EA8DEE9B873A46DCF94588BB66CF3D613C (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__returnValue_5();
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___args0;
RuntimeObject * L_2 = CADMessageBase_UnmarshalArgument_m35886ADF2B5BB3D8BF2334A68B7A7A0E8692650D(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Exception System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetException(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * CADMethodReturnMessage_GetException_mD7E1261D3ABCF6432AF69C671940511C9D8C47D4 (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_GetException_mD7E1261D3ABCF6432AF69C671940511C9D8C47D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_0 = __this->get__exception_6();
if (L_0)
{
goto IL_000a;
}
}
{
return (Exception_t *)NULL;
}
IL_000a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___args0;
CADArgHolder_t8983A769C5D0C79BEF91202F0167A41040D9FF4A * L_2 = __this->get__exception_6();
NullCheck(L_2);
int32_t L_3 = L_2->get_index_0();
NullCheck(L_1);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_3);
return ((Exception_t *)CastclassClass((RuntimeObject*)L_4, Exception_t_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodReturnMessage::get_PropertiesCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMethodReturnMessage_get_PropertiesCount_mDCAC8C0CD1B4EB2D10BA2F38486790B5AE2F4B9A (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__propertyCount_2();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CADObjRef::.ctor(System.Runtime.Remoting.ObjRef,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADObjRef__ctor_m0DCA6A0D8746774AFF35E60349FA5D86D81820A2 (CADObjRef_tA8BAE8646770C27FB69FB6FE43C9C81B68C72591 * __this, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___o0, int32_t ___sourceDomain1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___o0;
__this->set_objref_0(L_0);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_1 = ___o0;
NullCheck(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD(L_1, /*hidden argument*/NULL);
__this->set_TypeInfo_2(L_2);
int32_t L_3 = ___sourceDomain1;
__this->set_SourceDomain_1(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContext__ctor_mD9E3B0E756207712C55056184C74061CF5A2591F (CallContext_tFB5D4D2D6BB4F51BA82A549CEA456DD9608CDA1A * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContext::SetCurrentCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContext_SetCurrentCallContext_mF2D29F2684E2DC0086F4EEC2327D049CCAC202A1 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx0, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CallContext::SetLogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * CallContext_SetLogicalCallContext_mAAF68FB2E7EC13678AE3D25BF7E771D7F4016C16 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx0, const RuntimeMethod* method)
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * V_0 = NULL;
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_0);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_1 = Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72(L_0, /*hidden argument*/NULL);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_2 = L_1;
NullCheck(L_2);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_3 = ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3(L_2, /*hidden argument*/NULL);
V_0 = L_3;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_4 = ___callCtx0;
NullCheck(L_2);
ExecutionContext_set_LogicalCallContext_m325371A914D0CA3A3407D2138B06E16B6DB926B6_inline(L_2, L_4, /*hidden argument*/NULL);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_5 = V_0;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::get_LogicalCallID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_m0A36275A970AF6E1FC5A2A67875A32C048573E00 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::set_LogicalCallID(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_m509E3F1E37E82149EDB396B84A89A2E3ED1D93B4 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__logicalCallID_0(L_0);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.CallContextRemotingData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextRemotingData_get_HasInfo_mBB8996303FBAEE2A3B9C2EE4B51F70AF5D83C40C (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContextRemotingData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextRemotingData_Clone_m22B610119C2E3A1690E252AB1C3134CA39730230 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CallContextRemotingData_Clone_m22B610119C2E3A1690E252AB1C3134CA39730230_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_0 = (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 *)il2cpp_codegen_object_new(CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347_il2cpp_TypeInfo_var);
CallContextRemotingData__ctor_m40E6F13BF6714BF45DD3EA621F9E18598411B530(L_0, /*hidden argument*/NULL);
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_1 = L_0;
String_t* L_2 = CallContextRemotingData_get_LogicalCallID_m0A36275A970AF6E1FC5A2A67875A32C048573E00_inline(__this, /*hidden argument*/NULL);
NullCheck(L_1);
CallContextRemotingData_set_LogicalCallID_m509E3F1E37E82149EDB396B84A89A2E3ED1D93B4_inline(L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData__ctor_m40E6F13BF6714BF45DD3EA621F9E18598411B530 (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __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.Boolean System.Runtime.Remoting.Messaging.CallContextSecurityData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextSecurityData_get_HasInfo_m1098BDD0D505D4A6878B3CB42E15DBAE6CBFB720 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__principal_0();
return (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContextSecurityData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextSecurityData_Clone_m45D64B92B764F05DA33F9D38635F14D1DBCD4720 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CallContextSecurityData_Clone_m45D64B92B764F05DA33F9D38635F14D1DBCD4720_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_0 = (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF *)il2cpp_codegen_object_new(CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF_il2cpp_TypeInfo_var);
CallContextSecurityData__ctor_mD3F0B4B221F03F9629AD2618B8B5E7635FB4C446(L_0, /*hidden argument*/NULL);
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_1 = L_0;
RuntimeObject* L_2 = __this->get__principal_0();
NullCheck(L_1);
L_1->set__principal_0(L_2);
return L_1;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextSecurityData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextSecurityData__ctor_mD3F0B4B221F03F9629AD2618B8B5E7635FB4C446 (CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * __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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ClientContextReplySink::.ctor(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextReplySink__ctor_m3EC73AC52E8C9909560502D6979E5EABB0F4A8BF (ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C * __this, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___replySink1;
__this->set__replySink_0(L_0);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = ___ctx0;
__this->set__context_1(L_1);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ClientContextReplySink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextReplySink_SyncProcessMessage_mE945005FC3C5A95BB33483DDBFBE0EDEF1952DEF (ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextReplySink_SyncProcessMessage_mE945005FC3C5A95BB33483DDBFBE0EDEF1952DEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_0, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = __this->get__context_1();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_1, (bool)0, L_2, (bool)1, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_3 = __this->get__replySink_0();
RuntimeObject* L_4 = ___msg0;
NullCheck(L_3);
RuntimeObject* L_5 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_3, L_4);
return L_5;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ClientContextReplySink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextReplySink_AsyncProcessMessage_m2F8A1CBDFE1FE1DE047B298DD3CD7B33DFEC01AD (ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextReplySink_AsyncProcessMessage_m2F8A1CBDFE1FE1DE047B298DD3CD7B33DFEC01AD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ClientContextReplySink_AsyncProcessMessage_m2F8A1CBDFE1FE1DE047B298DD3CD7B33DFEC01AD_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::.ctor(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextTerminatorSink__ctor_m743A95C4584913C181F34489A99FEC7A35F11AD0 (ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB * __this, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___ctx0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = ___ctx0;
__this->set__context_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextTerminatorSink_SyncProcessMessage_m2A430A1D56C0AFC6DA6F498B949B6D2F6C25903D (ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextTerminatorSink_SyncProcessMessage_m2A430A1D56C0AFC6DA6F498B949B6D2F6C25903D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)1, L_0, (bool)1, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = __this->get__context_0();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_1, (bool)1, L_2, (bool)1, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_3 = ___msg0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = ___msg0;
RuntimeObject* L_5 = ActivationServices_RemoteActivate_m24E9FFCF9CA297628244DC509E99FB4A5830C71C(((RuntimeObject*)Castclass((RuntimeObject*)L_4, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0040;
}
IL_002e:
{
RuntimeObject* L_6 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_7 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
RuntimeObject* L_8 = Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline(L_7, /*hidden argument*/NULL);
RuntimeObject* L_9 = ___msg0;
NullCheck(L_8);
RuntimeObject* L_10 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_8, L_9);
V_0 = L_10;
}
IL_0040:
{
RuntimeObject* L_11 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_11, (bool)1, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_12 = __this->get__context_0();
RuntimeObject* L_13 = ___msg0;
NullCheck(L_12);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_12, (bool)0, L_13, (bool)1, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_14 = V_0;
return L_14;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextTerminatorSink_AsyncProcessMessage_m4944606B98FBE75128DF8F5804240029223052E6 (ClientContextTerminatorSink_tCF852D4ABC4831352A62C8FBD896C48BBB8DA3FB * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextTerminatorSink_AsyncProcessMessage_m4944606B98FBE75128DF8F5804240029223052E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B8_0 = NULL;
RuntimeObject* G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
RuntimeObject* G_B6_0 = NULL;
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = __this->get__context_0();
NullCheck(L_0);
bool L_1 = Context_get_HasDynamicSinks_mAC09384B323B65123136996C0E465EA53765A91F(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0014;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
bool L_2 = Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35(/*hidden argument*/NULL);
if (!L_2)
{
goto IL_003d;
}
}
IL_0014:
{
RuntimeObject* L_3 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)1, L_3, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_4 = __this->get__context_0();
RuntimeObject* L_5 = ___msg0;
NullCheck(L_4);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_4, (bool)1, L_5, (bool)1, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_6 = ___replySink1;
if (!L_6)
{
goto IL_003d;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_7 = __this->get__context_0();
RuntimeObject* L_8 = ___replySink1;
ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C * L_9 = (ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C *)il2cpp_codegen_object_new(ClientContextReplySink_t800CF65D66E386E44690A372676FC9936E2DCA8C_il2cpp_TypeInfo_var);
ClientContextReplySink__ctor_m3EC73AC52E8C9909560502D6979E5EABB0F4A8BF(L_9, L_7, L_8, /*hidden argument*/NULL);
___replySink1 = L_9;
}
IL_003d:
{
RuntimeObject* L_10 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_11 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
RuntimeObject* L_12 = Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline(L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___msg0;
RuntimeObject* L_14 = ___replySink1;
NullCheck(L_12);
RuntimeObject* L_15 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_12, L_13, L_14);
RuntimeObject* L_16 = ___replySink1;
G_B5_0 = L_15;
if (L_16)
{
G_B8_0 = L_15;
goto IL_007e;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_17 = __this->get__context_0();
NullCheck(L_17);
bool L_18 = Context_get_HasDynamicSinks_mAC09384B323B65123136996C0E465EA53765A91F(L_17, /*hidden argument*/NULL);
G_B6_0 = G_B5_0;
if (L_18)
{
G_B7_0 = G_B5_0;
goto IL_0066;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
bool L_19 = Context_get_HasGlobalDynamicSinks_mAB9E33099779BA76FA114D895EAD6709D1D69A35(/*hidden argument*/NULL);
G_B7_0 = G_B6_0;
if (!L_19)
{
G_B8_0 = G_B6_0;
goto IL_007e;
}
}
IL_0066:
{
RuntimeObject* L_20 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m5CE1482297F32F4C735DBE753A0429B51777B19F((bool)0, L_20, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_21 = __this->get__context_0();
RuntimeObject* L_22 = ___msg0;
NullCheck(L_21);
Context_NotifyDynamicSinks_m3685359372BE120CAE3E52848B7AA1C56D471191(L_21, (bool)0, L_22, (bool)1, (bool)1, /*hidden argument*/NULL);
G_B8_0 = G_B7_0;
}
IL_007e:
{
return G_B8_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall__ctor_m28DEE5DCDF1F838D6468F5EE0705962BD3C8A73C (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
MethodCall__ctor_m329402E5B534872AF6C990DB871A294D8D6047F6(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
__this->set__activationType_14(L_0);
Type_t * L_1 = ___type0;
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_1);
__this->set__activationTypeName_15(L_2);
__this->set__isContextOk_16((bool)1);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall__ctor_m66BCCE7FB04D1273C7AE80DB80487C784FDB7FB0 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MethodCall__ctor_m7E9902A41698A226E6FF236E851D05BF0152C859(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::InitDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_InitDictionary_m502B7459E02793AAD1C61041D2B93E7C0EA65BCE (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCall_InitDictionary_m502B7459E02793AAD1C61041D2B93E7C0EA65BCE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * V_0 = NULL;
{
ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * L_0 = (ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 *)il2cpp_codegen_object_new(ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_il2cpp_TypeInfo_var);
ConstructionCallDictionary__ctor_m1A254A0CA2D2A92199639A25FE06703282147E7C(L_0, __this, /*hidden argument*/NULL);
V_0 = L_0;
ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * L_1 = V_0;
((MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA *)__this)->set_ExternalProperties_9(L_1);
ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = MessageDictionary_GetInternalProperties_mB7970D787D61BDA1B76465969C8702B24591DDD1(L_2, /*hidden argument*/NULL);
((MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA *)__this)->set_InternalProperties_10(L_3);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.ConstructionCall::get_IsContextOk()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructionCall_get_IsContextOk_mC137CC2B1DC3A91F1862179A71294C30D8EC391E (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isContextOk_16();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::set_IsContextOk(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_set_IsContextOk_mED44362ABA5DBF6C53C144BE0CD1DEFF9FB4A156 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set__isContextOk_16(L_0);
return;
}
}
// System.Type System.Runtime.Remoting.Messaging.ConstructionCall::get_ActivationType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ConstructionCall_get_ActivationType_m051F97DFEBCF77C9C9BFBEE05F3A418A96771612 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCall_get_ActivationType_m051F97DFEBCF77C9C9BFBEE05F3A418A96771612_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = __this->get__activationType_14();
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_001f;
}
}
{
String_t* L_2 = __this->get__activationTypeName_15();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_2, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
__this->set__activationType_14(L_3);
}
IL_001f:
{
Type_t * L_4 = __this->get__activationType_14();
return L_4;
}
}
// System.String System.Runtime.Remoting.Messaging.ConstructionCall::get_ActivationTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConstructionCall_get_ActivationTypeName_mE34C4C42691222DBC39BAFE4EF25A28480BC86C8 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__activationTypeName_15();
return L_0;
}
}
// System.Runtime.Remoting.Activation.IActivator System.Runtime.Remoting.Messaging.ConstructionCall::get_Activator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstructionCall_get_Activator_mF97A6C23208619D9FA4276D964345B2FEC731015 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__activator_11();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::set_Activator(System.Runtime.Remoting.Activation.IActivator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_set_Activator_m5390EA84CD5E8094FA30899235DF946C774E4519 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__activator_11(L_0);
return;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.ConstructionCall::get_CallSiteActivationAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ConstructionCall_get_CallSiteActivationAttributes_m4E8BFAA3CE72DCA4D3B9645BD6582DFE79187FDC (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__activationAttributes_12();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::SetActivationAttributes(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_SetActivationAttributes_m77BB10306846641B54FD84468DB0FDC2CBA2C0F9 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___attributes0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___attributes0;
__this->set__activationAttributes_12(L_0);
return;
}
}
// System.Collections.IList System.Runtime.Remoting.Messaging.ConstructionCall::get_ContextProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstructionCall_get_ContextProperties_mF309E2D852CA4EA619B15CB3267E9CD2755F7EA7 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCall_get_ContextProperties_mF309E2D852CA4EA619B15CB3267E9CD2755F7EA7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__contextProperties_13();
if (L_0)
{
goto IL_0013;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_1, /*hidden argument*/NULL);
__this->set__contextProperties_13(L_1);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get__contextProperties_13();
return L_2;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::InitMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_InitMethodProperty_m5E46F320519245D28F9828AE0C23499DEC39B5C0 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCall_InitMethodProperty_m5E46F320519245D28F9828AE0C23499DEC39B5C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___key0;
bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0043;
}
}
{
String_t* L_2 = ___key0;
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0050;
}
}
{
String_t* L_4 = ___key0;
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753, /*hidden argument*/NULL);
if (L_5)
{
goto IL_005d;
}
}
{
String_t* L_6 = ___key0;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D, /*hidden argument*/NULL);
if (L_7)
{
goto IL_006a;
}
}
{
String_t* L_8 = ___key0;
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0077;
}
}
{
goto IL_0084;
}
IL_0043:
{
RuntimeObject * L_10 = ___value1;
__this->set__activator_11(((RuntimeObject*)Castclass((RuntimeObject*)L_10, IActivator_t15974073F0D524FFDBDED25A50325BECD183BA87_il2cpp_TypeInfo_var)));
return;
}
IL_0050:
{
RuntimeObject * L_11 = ___value1;
__this->set__activationAttributes_12(((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_11, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)));
return;
}
IL_005d:
{
RuntimeObject * L_12 = ___value1;
__this->set__activationType_14(((Type_t *)CastclassClass((RuntimeObject*)L_12, Type_t_il2cpp_TypeInfo_var)));
return;
}
IL_006a:
{
RuntimeObject * L_13 = ___value1;
__this->set__contextProperties_13(((RuntimeObject*)Castclass((RuntimeObject*)L_13, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var)));
return;
}
IL_0077:
{
RuntimeObject * L_14 = ___value1;
__this->set__activationTypeName_15(((String_t*)CastclassSealed((RuntimeObject*)L_14, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_0084:
{
String_t* L_15 = ___key0;
RuntimeObject * L_16 = ___value1;
MethodCall_InitMethodProperty_m5439959AB074C5CC8DE5CFDF13688FAD95CBF4F3(__this, L_15, L_16, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_GetObjectData_mAEECB96EE52446974F6729CA04FA3ED4A8DAF357 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCall_GetObjectData_mAEECB96EE52446974F6729CA04FA3ED4A8DAF357_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MethodCall_GetObjectData_m89623BAE1207753351E235F93B5870727423327F(__this, L_0, L_1, /*hidden argument*/NULL);
RuntimeObject* L_2 = __this->get__contextProperties_13();
V_0 = L_2;
RuntimeObject* L_3 = V_0;
if (!L_3)
{
goto IL_001c;
}
}
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_4);
if (L_5)
{
goto IL_001c;
}
}
{
V_0 = (RuntimeObject*)NULL;
}
IL_001c:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeObject* L_7 = __this->get__activator_11();
NullCheck(L_6);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get__activationAttributes_12();
NullCheck(L_8);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_8, _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E, (RuntimeObject *)(RuntimeObject *)L_9, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0;
NullCheck(L_10);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753, NULL, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_11 = ___info0;
RuntimeObject* L_12 = V_0;
NullCheck(L_11);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_11, _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D, L_12, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_13 = ___info0;
String_t* L_14 = __this->get__activationTypeName_15();
NullCheck(L_13);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_13, _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.ConstructionCall::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstructionCall_get_Properties_mE8196F03245E22AAF4E66884A2F0EBC9D3F93807 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = MethodCall_get_Properties_m89E516AEB07D857BCB334491598EDE5809A5624F(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Runtime.Remoting.Proxies.RemotingProxy System.Runtime.Remoting.Messaging.ConstructionCall::get_SourceProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * ConstructionCall_get_SourceProxy_mA291EF4B72C6CBC55EEBAB93BC37FA9C5F51F205 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, const RuntimeMethod* method)
{
{
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_0 = __this->get__sourceProxy_17();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCall::set_SourceProxy(System.Runtime.Remoting.Proxies.RemotingProxy)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCall_set_SourceProxy_m4E16D3C86154CDCA4BB1C01D4AD84C0201FCE3D8 (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * __this, RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * ___value0, const RuntimeMethod* method)
{
{
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_0 = ___value0;
__this->set__sourceProxy_17(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ConstructionCallDictionary::.ctor(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCallDictionary__ctor_m1A254A0CA2D2A92199639A25FE06703282147E7C (ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * __this, RuntimeObject* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCallDictionary__ctor_m1A254A0CA2D2A92199639A25FE06703282147E7C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___message0;
MessageDictionary__ctor_m679873B25EF35750306D2976BC48BD4FE251F2D9(__this, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_il2cpp_TypeInfo_var);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ((ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_StaticFields*)il2cpp_codegen_static_fields_for(ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_il2cpp_TypeInfo_var))->get_InternalKeys_4();
MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.ConstructionCallDictionary::GetMethodProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConstructionCallDictionary_GetMethodProperty_mCA00EC05EC3CCA97DD8904CC7089EF1FD051ECF0 (ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * __this, String_t* ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCallDictionary_GetMethodProperty_mCA00EC05EC3CCA97DD8904CC7089EF1FD051ECF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___key0;
bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0043;
}
}
{
String_t* L_2 = ___key0;
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0054;
}
}
{
String_t* L_4 = ___key0;
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0065;
}
}
{
String_t* L_6 = ___key0;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0076;
}
}
{
String_t* L_8 = ___key0;
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0087;
}
}
{
goto IL_0098;
}
IL_0043:
{
RuntimeObject* L_10 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_10, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
RuntimeObject* L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Runtime.Remoting.Activation.IActivator System.Runtime.Remoting.Activation.IConstructionCallMessage::get_Activator() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
return L_11;
}
IL_0054:
{
RuntimeObject* L_12 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_12, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(4 /* System.Object[] System.Runtime.Remoting.Activation.IConstructionCallMessage::get_CallSiteActivationAttributes() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_12, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
return (RuntimeObject *)L_13;
}
IL_0065:
{
RuntimeObject* L_14 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_14, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
Type_t * L_15 = InterfaceFuncInvoker0< Type_t * >::Invoke(0 /* System.Type System.Runtime.Remoting.Activation.IConstructionCallMessage::get_ActivationType() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
return L_15;
}
IL_0076:
{
RuntimeObject* L_16 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_16, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
RuntimeObject* L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(5 /* System.Collections.IList System.Runtime.Remoting.Activation.IConstructionCallMessage::get_ContextProperties() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_16, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
return L_17;
}
IL_0087:
{
RuntimeObject* L_18 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_18, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
String_t* L_19 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String System.Runtime.Remoting.Activation.IConstructionCallMessage::get_ActivationTypeName() */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
return L_19;
}
IL_0098:
{
String_t* L_20 = ___key0;
RuntimeObject * L_21 = MessageDictionary_GetMethodProperty_m92F3D0F028D6A1FA220E457A49513E448ACF6D4B(__this, L_20, /*hidden argument*/NULL);
return L_21;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCallDictionary::SetMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCallDictionary_SetMethodProperty_mBCB5C41D19C6860AFEC1292C5E0E305EFBD1E482 (ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677 * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCallDictionary_SetMethodProperty_mBCB5C41D19C6860AFEC1292C5E0E305EFBD1E482_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___key0;
bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0043;
}
}
{
String_t* L_2 = ___key0;
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E, /*hidden argument*/NULL);
if (L_3)
{
goto IL_005a;
}
}
{
String_t* L_4 = ___key0;
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753, /*hidden argument*/NULL);
if (L_5)
{
goto IL_005a;
}
}
{
String_t* L_6 = ___key0;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D, /*hidden argument*/NULL);
if (L_7)
{
goto IL_005a;
}
}
{
String_t* L_8 = ___key0;
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC, /*hidden argument*/NULL);
if (L_9)
{
goto IL_005a;
}
}
{
goto IL_0065;
}
IL_0043:
{
RuntimeObject* L_10 = ((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)__this)->get__message_1();
RuntimeObject * L_11 = ___value1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_10, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)));
InterfaceActionInvoker1< RuntimeObject* >::Invoke(3 /* System.Void System.Runtime.Remoting.Activation.IConstructionCallMessage::set_Activator(System.Runtime.Remoting.Activation.IActivator) */, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_10, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_11, IActivator_t15974073F0D524FFDBDED25A50325BECD183BA87_il2cpp_TypeInfo_var)));
return;
}
IL_005a:
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, _stringLiteral12DEB7397540F4CB49127727B794E2DBDDF5B4D8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ConstructionCallDictionary_SetMethodProperty_mBCB5C41D19C6860AFEC1292C5E0E305EFBD1E482_RuntimeMethod_var);
}
IL_0065:
{
String_t* L_13 = ___key0;
RuntimeObject * L_14 = ___value1;
MessageDictionary_SetMethodProperty_mB59808702E99D5BA49B77671EB83F78A5864AD58(__this, L_13, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionCallDictionary::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionCallDictionary__cctor_m87C32CF045AFEA9E6EB39509D52BF2FD97A53F61 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConstructionCallDictionary__cctor_m87C32CF045AFEA9E6EB39509D52BF2FD97A53F61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)((int32_t)11));
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral51035D5EB39081C838899FAC09AB3C229E337C0E);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = L_7;
NullCheck(L_8);
ArrayElementTypeCheck (L_8, _stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteralA2DF1EBE6545345DD888DF7DCC15B5CFBDA39753);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral13E301C2A2DFF0B1A2C87A59A560705819D6FB7D);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteral2B2DC619836F940A4F70F1D478566FB382156603);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral2B2DC619836F940A4F70F1D478566FB382156603);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral36089728FAEF072C34FA4587AFA8AB635AD917AC);
((ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_StaticFields*)il2cpp_codegen_static_fields_for(ConstructionCallDictionary_t33EA51E02BAE154DFF42DA8FEA82BF0D3ED49677_il2cpp_TypeInfo_var))->set_InternalKeys_4(L_11);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ConstructionResponse::.ctor(System.Object,System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionResponse__ctor_mEC3264294B069F837780553769DDFD82E612DFB3 (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * __this, RuntimeObject * ___resultObject0, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx1, RuntimeObject* ___msg2, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___resultObject0;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = ___callCtx1;
RuntimeObject* L_2 = ___msg2;
MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4(__this, L_0, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionResponse::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionResponse__ctor_m406374BA80AE17CDC53A0545376B872315D45CE9 (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * __this, Exception_t * ___e0, RuntimeObject* ___msg1, const RuntimeMethod* method)
{
{
Exception_t * L_0 = ___e0;
RuntimeObject* L_1 = ___msg1;
MethodResponse__ctor_mC6EA34E67B5FD04515508D8E869A2676A41F31DA(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ConstructionResponse::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstructionResponse__ctor_m80DE7DA5234836A826B4FEBC9F3C2B1087AAC2B7 (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
MethodResponse__ctor_m343C795DDD2A47711F8E279DD62685E6F2AC43D7(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.ConstructionResponse::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstructionResponse_get_Properties_mA6C8196BF403E03D44D703801B20346A2D81B044 (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = MethodResponse_get_Properties_m4E115130F0C43439A960AC23A9A33F439C99B82A(__this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnvoyTerminatorSink_SyncProcessMessage_m38F1AF9DB08737CB3F1082ADA3F45C23B7E54C8C (EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnvoyTerminatorSink_SyncProcessMessage_m38F1AF9DB08737CB3F1082ADA3F45C23B7E54C8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_0);
RuntimeObject* L_1 = Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051(L_0, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
RuntimeObject* L_3 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_1, L_2);
return L_3;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnvoyTerminatorSink_AsyncProcessMessage_mAA66C91C0B2AAD5CC2A286039D78D6068ACC9414 (EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnvoyTerminatorSink_AsyncProcessMessage_mAA66C91C0B2AAD5CC2A286039D78D6068ACC9414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_0);
RuntimeObject* L_1 = Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051(L_0, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___msg0;
RuntimeObject* L_3 = ___replySink1;
NullCheck(L_1);
RuntimeObject* L_4 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_1, L_2, L_3);
return L_4;
}
}
// System.Void System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnvoyTerminatorSink__ctor_mBEF35269DE49A941352567D9D150DB3D710A8261 (EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.EnvoyTerminatorSink::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnvoyTerminatorSink__cctor_m3A4CB887FD1A33EBC3785AFC497A1F969B773486 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnvoyTerminatorSink__cctor_m3A4CB887FD1A33EBC3785AFC497A1F969B773486_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 * L_0 = (EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806 *)il2cpp_codegen_object_new(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_il2cpp_TypeInfo_var);
EnvoyTerminatorSink__ctor_mBEF35269DE49A941352567D9D150DB3D710A8261(L_0, /*hidden argument*/NULL);
((EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_StaticFields*)il2cpp_codegen_static_fields_for(EnvoyTerminatorSink_t58C3EE980197493267EB942D964BC8B507F14806_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
// System.Void System.Runtime.Remoting.Messaging.ErrorMessage::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ErrorMessage__ctor_m27AAEF2EC93A0C3CB51025E8A07087CEA7328DC4 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ErrorMessage__ctor_m27AAEF2EC93A0C3CB51025E8A07087CEA7328DC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__uri_0(_stringLiteral20049BC069B0A04404C23D571B5E0B56F0660C02);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.ErrorMessage::get_ArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ErrorMessage_get_ArgCount_mB673124E55757578F79DD079FB592CC5EC6ED1B1 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.ErrorMessage::get_Args()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ErrorMessage_get_Args_mAEDD1F2D422135BD7878D62182A5B6CEBEB073FA (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ErrorMessage::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * ErrorMessage_get_MethodBase_mA08B467F9280AA1CEC61536A272F83FB9E6CCCFC (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return (MethodBase_t *)NULL;
}
}
// System.String System.Runtime.Remoting.Messaging.ErrorMessage::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorMessage_get_MethodName_mBB58FCB19F7A94956DFF28C12AC8CFCC3398C0B6 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ErrorMessage_get_MethodName_mBB58FCB19F7A94956DFF28C12AC8CFCC3398C0B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral50D8B4A941C26B89482C94AB324B5A274F9CED66;
}
}
// System.Object System.Runtime.Remoting.Messaging.ErrorMessage::get_MethodSignature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ErrorMessage_get_MethodSignature_m05807EDF919375DC916724F55D1E68D2EC79CBAA (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.ErrorMessage::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ErrorMessage_get_Properties_m1859D8D950A609AE7D43B8FD3DC5EE889CF440F2 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return (RuntimeObject*)NULL;
}
}
// System.String System.Runtime.Remoting.Messaging.ErrorMessage::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorMessage_get_TypeName_mCB463B023337B984B3E7335DE4AEFCEDE00DC6B1 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ErrorMessage_get_TypeName_mCB463B023337B984B3E7335DE4AEFCEDE00DC6B1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral50D8B4A941C26B89482C94AB324B5A274F9CED66;
}
}
// System.String System.Runtime.Remoting.Messaging.ErrorMessage::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ErrorMessage_get_Uri_mD9C34EB0B14A79B52B8332241420C8109F283F5B (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_0();
return L_0;
}
}
// System.Object System.Runtime.Remoting.Messaging.ErrorMessage::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ErrorMessage_GetArg_m78C18E11C28C9C10F693AB6DF34217795A7CC221 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, int32_t ___arg_num0, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.ErrorMessage::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ErrorMessage_get_LogicalCallContext_mE904300323DB29FB088AC86BD19D53A8EC941FF5 (ErrorMessage_t8FBAA06EDB2D3BB3E5E066247C3761ADAC64D47D * __this, const RuntimeMethod* method)
{
{
return (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.HeaderHandler::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderHandler__ctor_mE706475619D57CC84DF8CA1918D7B05B7007930B (HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F * __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.Object System.Runtime.Remoting.Messaging.HeaderHandler::Invoke(System.Runtime.Remoting.Messaging.Header[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HeaderHandler_Invoke_mDA4A8D1462093A044CD144240096462AF06E15F4 (HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F * __this, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* ___headers0, const RuntimeMethod* method)
{
RuntimeObject * result = NULL;
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 == 1)
{
// open
typedef RuntimeObject * (*FunctionPointerType) (HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___headers0, targetMethod);
}
else
{
// closed
typedef RuntimeObject * (*FunctionPointerType) (void*, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___headers0, targetMethod);
}
}
else if (___parameterCount != 1)
{
// 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))
result = GenericInterfaceFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___headers0);
else
result = GenericVirtFuncInvoker0< RuntimeObject * >::Invoke(targetMethod, ___headers0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___headers0);
else
result = VirtFuncInvoker0< RuntimeObject * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___headers0);
}
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___headers0, 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 RuntimeObject * (*FunctionPointerType) (HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___headers0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< RuntimeObject *, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* >::Invoke(targetMethod, targetThis, ___headers0);
else
result = GenericVirtFuncInvoker1< RuntimeObject *, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* >::Invoke(targetMethod, targetThis, ___headers0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< RuntimeObject *, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___headers0);
else
result = VirtFuncInvoker1< RuntimeObject *, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___headers0);
}
}
else
{
if (targetThis == NULL && il2cpp_codegen_class_is_value_type(il2cpp_codegen_method_get_declaring_type(targetMethod)))
{
typedef RuntimeObject * (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)((reinterpret_cast<RuntimeObject*>(___headers0) - 1), targetMethod);
}
else
{
typedef RuntimeObject * (*FunctionPointerType) (void*, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___headers0, targetMethod);
}
}
}
}
return result;
}
// System.IAsyncResult System.Runtime.Remoting.Messaging.HeaderHandler::BeginInvoke(System.Runtime.Remoting.Messaging.Header[],System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HeaderHandler_BeginInvoke_mD7462775900033C23F6D0E5453A39A18D59986F6 (HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F * __this, HeaderU5BU5D_t5EDB44F2B731039304163091DF818493DBB049AC* ___headers0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___headers0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Object System.Runtime.Remoting.Messaging.HeaderHandler::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HeaderHandler_EndInvoke_m8B9A76C692DA5BD361704C053ED5CEEB3CCF0D99 (HeaderHandler_t1242348575203397A2448B743F85E89A6EF8576F * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (RuntimeObject *)__result;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.IllogicalCallContext::get_Datastore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * IllogicalCallContext_get_Datastore_m1BC3CA62792BE96022B27A0B6C8D70DC1C4EFE0B (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IllogicalCallContext_get_Datastore_m1BC3CA62792BE96022B27A0B6C8D70DC1C4EFE0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_m_Datastore_0();
if (L_0)
{
goto IL_0013;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
__this->set_m_Datastore_0(L_1);
}
IL_0013:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = __this->get_m_Datastore_0();
return L_2;
}
}
// System.Object System.Runtime.Remoting.Messaging.IllogicalCallContext::get_HostContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * IllogicalCallContext_get_HostContext_m142C53F446A09A12688E1932173BAD218D4A821B (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_HostContext_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.IllogicalCallContext::set_HostContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IllogicalCallContext_set_HostContext_m12BBD230B82D8D2DE0E28E2E9FA6FA46F266AE7E (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_m_HostContext_1(L_0);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.IllogicalCallContext::get_HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IllogicalCallContext_get_HasUserData_mC8FC32C6A8E519F0D8E114B6ACD20B3A7292A874 (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method)
{
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_m_Datastore_0();
if (!L_0)
{
goto IL_0017;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_m_Datastore_0();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_1);
return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
}
IL_0017:
{
return (bool)0;
}
}
// System.Runtime.Remoting.Messaging.IllogicalCallContext System.Runtime.Remoting.Messaging.IllogicalCallContext::CreateCopy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * IllogicalCallContext_CreateCopy_m4D032C050628D402F860741A9EC1FC0C13B1136D (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IllogicalCallContext_CreateCopy_m4D032C050628D402F860741A9EC1FC0C13B1136D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * L_0 = (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 *)il2cpp_codegen_object_new(IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179_il2cpp_TypeInfo_var);
IllogicalCallContext__ctor_m9D17628D132A9487505B0D4ECF3FE0DCE540314E(L_0, /*hidden argument*/NULL);
V_0 = L_0;
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * L_1 = V_0;
RuntimeObject * L_2 = IllogicalCallContext_get_HostContext_m142C53F446A09A12688E1932173BAD218D4A821B_inline(__this, /*hidden argument*/NULL);
NullCheck(L_1);
IllogicalCallContext_set_HostContext_m12BBD230B82D8D2DE0E28E2E9FA6FA46F266AE7E_inline(L_1, L_2, /*hidden argument*/NULL);
bool L_3 = IllogicalCallContext_get_HasUserData_mC8FC32C6A8E519F0D8E114B6ACD20B3A7292A874(__this, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_004c;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = __this->get_m_Datastore_0();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_4);
V_1 = L_5;
goto IL_0044;
}
IL_0028:
{
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * L_6 = V_0;
NullCheck(L_6);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = IllogicalCallContext_get_Datastore_m1BC3CA62792BE96022B27A0B6C8D70DC1C4EFE0B(L_6, /*hidden argument*/NULL);
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_8);
RuntimeObject* L_10 = V_1;
NullCheck(L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_10);
NullCheck(L_7);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, ((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)), L_11);
}
IL_0044:
{
RuntimeObject* L_12 = V_1;
NullCheck(L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_12);
if (L_13)
{
goto IL_0028;
}
}
IL_004c:
{
IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * L_14 = V_0;
return L_14;
}
}
// System.Void System.Runtime.Remoting.Messaging.IllogicalCallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IllogicalCallContext__ctor_m9D17628D132A9487505B0D4ECF3FE0DCE540314E (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __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.Runtime.Remoting.Messaging.LogicalCallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext__ctor_m5FC89BCDA678361336C82C238CA6A2ACDE07FD1B (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext__ctor_m5FC89BCDA678361336C82C238CA6A2ACDE07FD1B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_0 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_1 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_00c9;
}
IL_0012:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
bool L_4 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_3, _stringLiteral35248C8DF276687B89A726AAA698BABD60A9FACF, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_003a;
}
}
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_5, /*hidden argument*/NULL);
__this->set_m_RemotingData_2(((CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 *)CastclassClass((RuntimeObject*)L_6, CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347_il2cpp_TypeInfo_var)));
goto IL_00c9;
}
IL_003a:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
bool L_9 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_8, _stringLiteral823E61FC8E18DBC28C985881E45C958AC190E9B7, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_006d;
}
}
{
int32_t L_10 = StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)(&___context1), /*hidden argument*/NULL);
if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)128)))))
{
goto IL_00c9;
}
}
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject * L_12 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_11, /*hidden argument*/NULL);
__this->set_m_SecurityData_3(((CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF *)CastclassClass((RuntimeObject*)L_12, CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF_il2cpp_TypeInfo_var)));
goto IL_00c9;
}
IL_006d:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_13 = V_0;
NullCheck(L_13);
String_t* L_14 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
bool L_15 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_14, _stringLiteral1D30723C8E847BB815C011F9D9E7816C93AF3C57, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_008d;
}
}
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_16, /*hidden argument*/NULL);
__this->set_m_HostContext_4(L_17);
goto IL_00c9;
}
IL_008d:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_18 = V_0;
NullCheck(L_18);
String_t* L_19 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_18, /*hidden argument*/NULL);
NullCheck(L_19);
bool L_20 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_19, _stringLiteral0F8BBF21C3911F7E9F5A73CF485536F943993601, /*hidden argument*/NULL);
if (!L_20)
{
goto IL_00b2;
}
}
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_21 = V_0;
NullCheck(L_21);
RuntimeObject * L_22 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_21, /*hidden argument*/NULL);
__this->set_m_IsCorrelationMgr_5(((*(bool*)((bool*)UnBox(L_22, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))));
goto IL_00c9;
}
IL_00b2:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_23 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(__this, /*hidden argument*/NULL);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_24 = V_0;
NullCheck(L_24);
String_t* L_25 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_24, /*hidden argument*/NULL);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_26 = V_0;
NullCheck(L_26);
RuntimeObject * L_27 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_26, /*hidden argument*/NULL);
NullCheck(L_23);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_23, L_25, L_27);
}
IL_00c9:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_28 = V_0;
NullCheck(L_28);
bool L_29 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_28, /*hidden argument*/NULL);
if (L_29)
{
goto IL_0012;
}
}
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext_GetObjectData_m965F5294A13D24A58D7D291F51024C8F1CA9B246 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext_GetObjectData_m965F5294A13D24A58D7D291F51024C8F1CA9B246_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* 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, LogicalCallContext_GetObjectData_m965F5294A13D24A58D7D291F51024C8F1CA9B246_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
IL2CPP_RUNTIME_CLASS_INIT(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
Type_t * L_3 = ((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_StaticFields*)il2cpp_codegen_static_fields_for(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var))->get_s_callContextType_0();
NullCheck(L_2);
SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784(L_2, L_3, /*hidden argument*/NULL);
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_4 = __this->get_m_RemotingData_2();
if (!L_4)
{
goto IL_0032;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0;
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_6 = __this->get_m_RemotingData_2();
NullCheck(L_5);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_5, _stringLiteral35248C8DF276687B89A726AAA698BABD60A9FACF, L_6, /*hidden argument*/NULL);
}
IL_0032:
{
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_7 = __this->get_m_SecurityData_3();
if (!L_7)
{
goto IL_0059;
}
}
{
int32_t L_8 = StreamingContext_get_State_mC28CB681EC71C3E6B08B277F3BD0F041FC5D1F62_inline((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)(&___context1), /*hidden argument*/NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)128)))))
{
goto IL_0059;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_9 = ___info0;
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_10 = __this->get_m_SecurityData_3();
NullCheck(L_9);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_9, _stringLiteral823E61FC8E18DBC28C985881E45C958AC190E9B7, L_10, /*hidden argument*/NULL);
}
IL_0059:
{
RuntimeObject * L_11 = __this->get_m_HostContext_4();
if (!L_11)
{
goto IL_0072;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
RuntimeObject * L_13 = __this->get_m_HostContext_4();
NullCheck(L_12);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_12, _stringLiteral1D30723C8E847BB815C011F9D9E7816C93AF3C57, L_13, /*hidden argument*/NULL);
}
IL_0072:
{
bool L_14 = __this->get_m_IsCorrelationMgr_5();
if (!L_14)
{
goto IL_008b;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0;
bool L_16 = __this->get_m_IsCorrelationMgr_5();
NullCheck(L_15);
SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1(L_15, _stringLiteral0F8BBF21C3911F7E9F5A73CF485536F943993601, L_16, /*hidden argument*/NULL);
}
IL_008b:
{
bool L_17 = LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22(__this, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00c0;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = __this->get_m_Datastore_1();
NullCheck(L_18);
RuntimeObject* L_19 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_18);
V_0 = L_19;
goto IL_00b8;
}
IL_00a1:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_20 = ___info0;
RuntimeObject* L_21 = V_0;
NullCheck(L_21);
RuntimeObject * L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_21);
RuntimeObject* L_23 = V_0;
NullCheck(L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_23);
NullCheck(L_20);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_20, ((String_t*)CastclassSealed((RuntimeObject*)L_22, String_t_il2cpp_TypeInfo_var)), L_24, /*hidden argument*/NULL);
}
IL_00b8:
{
RuntimeObject* L_25 = V_0;
NullCheck(L_25);
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_00a1;
}
}
IL_00c0:
{
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.LogicalCallContext::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * LogicalCallContext_Clone_m923D2DCF2B20C87F8AB53030367D7DF0F623CAE1 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext_Clone_m923D2DCF2B20C87F8AB53030367D7DF0F623CAE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * V_0 = NULL;
RuntimeObject* V_1 = NULL;
String_t* V_2 = NULL;
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_0, /*hidden argument*/NULL);
V_0 = L_0;
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_1 = __this->get_m_RemotingData_2();
if (!L_1)
{
goto IL_0024;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = V_0;
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_3 = __this->get_m_RemotingData_2();
NullCheck(L_3);
RuntimeObject * L_4 = CallContextRemotingData_Clone_m22B610119C2E3A1690E252AB1C3134CA39730230(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
L_2->set_m_RemotingData_2(((CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 *)CastclassClass((RuntimeObject*)L_4, CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347_il2cpp_TypeInfo_var)));
}
IL_0024:
{
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_5 = __this->get_m_SecurityData_3();
if (!L_5)
{
goto IL_0042;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_6 = V_0;
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_7 = __this->get_m_SecurityData_3();
NullCheck(L_7);
RuntimeObject * L_8 = CallContextSecurityData_Clone_m45D64B92B764F05DA33F9D38635F14D1DBCD4720(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
L_6->set_m_SecurityData_3(((CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF *)CastclassClass((RuntimeObject*)L_8, CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF_il2cpp_TypeInfo_var)));
}
IL_0042:
{
RuntimeObject * L_9 = __this->get_m_HostContext_4();
if (!L_9)
{
goto IL_0056;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_10 = V_0;
RuntimeObject * L_11 = __this->get_m_HostContext_4();
NullCheck(L_10);
L_10->set_m_HostContext_4(L_11);
}
IL_0056:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_12 = V_0;
bool L_13 = __this->get_m_IsCorrelationMgr_5();
NullCheck(L_12);
L_12->set_m_IsCorrelationMgr_5(L_13);
bool L_14 = LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22(__this, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_00fa;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = __this->get_m_Datastore_1();
NullCheck(L_15);
RuntimeObject* L_16 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_15);
V_1 = L_16;
bool L_17 = __this->get_m_IsCorrelationMgr_5();
if (L_17)
{
goto IL_00f2;
}
}
{
goto IL_009f;
}
IL_0083:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_18 = V_0;
NullCheck(L_18);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_19 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(L_18, /*hidden argument*/NULL);
RuntimeObject* L_20 = V_1;
NullCheck(L_20);
RuntimeObject * L_21 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_20);
RuntimeObject* L_22 = V_1;
NullCheck(L_22);
RuntimeObject * L_23 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_22);
NullCheck(L_19);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_19, ((String_t*)CastclassSealed((RuntimeObject*)L_21, String_t_il2cpp_TypeInfo_var)), L_23);
}
IL_009f:
{
RuntimeObject* L_24 = V_1;
NullCheck(L_24);
bool L_25 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_24);
if (L_25)
{
goto IL_0083;
}
}
{
goto IL_00fa;
}
IL_00a9:
{
RuntimeObject* L_26 = V_1;
NullCheck(L_26);
RuntimeObject * L_27 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_26);
V_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_27, String_t_il2cpp_TypeInfo_var));
String_t* L_28 = V_2;
NullCheck(L_28);
bool L_29 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_28, _stringLiteral93ABFB176EA169C8B322EBDBC8C5D2EF7C64282C, /*hidden argument*/NULL);
if (!L_29)
{
goto IL_00e0;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_30 = V_0;
NullCheck(L_30);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_31 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(L_30, /*hidden argument*/NULL);
String_t* L_32 = V_2;
RuntimeObject* L_33 = V_1;
NullCheck(L_33);
RuntimeObject * L_34 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_33);
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_34, ICloneable_tB0EF2757D90DF969033D641822566814815EB134_il2cpp_TypeInfo_var)));
RuntimeObject * L_35 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.ICloneable::Clone() */, ICloneable_tB0EF2757D90DF969033D641822566814815EB134_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_34, ICloneable_tB0EF2757D90DF969033D641822566814815EB134_il2cpp_TypeInfo_var)));
NullCheck(L_31);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_31, L_32, L_35);
goto IL_00f2;
}
IL_00e0:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_36 = V_0;
NullCheck(L_36);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_37 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(L_36, /*hidden argument*/NULL);
String_t* L_38 = V_2;
RuntimeObject* L_39 = V_1;
NullCheck(L_39);
RuntimeObject * L_40 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_39);
NullCheck(L_37);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_37, L_38, L_40);
}
IL_00f2:
{
RuntimeObject* L_41 = V_1;
NullCheck(L_41);
bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_41);
if (L_42)
{
goto IL_00a9;
}
}
IL_00fa:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_43 = V_0;
return L_43;
}
}
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::Merge(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___lc0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___lc0;
if (!L_0)
{
goto IL_0041;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = ___lc0;
if ((((RuntimeObject*)(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)__this) == ((RuntimeObject*)(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)L_1)))
{
goto IL_0041;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = ___lc0;
NullCheck(L_2);
bool L_3 = LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0041;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_4 = ___lc0;
NullCheck(L_4);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(L_4, /*hidden argument*/NULL);
NullCheck(L_5);
RuntimeObject* L_6 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_5);
V_0 = L_6;
goto IL_0039;
}
IL_001d:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383(__this, /*hidden argument*/NULL);
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_8);
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_10);
NullCheck(L_7);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, ((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)), L_11);
}
IL_0039:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_12);
if (L_13)
{
goto IL_001d;
}
}
IL_0041:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
V_0 = (bool)0;
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_0 = __this->get_m_RemotingData_2();
if (!L_0)
{
goto IL_0017;
}
}
{
CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * L_1 = __this->get_m_RemotingData_2();
NullCheck(L_1);
bool L_2 = CallContextRemotingData_get_HasInfo_mBB8996303FBAEE2A3B9C2EE4B51F70AF5D83C40C(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_003c;
}
}
IL_0017:
{
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_3 = __this->get_m_SecurityData_3();
if (!L_3)
{
goto IL_002c;
}
}
{
CallContextSecurityData_t72826F22C5CFD231ECF664638EFFBF458D0AE9AF * L_4 = __this->get_m_SecurityData_3();
NullCheck(L_4);
bool L_5 = CallContextSecurityData_get_HasInfo_m1098BDD0D505D4A6878B3CB42E15DBAE6CBFB720(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_003c;
}
}
IL_002c:
{
RuntimeObject * L_6 = __this->get_m_HostContext_4();
if (L_6)
{
goto IL_003c;
}
}
{
bool L_7 = LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22(__this, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_003e;
}
}
IL_003c:
{
V_0 = (bool)1;
}
IL_003e:
{
bool L_8 = V_0;
return L_8;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::get_HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogicalCallContext_get_HasUserData_mA66D388149260DB9F1A4CB35891912645F165F22 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method)
{
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_m_Datastore_1();
if (!L_0)
{
goto IL_0017;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_m_Datastore_1();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(28 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_1);
return (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
}
IL_0017:
{
return (bool)0;
}
}
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.LogicalCallContext::get_Datastore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383 (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext_get_Datastore_m674E900D365278E4299A251C0E162DF83722A383_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_m_Datastore_1();
if (L_0)
{
goto IL_0013;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
__this->set_m_Datastore_1(L_1);
}
IL_0013:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = __this->get_m_Datastore_1();
return L_2;
}
}
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LogicalCallContext__cctor_m154C71F5A5A9A816717EFDC2F838DEFBE40BEAC1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LogicalCallContext__cctor_m154C71F5A5A9A816717EFDC2F838DEFBE40BEAC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_StaticFields*)il2cpp_codegen_static_fields_for(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var))->set_s_callContextType_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.Runtime.Remoting.Messaging.LogicalCallContext/Reader
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_pinvoke(const Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6& unmarshaled, Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_ctx_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ctx' of type 'Reader': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ctx_0Exception, NULL);
}
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_pinvoke_back(const Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_pinvoke& marshaled, Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6& unmarshaled)
{
Exception_t* ___m_ctx_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ctx' of type 'Reader': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ctx_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.LogicalCallContext/Reader
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_pinvoke_cleanup(Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Messaging.LogicalCallContext/Reader
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_com(const Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6& unmarshaled, Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_com& marshaled)
{
Exception_t* ___m_ctx_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ctx' of type 'Reader': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ctx_0Exception, NULL);
}
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_com_back(const Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_com& marshaled, Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6& unmarshaled)
{
Exception_t* ___m_ctx_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_ctx' of type 'Reader': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_ctx_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.LogicalCallContext/Reader
IL2CPP_EXTERN_C void Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshal_com_cleanup(Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6_marshaled_com& marshaled)
{
}
// System.Void System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::.ctor(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reader__ctor_m484F7B31064D62F858B1860471E05068A4194B7E (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx0, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___ctx0;
__this->set_m_ctx_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void Reader__ctor_m484F7B31064D62F858B1860471E05068A4194B7E_AdjustorThunk (RuntimeObject * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * _thisAdjusted = reinterpret_cast<Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *>(__this + _offset);
Reader__ctor_m484F7B31064D62F858B1860471E05068A4194B7E_inline(_thisAdjusted, ___ctx0, method);
}
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::get_IsNull()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get_m_ctx_0();
return (bool)((((RuntimeObject*)(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * _thisAdjusted = reinterpret_cast<Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *>(__this + _offset);
return Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7(_thisAdjusted, method);
}
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Reader_get_HasInfo_m6D6C2FFCC05CF1A0C7387A75A12E0199B479C394 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method)
{
{
bool L_0 = Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7((Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *)__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_0014;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = __this->get_m_ctx_0();
NullCheck(L_1);
bool L_2 = LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Reader_get_HasInfo_m6D6C2FFCC05CF1A0C7387A75A12E0199B479C394_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * _thisAdjusted = reinterpret_cast<Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *>(__this + _offset);
return Reader_get_HasInfo_m6D6C2FFCC05CF1A0C7387A75A12E0199B479C394(_thisAdjusted, method);
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.LogicalCallContext_Reader::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83 (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get_m_ctx_0();
NullCheck(L_0);
RuntimeObject * L_1 = LogicalCallContext_Clone_m923D2DCF2B20C87F8AB53030367D7DF0F623CAE1(L_0, /*hidden argument*/NULL);
return ((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)CastclassSealed((RuntimeObject*)L_1, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var));
}
}
IL2CPP_EXTERN_C LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * _thisAdjusted = reinterpret_cast<Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *>(__this + _offset);
return Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MCMDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21 (MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * __this, RuntimeObject* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___message0;
MessageDictionary__ctor_m679873B25EF35750306D2976BC48BD4FE251F2D9(__this, L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = ((MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_StaticFields*)il2cpp_codegen_static_fields_for(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var))->get_InternalKeys_4();
MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MCMDictionary::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MCMDictionary__cctor_m2692DBAB329967E42393D39C37F92A3D9A4A827E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MCMDictionary__cctor_m2692DBAB329967E42393D39C37F92A3D9A4A827E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)6);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
((MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_StaticFields*)il2cpp_codegen_static_fields_for(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var))->set_InternalKeys_4(L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary__ctor_m679873B25EF35750306D2976BC48BD4FE251F2D9 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject* ___message0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___message0;
__this->set__message_1(L_0);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__internalProperties_0();
if (!L_0)
{
goto IL_0035;
}
}
{
RuntimeObject* L_1 = __this->get__internalProperties_0();
if (!((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)IsInstClass((RuntimeObject*)L_1, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)))
{
goto IL_0026;
}
}
{
RuntimeObject* L_2 = __this->get__internalProperties_0();
NullCheck(((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)CastclassClass((RuntimeObject*)L_2, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)));
bool L_3 = MessageDictionary_HasUserData_m9FF4B15D46E81D6991E7FAC2C3B5C0C5089FFA95(((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)CastclassClass((RuntimeObject*)L_2, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_3;
}
IL_0026:
{
RuntimeObject* L_4 = __this->get__internalProperties_0();
NullCheck(L_4);
int32_t L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_4);
return (bool)((((int32_t)L_5) > ((int32_t)0))? 1 : 0);
}
IL_0035:
{
return (bool)0;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::get_InternalDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__internalProperties_0();
if (!L_0)
{
goto IL_0026;
}
}
{
RuntimeObject* L_1 = __this->get__internalProperties_0();
if (!((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)IsInstClass((RuntimeObject*)L_1, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)))
{
goto IL_0026;
}
}
{
RuntimeObject* L_2 = __this->get__internalProperties_0();
NullCheck(((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)CastclassClass((RuntimeObject*)L_2, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)));
RuntimeObject* L_3 = MessageDictionary_get_InternalDictionary_mFFE1034665C049F634917ED862BE9EC584B3A61A(((MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 *)CastclassClass((RuntimeObject*)L_2, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_3;
}
IL_0026:
{
RuntimeObject* L_4 = __this->get__internalProperties_0();
return L_4;
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::set_MethodKeys(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___value0;
__this->set__methodKeys_2(L_0);
return;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::AllocInternalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_AllocInternalProperties_mA195C99CC8AB586C115EF12BB7F226E5E74AA23E (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_AllocInternalProperties_mA195C99CC8AB586C115EF12BB7F226E5E74AA23E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__ownProperties_3((bool)1);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
return L_0;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::GetInternalProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_GetInternalProperties_mB7970D787D61BDA1B76465969C8702B24591DDD1 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__internalProperties_0();
if (L_0)
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(11 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::AllocInternalProperties() */, __this);
__this->set__internalProperties_0(L_1);
}
IL_0014:
{
RuntimeObject* L_2 = __this->get__internalProperties_0();
return L_2;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::IsOverridenKey(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_IsOverridenKey_mD305D7E4CA9CA6B25A501B9A828582234FB7F79E (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, const RuntimeMethod* method)
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
{
bool L_0 = __this->get__ownProperties_3();
if (!L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get__methodKeys_2();
V_0 = L_1;
V_1 = 0;
goto IL_0028;
}
IL_0015:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
String_t* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = L_5;
String_t* L_6 = ___key0;
String_t* L_7 = V_2;
bool L_8 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0024;
}
}
{
return (bool)1;
}
IL_0024:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0028:
{
int32_t L_10 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = V_0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_0015;
}
}
{
return (bool)0;
}
}
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary::get_Item(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MessageDictionary_get_Item_mCE0F38A6D88C993213CEB685A0DA25D878EB85CE (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_get_Item_mCE0F38A6D88C993213CEB685A0DA25D878EB85CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___key0;
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0027;
}
IL_000b:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get__methodKeys_2();
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
String_t* L_5 = V_0;
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0023;
}
}
{
String_t* L_7 = V_0;
RuntimeObject * L_8 = VirtFuncInvoker1< RuntimeObject *, String_t* >::Invoke(12 /* System.Object System.Runtime.Remoting.Messaging.MessageDictionary::GetMethodProperty(System.String) */, __this, L_7);
return L_8;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = __this->get__methodKeys_2();
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_000b;
}
}
{
RuntimeObject* L_12 = __this->get__internalProperties_0();
if (!L_12)
{
goto IL_0047;
}
}
{
RuntimeObject* L_13 = __this->get__internalProperties_0();
RuntimeObject * L_14 = ___key0;
NullCheck(L_13);
RuntimeObject * L_15 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_13, L_14);
return L_15;
}
IL_0047:
{
return NULL;
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::set_Item(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_set_Item_m18058A5A7AE0AE6DCF4479F17F9007A00846CF56 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___key0;
RuntimeObject * L_1 = ___value1;
MessageDictionary_Add_m015064027A6721BD583B7FAC2B1CF75BF809F8E9(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary::GetMethodProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MessageDictionary_GetMethodProperty_m92F3D0F028D6A1FA220E457A49513E448ACF6D4B (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_GetMethodProperty_m92F3D0F028D6A1FA220E457A49513E448ACF6D4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___key0;
uint32_t L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1637783905)))))
{
goto IL_004a;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)1201911322)))))
{
goto IL_002f;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)990701179))))
{
goto IL_007f;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1201911322))))
{
goto IL_00c7;
}
}
{
goto IL_0173;
}
IL_002f:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)1619225942))))
{
goto IL_00d9;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1637783905))))
{
goto IL_00fa;
}
}
{
goto IL_0173;
}
IL_004a:
{
uint32_t L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)2010141056)))))
{
goto IL_006a;
}
}
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)1960967436))))
{
goto IL_00eb;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)2010141056))))
{
goto IL_00a3;
}
}
{
goto IL_0173;
}
IL_006a:
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-1128725895))))
{
goto IL_0091;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-615837896))))
{
goto IL_00b5;
}
}
{
goto IL_0173;
}
IL_007f:
{
String_t* L_13 = ___key0;
bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0109;
}
}
{
goto IL_0173;
}
IL_0091:
{
String_t* L_15 = ___key0;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, /*hidden argument*/NULL);
if (L_16)
{
goto IL_0115;
}
}
{
goto IL_0173;
}
IL_00a3:
{
String_t* L_17 = ___key0;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0121;
}
}
{
goto IL_0173;
}
IL_00b5:
{
String_t* L_19 = ___key0;
bool L_20 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, /*hidden argument*/NULL);
if (L_20)
{
goto IL_012d;
}
}
{
goto IL_0173;
}
IL_00c7:
{
String_t* L_21 = ___key0;
bool L_22 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_21, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, /*hidden argument*/NULL);
if (L_22)
{
goto IL_0139;
}
}
{
goto IL_0173;
}
IL_00d9:
{
String_t* L_23 = ___key0;
bool L_24 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C, /*hidden argument*/NULL);
if (L_24)
{
goto IL_0145;
}
}
{
goto IL_0173;
}
IL_00eb:
{
String_t* L_25 = ___key0;
bool L_26 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_25, _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0151;
}
}
{
goto IL_0173;
}
IL_00fa:
{
String_t* L_27 = ___key0;
bool L_28 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_27, _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5, /*hidden argument*/NULL);
if (L_28)
{
goto IL_0162;
}
}
{
goto IL_0173;
}
IL_0109:
{
RuntimeObject* L_29 = __this->get__message_1();
NullCheck(L_29);
String_t* L_30 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_29);
return L_30;
}
IL_0115:
{
RuntimeObject* L_31 = __this->get__message_1();
NullCheck(L_31);
String_t* L_32 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_31);
return L_32;
}
IL_0121:
{
RuntimeObject* L_33 = __this->get__message_1();
NullCheck(L_33);
String_t* L_34 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_TypeName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_33);
return L_34;
}
IL_012d:
{
RuntimeObject* L_35 = __this->get__message_1();
NullCheck(L_35);
RuntimeObject * L_36 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodSignature() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_35);
return L_36;
}
IL_0139:
{
RuntimeObject* L_37 = __this->get__message_1();
NullCheck(L_37);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_38 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_37);
return L_38;
}
IL_0145:
{
RuntimeObject* L_39 = __this->get__message_1();
NullCheck(L_39);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_39);
return (RuntimeObject *)L_40;
}
IL_0151:
{
RuntimeObject* L_41 = __this->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_41, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var)));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_42 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_OutArgs() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_41, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var)));
return (RuntimeObject *)L_42;
}
IL_0162:
{
RuntimeObject* L_43 = __this->get__message_1();
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_43, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var)));
RuntimeObject * L_44 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_43, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var)));
return L_44;
}
IL_0173:
{
return NULL;
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::SetMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_SetMethodProperty_mB59808702E99D5BA49B77671EB83F78A5864AD58 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_SetMethodProperty_mB59808702E99D5BA49B77671EB83F78A5864AD58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___key0;
uint32_t L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1637783905)))))
{
goto IL_003f;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)1201911322)))))
{
goto IL_002b;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)990701179))))
{
goto IL_00c4;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1201911322))))
{
goto IL_0069;
}
}
{
return;
}
IL_002b:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)1619225942))))
{
goto IL_00b7;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1637783905))))
{
goto IL_0083;
}
}
{
return;
}
IL_003f:
{
uint32_t L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)2010141056)))))
{
goto IL_0058;
}
}
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)1960967436))))
{
goto IL_0076;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)2010141056))))
{
goto IL_009d;
}
}
{
return;
}
IL_0058:
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-1128725895))))
{
goto IL_0090;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-615837896))))
{
goto IL_00aa;
}
}
{
return;
}
IL_0069:
{
String_t* L_13 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, /*hidden argument*/NULL);
return;
}
IL_0076:
{
String_t* L_14 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_14, _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC, /*hidden argument*/NULL);
return;
}
IL_0083:
{
String_t* L_15 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5, /*hidden argument*/NULL);
return;
}
IL_0090:
{
String_t* L_16 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_16, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, /*hidden argument*/NULL);
return;
}
IL_009d:
{
String_t* L_17 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, /*hidden argument*/NULL);
return;
}
IL_00aa:
{
String_t* L_18 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_18, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, /*hidden argument*/NULL);
return;
}
IL_00b7:
{
String_t* L_19 = ___key0;
String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C, /*hidden argument*/NULL);
return;
}
IL_00c4:
{
String_t* L_20 = ___key0;
bool L_21 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_20, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, /*hidden argument*/NULL);
if (L_21)
{
goto IL_00d2;
}
}
{
return;
}
IL_00d2:
{
RuntimeObject* L_22 = __this->get__message_1();
RuntimeObject * L_23 = ___value1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_22, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)));
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void System.Runtime.Remoting.Messaging.IInternalMessage::set_Uri(System.String) */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_22, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)), ((String_t*)CastclassSealed((RuntimeObject*)L_23, String_t_il2cpp_TypeInfo_var)));
return;
}
}
// System.Collections.ICollection System.Runtime.Remoting.Messaging.MessageDictionary::get_Values()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_get_Values_m6AB0F8B7CC24C6956F1B01B94712A15AE0FC7621 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_get_Values_m6AB0F8B7CC24C6956F1B01B94712A15AE0FC7621_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_3;
memset((&V_3), 0, sizeof(V_3));
RuntimeObject* V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_0, /*hidden argument*/NULL);
V_0 = L_0;
V_1 = 0;
goto IL_0023;
}
IL_000a:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = V_0;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = __this->get__methodKeys_2();
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
String_t* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, String_t* >::Invoke(12 /* System.Object System.Runtime.Remoting.Messaging.MessageDictionary::GetMethodProperty(System.String) */, __this, L_5);
NullCheck(L_1);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_1, L_6);
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0023:
{
int32_t L_8 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get__methodKeys_2();
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
{
goto IL_000a;
}
}
{
RuntimeObject* L_10 = __this->get__internalProperties_0();
if (!L_10)
{
goto IL_0090;
}
}
{
RuntimeObject* L_11 = __this->get__internalProperties_0();
NullCheck(L_11);
RuntimeObject* L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_11);
V_2 = L_12;
}
IL_0042:
try
{ // begin try (depth: 1)
{
goto IL_0072;
}
IL_0044:
{
RuntimeObject* L_13 = V_2;
NullCheck(L_13);
RuntimeObject * L_14 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_13);
V_3 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_14, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
RuntimeObject * L_15 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_3), /*hidden argument*/NULL);
bool L_16 = MessageDictionary_IsOverridenKey_mD305D7E4CA9CA6B25A501B9A828582234FB7F79E(__this, ((String_t*)CastclassSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (L_16)
{
goto IL_0072;
}
}
IL_0064:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = V_0;
RuntimeObject * L_18 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_3), /*hidden argument*/NULL);
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18);
}
IL_0072:
{
RuntimeObject* L_19 = V_2;
NullCheck(L_19);
bool L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_19);
if (L_20)
{
goto IL_0044;
}
}
IL_007a:
{
IL2CPP_LEAVE(0x90, FINALLY_007c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_007c;
}
FINALLY_007c:
{ // begin finally (depth: 1)
{
RuntimeObject* L_21 = V_2;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_22 = V_4;
if (!L_22)
{
goto IL_008f;
}
}
IL_0088:
{
RuntimeObject* L_23 = V_4;
NullCheck(L_23);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_23);
}
IL_008f:
{
IL2CPP_END_FINALLY(124)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(124)
{
IL2CPP_JUMP_TBL(0x90, IL_0090)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0090:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_24 = V_0;
return L_24;
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::Add(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_Add_m015064027A6721BD583B7FAC2B1CF75BF809F8E9 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_Add_m015064027A6721BD583B7FAC2B1CF75BF809F8E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___key0;
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0028;
}
IL_000b:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get__methodKeys_2();
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
String_t* L_5 = V_0;
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0024;
}
}
{
String_t* L_7 = V_0;
RuntimeObject * L_8 = ___value1;
VirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(13 /* System.Void System.Runtime.Remoting.Messaging.MessageDictionary::SetMethodProperty(System.String,System.Object) */, __this, L_7, L_8);
return;
}
IL_0024:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0028:
{
int32_t L_10 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_11 = __this->get__methodKeys_2();
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_000b;
}
}
{
RuntimeObject* L_12 = __this->get__internalProperties_0();
if (L_12)
{
goto IL_0047;
}
}
{
RuntimeObject* L_13 = VirtFuncInvoker0< RuntimeObject* >::Invoke(11 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::AllocInternalProperties() */, __this);
__this->set__internalProperties_0(L_13);
}
IL_0047:
{
RuntimeObject* L_14 = __this->get__internalProperties_0();
RuntimeObject * L_15 = ___key0;
RuntimeObject * L_16 = ___value1;
NullCheck(L_14);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_14, L_15, L_16);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_Contains_m0425FED70AF7F875BFFAADA9FBD43907F7B83894 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeObject * ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_Contains_m0425FED70AF7F875BFFAADA9FBD43907F7B83894_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___key0;
V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
V_1 = 0;
goto IL_0021;
}
IL_000b:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = __this->get__methodKeys_2();
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
String_t* L_5 = V_0;
bool L_6 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_001d;
}
}
{
return (bool)1;
}
IL_001d:
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0021:
{
int32_t L_8 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = __this->get__methodKeys_2();
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
{
goto IL_000b;
}
}
{
RuntimeObject* L_10 = __this->get__internalProperties_0();
if (!L_10)
{
goto IL_0041;
}
}
{
RuntimeObject* L_11 = __this->get__internalProperties_0();
RuntimeObject * L_12 = ___key0;
NullCheck(L_11);
bool L_13 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(2 /* System.Boolean System.Collections.IDictionary::Contains(System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_11, L_12);
return L_13;
}
IL_0041:
{
return (bool)0;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.MessageDictionary::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MessageDictionary_get_Count_m4E0EA9F682B531893F0FBF7BBE4D49809EE2B831 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_get_Count_m4E0EA9F682B531893F0FBF7BBE4D49809EE2B831_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get__internalProperties_0();
if (!L_0)
{
goto IL_001d;
}
}
{
RuntimeObject* L_1 = __this->get__internalProperties_0();
NullCheck(L_1);
int32_t L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_1);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = __this->get__methodKeys_2();
NullCheck(L_3);
return ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))));
}
IL_001d:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = __this->get__methodKeys_2();
NullCheck(L_4);
return (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))));
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageDictionary_CopyTo_mB806B4F6D7CE553EC083A77DC72314DA362368C9 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_CopyTo_mB806B4F6D7CE553EC083A77DC72314DA362368C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = MessageDictionary_get_Values_m6AB0F8B7CC24C6956F1B01B94712A15AE0FC7621(__this, /*hidden argument*/NULL);
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___index1;
NullCheck(L_0);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0, L_1, L_2);
return;
}
}
// System.Collections.IEnumerator System.Runtime.Remoting.Messaging.MessageDictionary::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_System_Collections_IEnumerable_GetEnumerator_mC933029C5A9432CEF0A34961C55676C6BFB7E84B (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_System_Collections_IEnumerable_GetEnumerator_mC933029C5A9432CEF0A34961C55676C6BFB7E84B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * L_0 = (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 *)il2cpp_codegen_object_new(DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9_il2cpp_TypeInfo_var);
DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Collections.IDictionaryEnumerator System.Runtime.Remoting.Messaging.MessageDictionary::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_GetEnumerator_m31594679B0048F59513DF2318E7ABF28774E31A5 (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MessageDictionary_GetEnumerator_m31594679B0048F59513DF2318E7ABF28774E31A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * L_0 = (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 *)il2cpp_codegen_object_new(DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9_il2cpp_TypeInfo_var);
DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::.ctor(System.Runtime.Remoting.Messaging.MessageDictionary)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * ___methodDictionary0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEnumerator__ctor_mA7D9DB0B74A0FB195C28FF779A366377D32FCC85_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * G_B2_0 = NULL;
DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * G_B1_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * G_B3_1 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_0 = ___methodDictionary0;
__this->set__methodDictionary_0(L_0);
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_1 = __this->get__methodDictionary_0();
NullCheck(L_1);
RuntimeObject* L_2 = L_1->get__internalProperties_0();
G_B1_0 = __this;
if (L_2)
{
G_B2_0 = __this;
goto IL_001e;
}
}
{
G_B3_0 = ((RuntimeObject*)(NULL));
G_B3_1 = G_B1_0;
goto IL_002e;
}
IL_001e:
{
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_3 = __this->get__methodDictionary_0();
NullCheck(L_3);
RuntimeObject* L_4 = L_3->get__internalProperties_0();
NullCheck(L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_4);
G_B3_0 = L_5;
G_B3_1 = G_B2_0;
}
IL_002e:
{
NullCheck(G_B3_1);
G_B3_1->set__hashtableEnum_1(G_B3_0);
__this->set__posMethod_2((-1));
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEnumerator_get_Current_m6DDDCF2A497034F7A84013A02B3B046CB0AC74C9 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEnumerator_get_Current_m6DDDCF2A497034F7A84013A02B3B046CB0AC74C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365(__this, /*hidden argument*/NULL);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_1 = L_0;
RuntimeObject * L_2 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_1);
return L_2;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DictionaryEnumerator_MoveNext_mB1768E3DC0980322503D658FE95B9443812991C1 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEnumerator_MoveNext_mB1768E3DC0980322503D658FE95B9443812991C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get__posMethod_2();
if ((((int32_t)L_0) == ((int32_t)((int32_t)-2))))
{
goto IL_0037;
}
}
{
int32_t L_1 = __this->get__posMethod_2();
__this->set__posMethod_2(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)));
int32_t L_2 = __this->get__posMethod_2();
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_3 = __this->get__methodDictionary_0();
NullCheck(L_3);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3->get__methodKeys_2();
NullCheck(L_4);
if ((((int32_t)L_2) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_002f;
}
}
{
return (bool)1;
}
IL_002f:
{
__this->set__posMethod_2(((int32_t)-2));
}
IL_0037:
{
RuntimeObject* L_5 = __this->get__hashtableEnum_1();
if (L_5)
{
goto IL_0060;
}
}
{
return (bool)0;
}
IL_0041:
{
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_6 = __this->get__methodDictionary_0();
RuntimeObject* L_7 = __this->get__hashtableEnum_1();
NullCheck(L_7);
RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_7);
NullCheck(L_6);
bool L_9 = MessageDictionary_IsOverridenKey_mD305D7E4CA9CA6B25A501B9A828582234FB7F79E(L_6, ((String_t*)CastclassSealed((RuntimeObject*)L_8, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if (L_9)
{
goto IL_0060;
}
}
{
return (bool)1;
}
IL_0060:
{
RuntimeObject* L_10 = __this->get__hashtableEnum_1();
NullCheck(L_10);
bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_0041;
}
}
{
return (bool)0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEnumerator_Reset_m13E09097E0CEBBB90906F8A85DAE7E4B41AF450E (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEnumerator_Reset_m13E09097E0CEBBB90906F8A85DAE7E4B41AF450E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__posMethod_2((-1));
RuntimeObject* L_0 = __this->get__hashtableEnum_1();
NullCheck(L_0);
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_0);
return;
}
}
// System.Collections.DictionaryEntry System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::get_Entry()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get__posMethod_2();
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_1 = __this->get__methodDictionary_0();
NullCheck(L_1);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1->get__methodKeys_2();
int32_t L_3 = __this->get__posMethod_2();
NullCheck(L_2);
int32_t L_4 = L_3;
String_t* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_6 = __this->get__methodDictionary_0();
MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * L_7 = __this->get__methodDictionary_0();
NullCheck(L_7);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_8 = L_7->get__methodKeys_2();
int32_t L_9 = __this->get__posMethod_2();
NullCheck(L_8);
int32_t L_10 = L_9;
String_t* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
NullCheck(L_6);
RuntimeObject * L_12 = VirtFuncInvoker1< RuntimeObject *, String_t* >::Invoke(12 /* System.Object System.Runtime.Remoting.Messaging.MessageDictionary::GetMethodProperty(System.String) */, L_6, L_11);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13;
memset((&L_13), 0, sizeof(L_13));
DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_13), L_5, L_12, /*hidden argument*/NULL);
return L_13;
}
IL_003e:
{
int32_t L_14 = __this->get__posMethod_2();
if ((((int32_t)L_14) == ((int32_t)(-1))))
{
goto IL_004f;
}
}
{
RuntimeObject* L_15 = __this->get__hashtableEnum_1();
if (L_15)
{
goto IL_005a;
}
}
IL_004f:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_16 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_16, _stringLiteral5CE312D71CFEAA34E1D566E3EE3D2276A9F5884D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365_RuntimeMethod_var);
}
IL_005a:
{
RuntimeObject* L_17 = __this->get__hashtableEnum_1();
NullCheck(L_17);
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_18 = InterfaceFuncInvoker0< DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 >::Invoke(2 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027_il2cpp_TypeInfo_var, L_17);
return L_18;
}
}
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::get_Key()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEnumerator_get_Key_m6163DE37159F891C0E722A803C3C06A89A09A6B2 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365(__this, /*hidden argument*/NULL);
V_0 = L_0;
RuntimeObject * L_1 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.Runtime.Remoting.Messaging.MessageDictionary_DictionaryEnumerator::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEnumerator_get_Value_m074C822A494B3676EB679A4F7DA4CDB795766963 (DictionaryEnumerator_tA162086B57068DE62A7BAD2CAA7003E632DE2AB9 * __this, const RuntimeMethod* method)
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_0 = DictionaryEnumerator_get_Entry_m43D72FBF041254775BFFD1B888E35ED32CB6E365(__this, /*hidden argument*/NULL);
V_0 = L_0;
RuntimeObject * L_1 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_0), /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_m7E9902A41698A226E6FF236E851D05BF0152C859 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_0 = NULL;
SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA V_1;
memset((&V_1), 0, sizeof(V_1));
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
VirtActionInvoker0::Invoke(23 /* System.Void System.Runtime.Remoting.Messaging.MethodCall::Init() */, __this);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_1 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0030;
}
IL_0015:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_2 = V_0;
NullCheck(L_2);
SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA L_3 = SerializationInfoEnumerator_get_Current_m8C18D86105BD6390B0FB268A1C1E8151D8AF3C33(L_2, /*hidden argument*/NULL);
V_1 = L_3;
String_t* L_4 = SerializationEntry_get_Name_m364D6CAEAD32EE66700B47B65E80C03D80596DC4_inline((SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_5 = SerializationEntry_get_Value_m6E7295904D91A38BFE2C47C662E75E8063ABC048_inline((SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA *)(&V_1), /*hidden argument*/NULL);
VirtActionInvoker2< String_t*, RuntimeObject * >::Invoke(19 /* System.Void System.Runtime.Remoting.Messaging.MethodCall::InitMethodProperty(System.String,System.Object) */, __this, L_4, L_5);
}
IL_0030:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_6 = V_0;
NullCheck(L_6);
bool L_7 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0015;
}
}
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor(System.Runtime.Remoting.Messaging.CADMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_mC7F8A5B354B3C24FEFAD09709F9BB36859E8F848 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall__ctor_mC7F8A5B354B3C24FEFAD09709F9BB36859E8F848_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_0 = ___msg0;
NullCheck(L_0);
String_t* L_1 = CADMethodCallMessage_get_Uri_m15EEB5FEBEF308CC593B7EFFD2480E2C2E393B1E_inline(L_0, /*hidden argument*/NULL);
String_t* L_2 = String_Copy_m521EF2A77A1F54EFAB52903A780485ECD171EFA7(L_1, /*hidden argument*/NULL);
__this->set__uri_0(L_2);
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_3 = ___msg0;
NullCheck(L_3);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = CADMethodCallMessage_GetArguments_m439B2118804E94D73DDDB17290603428C3D000A0(L_3, /*hidden argument*/NULL);
V_0 = L_4;
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_5 = ___msg0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = V_0;
NullCheck(L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = CADMethodCallMessage_GetArgs_mD48812F959652364E7516C67D4A9BB271EB66ED8(L_5, L_6, /*hidden argument*/NULL);
__this->set__args_3(L_7);
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_8 = ___msg0;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_9 = V_0;
NullCheck(L_8);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_10 = CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982(L_8, L_9, /*hidden argument*/NULL);
__this->set__callContext_6(L_10);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_11 = __this->get__callContext_6();
if (L_11)
{
goto IL_004b;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_12 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_12, /*hidden argument*/NULL);
__this->set__callContext_6(L_12);
}
IL_004b:
{
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_13 = ___msg0;
NullCheck(L_13);
MethodBase_t * L_14 = CADMessageBase_GetMethod_m07B7AC4CB37ECB457423B8C523C58A553B3625B2(L_13, /*hidden argument*/NULL);
__this->set__methodBase_5(L_14);
VirtActionInvoker0::Invoke(23 /* System.Void System.Runtime.Remoting.Messaging.MethodCall::Init() */, __this);
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_15 = ___msg0;
NullCheck(L_15);
int32_t L_16 = CADMethodCallMessage_get_PropertiesCount_mC293969177A5F92BFDBA4DF33985FAB6B80303A3_inline(L_15, /*hidden argument*/NULL);
if ((((int32_t)L_16) <= ((int32_t)0)))
{
goto IL_0078;
}
}
{
RuntimeObject* L_17 = VirtFuncInvoker0< RuntimeObject* >::Invoke(21 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::get_Properties() */, __this);
CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * L_18 = ___msg0;
NullCheck(L_18);
int32_t L_19 = CADMethodCallMessage_get_PropertiesCount_mC293969177A5F92BFDBA4DF33985FAB6B80303A3_inline(L_18, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_20 = V_0;
CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00(L_17, L_19, L_20, /*hidden argument*/NULL);
}
IL_0078:
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall__ctor_m329402E5B534872AF6C990DB871A294D8D6047F6 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::CopyFrom(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_CopyFrom_mBDC7054B8D0E6BF7049D1402D4A96132EAC9B07B (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, RuntimeObject* ___call0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_CopyFrom_mBDC7054B8D0E6BF7049D1402D4A96132EAC9B07B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___call0;
NullCheck(L_0);
String_t* L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_0);
__this->set__uri_0(L_1);
RuntimeObject* L_2 = ___call0;
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_TypeName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__typeName_1(L_3);
RuntimeObject* L_4 = ___call0;
NullCheck(L_4);
String_t* L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_4);
__this->set__methodName_2(L_5);
RuntimeObject* L_6 = ___call0;
NullCheck(L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_6);
__this->set__args_3(L_7);
RuntimeObject* L_8 = ___call0;
NullCheck(L_8);
RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodSignature() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_8);
__this->set__methodSignature_4(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_9, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
RuntimeObject* L_10 = ___call0;
NullCheck(L_10);
MethodBase_t * L_11 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_10);
__this->set__methodBase_5(L_11);
RuntimeObject* L_12 = ___call0;
NullCheck(L_12);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_13 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_12);
__this->set__callContext_6(L_13);
VirtActionInvoker0::Invoke(23 /* System.Void System.Runtime.Remoting.Messaging.MethodCall::Init() */, __this);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::InitMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_InitMethodProperty_m5439959AB074C5CC8DE5CFDF13688FAD95CBF4F3 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_InitMethodProperty_m5439959AB074C5CC8DE5CFDF13688FAD95CBF4F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___key0;
uint32_t L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1619225942)))))
{
goto IL_0032;
}
}
{
uint32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)990701179))))
{
goto IL_00be;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)1201911322))))
{
goto IL_00af;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1619225942))))
{
goto IL_009d;
}
}
{
goto IL_0137;
}
IL_0032:
{
uint32_t L_6 = V_0;
if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)-1444289912)))))
{
goto IL_0052;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)2010141056))))
{
goto IL_0067;
}
}
{
uint32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)-1444289912))))
{
goto IL_00cd;
}
}
{
goto IL_0137;
}
IL_0052:
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)-1128725895))))
{
goto IL_0079;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)-615837896))))
{
goto IL_008b;
}
}
{
goto IL_0137;
}
IL_0067:
{
String_t* L_11 = ___key0;
bool L_12 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_11, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, /*hidden argument*/NULL);
if (L_12)
{
goto IL_00dc;
}
}
{
goto IL_0137;
}
IL_0079:
{
String_t* L_13 = ___key0;
bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, /*hidden argument*/NULL);
if (L_14)
{
goto IL_00e9;
}
}
{
goto IL_0137;
}
IL_008b:
{
String_t* L_15 = ___key0;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, /*hidden argument*/NULL);
if (L_16)
{
goto IL_00f6;
}
}
{
goto IL_0137;
}
IL_009d:
{
String_t* L_17 = ___key0;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0103;
}
}
{
goto IL_0137;
}
IL_00af:
{
String_t* L_19 = ___key0;
bool L_20 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0110;
}
}
{
goto IL_0137;
}
IL_00be:
{
String_t* L_21 = ___key0;
bool L_22 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_21, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, /*hidden argument*/NULL);
if (L_22)
{
goto IL_011d;
}
}
{
goto IL_0137;
}
IL_00cd:
{
String_t* L_23 = ___key0;
bool L_24 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, _stringLiteralE06623A71E0A981E5B21D3F01E8E4BFBF22EBD05, /*hidden argument*/NULL);
if (L_24)
{
goto IL_012a;
}
}
{
goto IL_0137;
}
IL_00dc:
{
RuntimeObject * L_25 = ___value1;
__this->set__typeName_1(((String_t*)CastclassSealed((RuntimeObject*)L_25, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_00e9:
{
RuntimeObject * L_26 = ___value1;
__this->set__methodName_2(((String_t*)CastclassSealed((RuntimeObject*)L_26, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_00f6:
{
RuntimeObject * L_27 = ___value1;
__this->set__methodSignature_4(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_27, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
return;
}
IL_0103:
{
RuntimeObject * L_28 = ___value1;
__this->set__args_3(((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_28, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)));
return;
}
IL_0110:
{
RuntimeObject * L_29 = ___value1;
__this->set__callContext_6(((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)CastclassSealed((RuntimeObject*)L_29, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var)));
return;
}
IL_011d:
{
RuntimeObject * L_30 = ___value1;
__this->set__uri_0(((String_t*)CastclassSealed((RuntimeObject*)L_30, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_012a:
{
RuntimeObject * L_31 = ___value1;
__this->set__genericArguments_8(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_31, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
return;
}
IL_0137:
{
RuntimeObject* L_32 = VirtFuncInvoker0< RuntimeObject* >::Invoke(21 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::get_Properties() */, __this);
String_t* L_33 = ___key0;
RuntimeObject * L_34 = ___value1;
NullCheck(L_32);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_32, L_33, L_34);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_GetObjectData_m89623BAE1207753351E235F93B5870727423327F (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_GetObjectData_m89623BAE1207753351E235F93B5870727423327F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
String_t* L_1 = __this->get__typeName_1();
NullCheck(L_0);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_0, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
String_t* L_3 = __this->get__methodName_2();
NullCheck(L_2);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = __this->get__methodSignature_4();
NullCheck(L_4);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_4, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, (RuntimeObject *)(RuntimeObject *)L_5, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get__args_3();
NullCheck(L_6);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteral864488DB57F62B2AD663BAD0ABF308C17623A56C, (RuntimeObject *)(RuntimeObject *)L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_9 = __this->get__callContext_6();
NullCheck(L_8);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_8, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, L_9, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0;
String_t* L_11 = __this->get__uri_0();
NullCheck(L_10);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, L_11, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_13 = __this->get__genericArguments_8();
NullCheck(L_12);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_12, _stringLiteralE06623A71E0A981E5B21D3F01E8E4BFBF22EBD05, (RuntimeObject *)(RuntimeObject *)L_13, /*hidden argument*/NULL);
RuntimeObject* L_14 = __this->get_InternalProperties_10();
if (!L_14)
{
goto IL_00cd;
}
}
{
RuntimeObject* L_15 = __this->get_InternalProperties_10();
NullCheck(L_15);
RuntimeObject* L_16 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_15);
V_0 = L_16;
}
IL_008b:
try
{ // begin try (depth: 1)
{
goto IL_00b2;
}
IL_008d:
{
RuntimeObject* L_17 = V_0;
NullCheck(L_17);
RuntimeObject * L_18 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_17);
V_1 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_18, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_19 = ___info0;
RuntimeObject * L_20 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_21 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_19);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_19, ((String_t*)CastclassSealed((RuntimeObject*)L_20, String_t_il2cpp_TypeInfo_var)), L_21, /*hidden argument*/NULL);
}
IL_00b2:
{
RuntimeObject* L_22 = V_0;
NullCheck(L_22);
bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_008d;
}
}
IL_00ba:
{
IL2CPP_LEAVE(0xCD, FINALLY_00bc);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00bc;
}
FINALLY_00bc:
{ // begin finally (depth: 1)
{
RuntimeObject* L_24 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_24, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_25 = V_2;
if (!L_25)
{
goto IL_00cc;
}
}
IL_00c6:
{
RuntimeObject* L_26 = V_2;
NullCheck(L_26);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_26);
}
IL_00cc:
{
IL2CPP_END_FINALLY(188)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(188)
{
IL2CPP_JUMP_TBL(0xCD, IL_00cd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00cd:
{
return;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.MethodCall::get_ArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MethodCall_get_ArgCount_mF39BE4CA676A8A86707EA15D6320823ED7552E54 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_3();
NullCheck(L_0);
return (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
}
}
// System.Object[] System.Runtime.Remoting.Messaging.MethodCall::get_Args()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MethodCall_get_Args_m7709EAC00F15FFDDB72C94368B07274ECEC92F6C (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_3();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodCall::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * MethodCall_get_LogicalCallContext_mEFADF782244FC5D058888989770CEEBDCD4A2EA7 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_get_LogicalCallContext_mEFADF782244FC5D058888989770CEEBDCD4A2EA7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get__callContext_6();
if (L_0)
{
goto IL_0013;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_1, /*hidden argument*/NULL);
__this->set__callContext_6(L_1);
}
IL_0013:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = __this->get__callContext_6();
return L_2;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodCall::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * MethodCall_get_MethodBase_m1534082D2E7951BB4EDFD63767116C46FB5600C5 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
MethodBase_t * L_0 = __this->get__methodBase_5();
bool L_1 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_0, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3(__this, /*hidden argument*/NULL);
}
IL_0014:
{
MethodBase_t * L_2 = __this->get__methodBase_5();
return L_2;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodCall::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_get_MethodName_mCD05573A98B54DC06FC4E1BB1527F073A9215D1C (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__methodName_2();
if (L_0)
{
goto IL_0019;
}
}
{
MethodBase_t * L_1 = __this->get__methodBase_5();
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1);
__this->set__methodName_2(L_2);
}
IL_0019:
{
String_t* L_3 = __this->get__methodName_2();
return L_3;
}
}
// System.Object System.Runtime.Remoting.Messaging.MethodCall::get_MethodSignature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodCall_get_MethodSignature_m6BA4F427D1BA7C19D7B4EA05D56BA92EFD6C818E (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_get_MethodSignature_m6BA4F427D1BA7C19D7B4EA05D56BA92EFD6C818E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
int32_t V_1 = 0;
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = __this->get__methodSignature_4();
if (L_0)
{
goto IL_004e;
}
}
{
MethodBase_t * L_1 = __this->get__methodBase_5();
bool L_2 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_1, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_004e;
}
}
{
MethodBase_t * L_3 = __this->get__methodBase_5();
NullCheck(L_3);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_4 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_3);
V_0 = L_4;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_5 = V_0;
NullCheck(L_5);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))));
__this->set__methodSignature_4(L_6);
V_1 = 0;
goto IL_0048;
}
IL_0034:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = __this->get__methodSignature_4();
int32_t L_8 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_9 = V_0;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_13);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Type_t *)L_13);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0048:
{
int32_t L_15 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_16 = V_0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0034;
}
}
IL_004e:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = __this->get__methodSignature_4();
return (RuntimeObject *)L_17;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodCall::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodCall_get_Properties_m89E516AEB07D857BCB334491598EDE5809A5624F (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_ExternalProperties_9();
if (L_0)
{
goto IL_000e;
}
}
{
VirtActionInvoker0::Invoke(22 /* System.Void System.Runtime.Remoting.Messaging.MethodCall::InitDictionary() */, __this);
}
IL_000e:
{
RuntimeObject* L_1 = __this->get_ExternalProperties_9();
return L_1;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::InitDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_InitDictionary_m4B2A560FDD3C10AD4ECC3A19E278993812F01DDD (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_InitDictionary_m4B2A560FDD3C10AD4ECC3A19E278993812F01DDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * V_0 = NULL;
{
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_0 = (MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 *)il2cpp_codegen_object_new(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var);
MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21(L_0, __this, /*hidden argument*/NULL);
V_0 = L_0;
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_1 = V_0;
__this->set_ExternalProperties_9(L_1);
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3 = MessageDictionary_GetInternalProperties_mB7970D787D61BDA1B76465969C8702B24591DDD1(L_2, /*hidden argument*/NULL);
__this->set_InternalProperties_10(L_3);
return;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodCall::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_get_TypeName_m50A7D32F1E357AF082B36B8101ACE546FA220DC4 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__typeName_1();
if (L_0)
{
goto IL_001e;
}
}
{
MethodBase_t * L_1 = __this->get__methodBase_5();
NullCheck(L_1);
Type_t * L_2 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_1);
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_2);
__this->set__typeName_1(L_3);
}
IL_001e:
{
String_t* L_4 = __this->get__typeName_1();
return L_4;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodCall::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_get_Uri_m37614C649332CE054E21D0C43F427A9B010DB14E (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_0();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_set_Uri_mD2C68895B8A44372C4D9F5DB32F3A3536762A468 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_0(L_0);
return;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodCall::System.Runtime.Remoting.Messaging.IInternalMessage.get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_get_Uri_m36D804FF98BC40AD6E27A524A0BAB08E8F970C58 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = MethodCall_get_Uri_m37614C649332CE054E21D0C43F427A9B010DB14E_inline(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::System.Runtime.Remoting.Messaging.IInternalMessage.set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_mDECC76AECB980D14BD75D9210388EBDDB76B0C3F (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
MethodCall_set_Uri_mD2C68895B8A44372C4D9F5DB32F3A3536762A468_inline(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.MethodCall::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodCall_GetArg_mC2E3B1DB0D5C675C1F9BD6B7A2DE751B3D52BD3C (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, int32_t ___argNum0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_3();
int32_t L_1 = ___argNum0;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_Init_mE034622F24F6FDDA8B3BF69E28E8BB019DCFEEFC (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::ResolveMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3 (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
Type_t * V_1 = NULL;
String_t* V_2 = NULL;
String_t* G_B5_0 = NULL;
{
String_t* L_0 = __this->get__uri_0();
if (!L_0)
{
goto IL_0177;
}
}
{
String_t* L_1 = __this->get__uri_0();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Type_t * L_2 = RemotingServices_GetServerTypeForUri_mDDC9FFB5DF59680CBC9DE30BB94E6AC9FA0FAD72(L_1, /*hidden argument*/NULL);
V_0 = L_2;
Type_t * L_3 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0061;
}
}
{
String_t* L_5 = __this->get__typeName_1();
if (L_5)
{
goto IL_002f;
}
}
{
G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
goto IL_0044;
}
IL_002f:
{
String_t* L_6 = __this->get__typeName_1();
String_t* L_7 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralD21048C5C5B019FA0A181ABA5C8DC41BEE59E376, L_6, _stringLiteralE7064F0B80F61DBC65915311032D27BAA569AE2A, /*hidden argument*/NULL);
G_B5_0 = L_7;
}
IL_0044:
{
V_2 = G_B5_0;
String_t* L_8 = V_2;
String_t* L_9 = __this->get__uri_0();
String_t* L_10 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral149C777077FD576D6F5704802A5222F47F1E5F96, L_8, _stringLiteral727B58A7FC9186C166DDD814CA82BE4811F6799D, L_9, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_11 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_0061:
{
String_t* L_12 = __this->get__typeName_1();
Type_t * L_13 = V_0;
Type_t * L_14 = MethodCall_CastTo_m6C8099061AD0228ABCD6F13AB9CFB3BDA66C206A(__this, L_12, L_13, /*hidden argument*/NULL);
V_1 = L_14;
Type_t * L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_16 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_15, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_00b3;
}
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_17 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_18 = L_17;
NullCheck(L_18);
ArrayElementTypeCheck (L_18, _stringLiteralDFCA281A4A271D0820F8AD9496CADF6E93C3EAAC);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDFCA281A4A271D0820F8AD9496CADF6E93C3EAAC);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = L_18;
String_t* L_20 = __this->get__typeName_1();
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_20);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_21 = L_19;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral05C3E4111A3A3C004AE8FD9B0119AE6147476CD0);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral05C3E4111A3A3C004AE8FD9B0119AE6147476CD0);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_22 = L_21;
Type_t * L_23 = V_0;
NullCheck(L_23);
String_t* L_24 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_23);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_24);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_24);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_25 = L_22;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8);
String_t* L_26 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_25, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_27 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_00b3:
{
Type_t * L_28 = V_1;
String_t* L_29 = __this->get__methodName_2();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_30 = __this->get__methodSignature_4();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_31 = RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872(L_28, L_29, L_30, /*hidden argument*/NULL);
__this->set__methodBase_5(L_31);
MethodBase_t * L_32 = __this->get__methodBase_5();
bool L_33 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_32, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_0107;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_34;
NullCheck(L_35);
ArrayElementTypeCheck (L_35, _stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = L_35;
String_t* L_37 = __this->get__methodName_2();
NullCheck(L_36);
ArrayElementTypeCheck (L_36, L_37);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_36;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, _stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = L_38;
Type_t * L_40 = V_1;
NullCheck(L_39);
ArrayElementTypeCheck (L_39, L_40);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_40);
String_t* L_41 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_39, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_42 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_42, L_41, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_0107:
{
Type_t * L_43 = V_1;
Type_t * L_44 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_45 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_43, L_44, /*hidden argument*/NULL);
if (!L_45)
{
goto IL_01b2;
}
}
{
Type_t * L_46 = V_1;
NullCheck(L_46);
bool L_47 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_46, /*hidden argument*/NULL);
if (!L_47)
{
goto IL_01b2;
}
}
{
Type_t * L_48 = V_0;
NullCheck(L_48);
bool L_49 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_48, /*hidden argument*/NULL);
if (L_49)
{
goto IL_01b2;
}
}
{
Type_t * L_50 = V_0;
MethodBase_t * L_51 = __this->get__methodBase_5();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_52 = RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395(L_50, L_51, /*hidden argument*/NULL);
__this->set__methodBase_5(L_52);
MethodBase_t * L_53 = __this->get__methodBase_5();
bool L_54 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_53, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_54)
{
goto IL_01b2;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_56 = L_55;
NullCheck(L_56);
ArrayElementTypeCheck (L_56, _stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = L_56;
String_t* L_58 = __this->get__methodName_2();
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_58);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_59 = L_57;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, _stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = L_59;
Type_t * L_61 = V_0;
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_61);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_61);
String_t* L_62 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_60, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_63 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_63, L_62, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_0177:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_64 = RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58(__this, /*hidden argument*/NULL);
__this->set__methodBase_5(L_64);
MethodBase_t * L_65 = __this->get__methodBase_5();
bool L_66 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_65, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_66)
{
goto IL_01b2;
}
}
{
String_t* L_67 = __this->get__methodName_2();
String_t* L_68 = MethodCall_get_TypeName_m50A7D32F1E357AF082B36B8101ACE546FA220DC4(__this, /*hidden argument*/NULL);
String_t* L_69 = String_Concat_mDD2E38332DED3A8C088D38D78A0E0BEB5091DA64(_stringLiteral56C5EA4F6E15872689ADC69EDB8DF1EAB0F577DC, L_67, _stringLiteralACD7F6EC5E827AEE2EAF13F317EA649325028722, L_68, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_70 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_70, L_69, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_70, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_01b2:
{
MethodBase_t * L_71 = __this->get__methodBase_5();
NullCheck(L_71);
bool L_72 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_71);
if (!L_72)
{
goto IL_01fb;
}
}
{
MethodBase_t * L_73 = __this->get__methodBase_5();
NullCheck(L_73);
bool L_74 = VirtFuncInvoker0< bool >::Invoke(25 /* System.Boolean System.Reflection.MethodBase::get_ContainsGenericParameters() */, L_73);
if (!L_74)
{
goto IL_01fb;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_75 = MethodCall_get_GenericArguments_mCED9844490BEB3CE9865C7E144EE8E242BC6550E(__this, /*hidden argument*/NULL);
if (L_75)
{
goto IL_01df;
}
}
{
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_76 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_76, _stringLiteral3DB0359959A93C1D9B9A1168AFBC097D868141E1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_76, MethodCall_ResolveMethod_m0C0BE9F6E7F53DED8382C14268C9617B6E6B9DC3_RuntimeMethod_var);
}
IL_01df:
{
MethodBase_t * L_77 = __this->get__methodBase_5();
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_78 = MethodCall_get_GenericArguments_mCED9844490BEB3CE9865C7E144EE8E242BC6550E(__this, /*hidden argument*/NULL);
NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_77, MethodInfo_t_il2cpp_TypeInfo_var)));
MethodInfo_t * L_79 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_77, MethodInfo_t_il2cpp_TypeInfo_var)), L_78);
__this->set__methodBase_5(L_79);
}
IL_01fb:
{
return;
}
}
// System.Type System.Runtime.Remoting.Messaging.MethodCall::CastTo(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * MethodCall_CastTo_m6C8099061AD0228ABCD6F13AB9CFB3BDA66C206A (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___clientType0, Type_t * ___serverType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_CastTo_m6C8099061AD0228ABCD6F13AB9CFB3BDA66C206A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL;
int32_t V_2 = 0;
Type_t * V_3 = NULL;
{
String_t* L_0 = ___clientType0;
String_t* L_1 = MethodCall_GetTypeNameFromAssemblyQualifiedName_m398DEE37D2859D0F6AA0369B0C92F2875583DAD0(L_0, /*hidden argument*/NULL);
___clientType0 = L_1;
String_t* L_2 = ___clientType0;
Type_t * L_3 = ___serverType1;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_3);
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0018;
}
}
{
Type_t * L_6 = ___serverType1;
return L_6;
}
IL_0018:
{
Type_t * L_7 = ___serverType1;
NullCheck(L_7);
Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_7);
V_0 = L_8;
goto IL_0038;
}
IL_0021:
{
String_t* L_9 = ___clientType0;
Type_t * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_10);
bool L_12 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_9, L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0031;
}
}
{
Type_t * L_13 = V_0;
return L_13;
}
IL_0031:
{
Type_t * L_14 = V_0;
NullCheck(L_14);
Type_t * L_15 = VirtFuncInvoker0< Type_t * >::Invoke(29 /* System.Type System.Type::get_BaseType() */, L_14);
V_0 = L_15;
}
IL_0038:
{
Type_t * L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_17 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_16, (Type_t *)NULL, /*hidden argument*/NULL);
if (L_17)
{
goto IL_0021;
}
}
{
Type_t * L_18 = ___serverType1;
NullCheck(L_18);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_19 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(44 /* System.Type[] System.Type::GetInterfaces() */, L_18);
V_1 = L_19;
V_2 = 0;
goto IL_0064;
}
IL_004c:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_20 = V_1;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
Type_t * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
V_3 = L_23;
String_t* L_24 = ___clientType0;
Type_t * L_25 = V_3;
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_25);
bool L_27 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_24, L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_0060;
}
}
{
Type_t * L_28 = V_3;
return L_28;
}
IL_0060:
{
int32_t L_29 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_0064:
{
int32_t L_30 = V_2;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_31 = V_1;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))))
{
goto IL_004c;
}
}
{
return (Type_t *)NULL;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodCall::GetTypeNameFromAssemblyQualifiedName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodCall_GetTypeNameFromAssemblyQualifiedName_m398DEE37D2859D0F6AA0369B0C92F2875583DAD0 (String_t* ___aqname0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodCall_GetTypeNameFromAssemblyQualifiedName_m398DEE37D2859D0F6AA0369B0C92F2875583DAD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
{
String_t* L_0 = ___aqname0;
NullCheck(L_0);
int32_t L_1 = String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B(L_0, _stringLiteral0F30FEF4F3C89AF3463EAA6EA1C157EBB2C73C9E, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = ___aqname0;
int32_t L_3 = V_0;
G_B1_0 = ((int32_t)44);
G_B1_1 = L_2;
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
G_B2_0 = ((int32_t)44);
G_B2_1 = L_2;
goto IL_0018;
}
}
{
int32_t L_4 = V_0;
G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)2));
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0019;
}
IL_0018:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0019:
{
NullCheck(G_B3_2);
int32_t L_5 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL);
V_1 = L_5;
int32_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_0032;
}
}
{
String_t* L_7 = ___aqname0;
int32_t L_8 = V_1;
NullCheck(L_7);
String_t* L_9 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_7, 0, L_8, /*hidden argument*/NULL);
NullCheck(L_9);
String_t* L_10 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_9, /*hidden argument*/NULL);
___aqname0 = L_10;
}
IL_0032:
{
String_t* L_11 = ___aqname0;
return L_11;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodCall::System.Runtime.Remoting.Messaging.IInternalMessage.get_TargetIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_get_TargetIdentity_m91EE4CAF53547B8CB9B959DE8A4DFB634DE651AC (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get__targetIdentity_7();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodCall::System.Runtime.Remoting.Messaging.IInternalMessage.set_TargetIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodCall_System_Runtime_Remoting_Messaging_IInternalMessage_set_TargetIdentity_mE0877229300E7EE19D431D68C6A4C7E4B356C37D (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___value0, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___value0;
__this->set__targetIdentity_7(L_0);
return;
}
}
// System.Type[] System.Runtime.Remoting.Messaging.MethodCall::get_GenericArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* MethodCall_get_GenericArguments_mCED9844490BEB3CE9865C7E144EE8E242BC6550E (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_0 = NULL;
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = __this->get__genericArguments_8();
if (!L_0)
{
goto IL_000f;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_1 = __this->get__genericArguments_8();
return L_1;
}
IL_000f:
{
MethodBase_t * L_2 = MethodCall_get_MethodBase_m1534082D2E7951BB4EDFD63767116C46FB5600C5(__this, /*hidden argument*/NULL);
NullCheck(L_2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_3 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_2);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = L_3;
V_0 = L_4;
__this->set__genericArguments_8(L_4);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = V_0;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_mC6EA34E67B5FD04515508D8E869A2676A41F31DA (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, Exception_t * ___e0, RuntimeObject* ___msg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse__ctor_mC6EA34E67B5FD04515508D8E869A2676A41F31DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg1;
__this->set__callMsg_10(L_0);
RuntimeObject* L_1 = ___msg1;
if (!L_1)
{
goto IL_001e;
}
}
{
RuntimeObject* L_2 = ___msg1;
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__uri_1(L_3);
goto IL_0029;
}
IL_001e:
{
String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set__uri_1(L_4);
}
IL_0029:
{
Exception_t * L_5 = ___e0;
__this->set__exception_5(L_5);
__this->set__returnValue_4(NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
__this->set__outArgs_9(L_6);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Object,System.Object[],System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, RuntimeObject * ___returnValue0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___outArgs1, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx2, RuntimeObject* ___msg3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg3;
__this->set__callMsg_10(L_0);
RuntimeObject* L_1 = ___msg3;
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_1);
__this->set__uri_1(L_2);
__this->set__exception_5((Exception_t *)NULL);
RuntimeObject * L_3 = ___returnValue0;
__this->set__returnValue_4(L_3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___outArgs1;
__this->set__args_8(L_4);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage,System.Runtime.Remoting.Messaging.CADMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_m839FF8EAB4D06067825F228C91F90C69464A77A6 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, RuntimeObject* ___msg0, CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * ___retmsg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse__ctor_m839FF8EAB4D06067825F228C91F90C69464A77A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg0;
__this->set__callMsg_10(L_0);
RuntimeObject* L_1 = ___msg0;
NullCheck(L_1);
MethodBase_t * L_2 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_1);
__this->set__methodBase_3(L_2);
RuntimeObject* L_3 = ___msg0;
NullCheck(L_3);
String_t* L_4 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_3);
__this->set__uri_1(L_4);
RuntimeObject* L_5 = ___msg0;
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_5);
__this->set__methodName_0(L_6);
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_7 = ___retmsg1;
NullCheck(L_7);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_8 = CADMethodReturnMessage_GetArguments_mDBC49529C7A1827E77267AD5697D8E3BEA1D561A(L_7, /*hidden argument*/NULL);
V_0 = L_8;
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_9 = ___retmsg1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = V_0;
NullCheck(L_9);
Exception_t * L_11 = CADMethodReturnMessage_GetException_mD7E1261D3ABCF6432AF69C671940511C9D8C47D4(L_9, L_10, /*hidden argument*/NULL);
__this->set__exception_5(L_11);
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_12 = ___retmsg1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_13 = V_0;
NullCheck(L_12);
RuntimeObject * L_14 = CADMethodReturnMessage_GetReturnValue_m80FC97EA8DEE9B873A46DCF94588BB66CF3D613C(L_12, L_13, /*hidden argument*/NULL);
__this->set__returnValue_4(L_14);
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_15 = ___retmsg1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = V_0;
NullCheck(L_15);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = CADMethodReturnMessage_GetArgs_m2FF58140F17FED157937B52541805B215DFF2B03(L_15, L_16, /*hidden argument*/NULL);
__this->set__args_8(L_17);
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_18 = ___retmsg1;
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_19 = V_0;
NullCheck(L_18);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_20 = CADMessageBase_GetLogicalCallContext_m8AFD02C69B657DA859D5927024D747734B806982(L_18, L_19, /*hidden argument*/NULL);
__this->set__callContext_11(L_20);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_21 = __this->get__callContext_11();
if (L_21)
{
goto IL_007f;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_22 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_22, /*hidden argument*/NULL);
__this->set__callContext_11(L_22);
}
IL_007f:
{
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_23 = ___retmsg1;
NullCheck(L_23);
int32_t L_24 = CADMethodReturnMessage_get_PropertiesCount_mDCAC8C0CD1B4EB2D10BA2F38486790B5AE2F4B9A_inline(L_23, /*hidden argument*/NULL);
if ((((int32_t)L_24) <= ((int32_t)0)))
{
goto IL_009a;
}
}
{
RuntimeObject* L_25 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::get_Properties() */, __this);
CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * L_26 = ___retmsg1;
NullCheck(L_26);
int32_t L_27 = CADMethodReturnMessage_get_PropertiesCount_mDCAC8C0CD1B4EB2D10BA2F38486790B5AE2F4B9A_inline(L_26, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_28 = V_0;
CADMessageBase_UnmarshalProperties_m10FC77E5ABBB1150813760B83655EA6DEFC72A00(L_25, L_27, L_28, /*hidden argument*/NULL);
}
IL_009a:
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_m343C795DDD2A47711F8E279DD62685E6F2AC43D7 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_0 = NULL;
SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA V_1;
memset((&V_1), 0, sizeof(V_1));
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_1 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_002a;
}
IL_000f:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_2 = V_0;
NullCheck(L_2);
SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA L_3 = SerializationInfoEnumerator_get_Current_m8C18D86105BD6390B0FB268A1C1E8151D8AF3C33(L_2, /*hidden argument*/NULL);
V_1 = L_3;
String_t* L_4 = SerializationEntry_get_Name_m364D6CAEAD32EE66700B47B65E80C03D80596DC4_inline((SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_5 = SerializationEntry_get_Value_m6E7295904D91A38BFE2C47C662E75E8063ABC048_inline((SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA *)(&V_1), /*hidden argument*/NULL);
MethodResponse_InitMethodProperty_m995C7A77C1C912B90C8F94BE3B4FBF4EE0638F9C(__this, L_4, L_5, /*hidden argument*/NULL);
}
IL_002a:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_6 = V_0;
NullCheck(L_6);
bool L_7 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_000f;
}
}
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::InitMethodProperty(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_InitMethodProperty_m995C7A77C1C912B90C8F94BE3B4FBF4EE0638F9C (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___key0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_InitMethodProperty_m995C7A77C1C912B90C8F94BE3B4FBF4EE0638F9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
String_t* L_0 = ___key0;
uint32_t L_1 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
uint32_t L_2 = V_0;
if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)1960967436)))))
{
goto IL_004d;
}
}
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)1201911322)))))
{
goto IL_0032;
}
}
{
uint32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)990701179))))
{
goto IL_00b5;
}
}
{
uint32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1201911322))))
{
goto IL_00fa;
}
}
{
goto IL_016c;
}
IL_0032:
{
uint32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)1637783905))))
{
goto IL_00c7;
}
}
{
uint32_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)1960967436))))
{
goto IL_00d9;
}
}
{
goto IL_016c;
}
IL_004d:
{
uint32_t L_8 = V_0;
if ((!(((uint32_t)L_8) <= ((uint32_t)((int32_t)-1128725895)))))
{
goto IL_006a;
}
}
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)2010141056))))
{
goto IL_007f;
}
}
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)-1128725895))))
{
goto IL_0091;
}
}
{
goto IL_016c;
}
IL_006a:
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)-668016107))))
{
goto IL_00eb;
}
}
{
uint32_t L_12 = V_0;
if ((((int32_t)L_12) == ((int32_t)((int32_t)-615837896))))
{
goto IL_00a3;
}
}
{
goto IL_016c;
}
IL_007f:
{
String_t* L_13 = ___key0;
bool L_14 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_13, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, /*hidden argument*/NULL);
if (L_14)
{
goto IL_0109;
}
}
{
goto IL_016c;
}
IL_0091:
{
String_t* L_15 = ___key0;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, /*hidden argument*/NULL);
if (L_16)
{
goto IL_0116;
}
}
{
goto IL_016c;
}
IL_00a3:
{
String_t* L_17 = ___key0;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, /*hidden argument*/NULL);
if (L_18)
{
goto IL_0123;
}
}
{
goto IL_016c;
}
IL_00b5:
{
String_t* L_19 = ___key0;
bool L_20 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_19, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, /*hidden argument*/NULL);
if (L_20)
{
goto IL_0130;
}
}
{
goto IL_016c;
}
IL_00c7:
{
String_t* L_21 = ___key0;
bool L_22 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_21, _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5, /*hidden argument*/NULL);
if (L_22)
{
goto IL_013d;
}
}
{
goto IL_016c;
}
IL_00d9:
{
String_t* L_23 = ___key0;
bool L_24 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_23, _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC, /*hidden argument*/NULL);
if (L_24)
{
goto IL_0145;
}
}
{
goto IL_016c;
}
IL_00eb:
{
String_t* L_25 = ___key0;
bool L_26 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_25, _stringLiteralA14EF6B2D92FF638BA1F29FDB232B6E9716749FC, /*hidden argument*/NULL);
if (L_26)
{
goto IL_0152;
}
}
{
goto IL_016c;
}
IL_00fa:
{
String_t* L_27 = ___key0;
bool L_28 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_27, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, /*hidden argument*/NULL);
if (L_28)
{
goto IL_015f;
}
}
{
goto IL_016c;
}
IL_0109:
{
RuntimeObject * L_29 = ___value1;
__this->set__typeName_2(((String_t*)CastclassSealed((RuntimeObject*)L_29, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_0116:
{
RuntimeObject * L_30 = ___value1;
__this->set__methodName_0(((String_t*)CastclassSealed((RuntimeObject*)L_30, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_0123:
{
RuntimeObject * L_31 = ___value1;
__this->set__methodSignature_6(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_31, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
return;
}
IL_0130:
{
RuntimeObject * L_32 = ___value1;
__this->set__uri_1(((String_t*)CastclassSealed((RuntimeObject*)L_32, String_t_il2cpp_TypeInfo_var)));
return;
}
IL_013d:
{
RuntimeObject * L_33 = ___value1;
__this->set__returnValue_4(L_33);
return;
}
IL_0145:
{
RuntimeObject * L_34 = ___value1;
__this->set__args_8(((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_34, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)));
return;
}
IL_0152:
{
RuntimeObject * L_35 = ___value1;
__this->set__exception_5(((Exception_t *)CastclassClass((RuntimeObject*)L_35, Exception_t_il2cpp_TypeInfo_var)));
return;
}
IL_015f:
{
RuntimeObject * L_36 = ___value1;
__this->set__callContext_11(((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)CastclassSealed((RuntimeObject*)L_36, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var)));
return;
}
IL_016c:
{
RuntimeObject* L_37 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::get_Properties() */, __this);
String_t* L_38 = ___key0;
RuntimeObject * L_39 = ___value1;
NullCheck(L_37);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_37, L_38, L_39);
return;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.MethodResponse::get_ArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MethodResponse_get_ArgCount_m6B76B65C8E46F56C1604E5D5BADF31ECBC19537C (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_8();
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__args_8();
NullCheck(L_1);
return (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))));
}
}
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::get_Args()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MethodResponse_get_Args_m3A974CF21008B10D8D709D8B36180845BFBC5BD7 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_8();
return L_0;
}
}
// System.Exception System.Runtime.Remoting.Messaging.MethodResponse::get_Exception()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * MethodResponse_get_Exception_m9BEF49ADF675A8FDD7EB4916E8CB98C0661A8C8C (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get__exception_5();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodResponse::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * MethodResponse_get_LogicalCallContext_mFB1E10CD3247B3BEBCF0A0FDB1B2D75BEB6955D7 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_LogicalCallContext_mFB1E10CD3247B3BEBCF0A0FDB1B2D75BEB6955D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get__callContext_11();
if (L_0)
{
goto IL_0013;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_1, /*hidden argument*/NULL);
__this->set__callContext_11(L_1);
}
IL_0013:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = __this->get__callContext_11();
return L_2;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodResponse::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * MethodResponse_get_MethodBase_m90DC4DEE74C2F6593B17DA3BFDA6DF6BAE8620C2 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_MethodBase_m90DC4DEE74C2F6593B17DA3BFDA6DF6BAE8620C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodBase_t * L_0 = __this->get__methodBase_3();
bool L_1 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736((MethodBase_t *)NULL, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0045;
}
}
{
RuntimeObject* L_2 = __this->get__callMsg_10();
if (!L_2)
{
goto IL_0029;
}
}
{
RuntimeObject* L_3 = __this->get__callMsg_10();
NullCheck(L_3);
MethodBase_t * L_4 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_3);
__this->set__methodBase_3(L_4);
goto IL_0045;
}
IL_0029:
{
String_t* L_5 = MethodResponse_get_MethodName_m218892BD8D055E745DA318FD0E90310DFEF04757(__this, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0045;
}
}
{
String_t* L_6 = MethodResponse_get_TypeName_mC75D4224153ECF53328118A728D121D9208A925D(__this, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0045;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_7 = RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58(__this, /*hidden argument*/NULL);
__this->set__methodBase_3(L_7);
}
IL_0045:
{
MethodBase_t * L_8 = __this->get__methodBase_3();
return L_8;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_MethodName_m218892BD8D055E745DA318FD0E90310DFEF04757 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_MethodName_m218892BD8D055E745DA318FD0E90310DFEF04757_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get__methodName_0();
if (L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = __this->get__callMsg_10();
if (!L_1)
{
goto IL_0021;
}
}
{
RuntimeObject* L_2 = __this->get__callMsg_10();
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__methodName_0(L_3);
}
IL_0021:
{
String_t* L_4 = __this->get__methodName_0();
return L_4;
}
}
// System.Object System.Runtime.Remoting.Messaging.MethodResponse::get_MethodSignature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodResponse_get_MethodSignature_m1FFAB41CE26CED5B7A03A17A38BB7788153A0ACC (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_MethodSignature_m1FFAB41CE26CED5B7A03A17A38BB7788153A0ACC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = __this->get__methodSignature_6();
if (L_0)
{
goto IL_0026;
}
}
{
RuntimeObject* L_1 = __this->get__callMsg_10();
if (!L_1)
{
goto IL_0026;
}
}
{
RuntimeObject* L_2 = __this->get__callMsg_10();
NullCheck(L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodSignature() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__methodSignature_6(((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_3, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)));
}
IL_0026:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = __this->get__methodSignature_6();
return (RuntimeObject *)L_4;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::get_OutArgs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MethodResponse_get_OutArgs_m6339EEB0CF7B033B052A78AA7D332A0D0D6EE33F (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_OutArgs_m6339EEB0CF7B033B052A78AA7D332A0D0D6EE33F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__outArgs_9();
if (L_0)
{
goto IL_0041;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__args_8();
if (!L_1)
{
goto IL_0041;
}
}
{
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_2 = __this->get__inArgInfo_7();
if (L_2)
{
goto IL_002a;
}
}
{
MethodBase_t * L_3 = MethodResponse_get_MethodBase_m90DC4DEE74C2F6593B17DA3BFDA6DF6BAE8620C2(__this, /*hidden argument*/NULL);
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_4 = (ArgInfo_t67419B6DE53980148631C33DF785307579134942 *)il2cpp_codegen_object_new(ArgInfo_t67419B6DE53980148631C33DF785307579134942_il2cpp_TypeInfo_var);
ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A(L_4, L_3, 1, /*hidden argument*/NULL);
__this->set__inArgInfo_7(L_4);
}
IL_002a:
{
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_5 = __this->get__inArgInfo_7();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get__args_8();
NullCheck(L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6(L_5, L_6, /*hidden argument*/NULL);
__this->set__outArgs_9(L_7);
}
IL_0041:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__outArgs_9();
return L_8;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodResponse_get_Properties_m4E115130F0C43439A960AC23A9A33F439C99B82A (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_Properties_m4E115130F0C43439A960AC23A9A33F439C99B82A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * V_0 = NULL;
{
RuntimeObject* L_0 = __this->get_ExternalProperties_13();
if (L_0)
{
goto IL_0022;
}
}
{
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_1 = (MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 *)il2cpp_codegen_object_new(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var);
MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A(L_1, __this, /*hidden argument*/NULL);
V_0 = L_1;
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_2 = V_0;
__this->set_ExternalProperties_13(L_2);
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_3 = V_0;
NullCheck(L_3);
RuntimeObject* L_4 = MessageDictionary_GetInternalProperties_mB7970D787D61BDA1B76465969C8702B24591DDD1(L_3, /*hidden argument*/NULL);
__this->set_InternalProperties_14(L_4);
}
IL_0022:
{
RuntimeObject* L_5 = __this->get_ExternalProperties_13();
return L_5;
}
}
// System.Object System.Runtime.Remoting.Messaging.MethodResponse::get_ReturnValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodResponse_get_ReturnValue_mF76E5A45A32D6F29BD02D597AB260BD8D0300220 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__returnValue_4();
return L_0;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_TypeName_mC75D4224153ECF53328118A728D121D9208A925D (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_TypeName_mC75D4224153ECF53328118A728D121D9208A925D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get__typeName_2();
if (L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = __this->get__callMsg_10();
if (!L_1)
{
goto IL_0021;
}
}
{
RuntimeObject* L_2 = __this->get__callMsg_10();
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_TypeName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__typeName_2(L_3);
}
IL_0021:
{
String_t* L_4 = __this->get__typeName_2();
return L_4;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodResponse::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_get_Uri_mEAA6EC22168E484A36E811A8C9B21ABD68F715DA (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_get_Uri_mEAA6EC22168E484A36E811A8C9B21ABD68F715DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get__uri_1();
if (L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = __this->get__callMsg_10();
if (!L_1)
{
goto IL_0021;
}
}
{
RuntimeObject* L_2 = __this->get__callMsg_10();
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__uri_1(L_3);
}
IL_0021:
{
String_t* L_4 = __this->get__uri_1();
return L_4;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_set_Uri_m6A8681536CBB05AF2F4BD8FFC7A136E8E7003CDC (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_1(L_0);
return;
}
}
// System.String System.Runtime.Remoting.Messaging.MethodResponse::System.Runtime.Remoting.Messaging.IInternalMessage.get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MethodResponse_System_Runtime_Remoting_Messaging_IInternalMessage_get_Uri_mDEB40B41A2858283521642E96C052E8DAF28218B (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = MethodResponse_get_Uri_mEAA6EC22168E484A36E811A8C9B21ABD68F715DA(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::System.Runtime.Remoting.Messaging.IInternalMessage.set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m9664D76D9A12F8F52BF66E66CE9CA8A47A258FB2 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
MethodResponse_set_Uri_m6A8681536CBB05AF2F4BD8FFC7A136E8E7003CDC_inline(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.MethodResponse::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MethodResponse_GetArg_mDF875D945B84ED5A74393EE049A0539BF5CE1568 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, int32_t ___argNum0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_8();
if (L_0)
{
goto IL_000a;
}
}
{
return NULL;
}
IL_000a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__args_8();
int32_t L_2 = ___argNum0;
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_GetObjectData_mA55C8DF667EBAF60DB1E191000DFBE7EE8BA951C (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodResponse_GetObjectData_mA55C8DF667EBAF60DB1E191000DFBE7EE8BA951C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Exception_t * L_0 = __this->get__exception_5();
if (L_0)
{
goto IL_0070;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0;
String_t* L_2 = __this->get__typeName_2();
NullCheck(L_1);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_1, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27, L_2, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_3 = ___info0;
String_t* L_4 = __this->get__methodName_0();
NullCheck(L_3);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_3, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B, L_4, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = __this->get__methodSignature_6();
NullCheck(L_5);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_5, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B, (RuntimeObject *)(RuntimeObject *)L_6, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_7 = ___info0;
String_t* L_8 = __this->get__uri_1();
NullCheck(L_7);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_7, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4, L_8, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_9 = ___info0;
RuntimeObject * L_10 = __this->get__returnValue_4();
NullCheck(L_9);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_9, _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5, L_10, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_11 = ___info0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get__args_8();
NullCheck(L_11);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_11, _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC, (RuntimeObject *)(RuntimeObject *)L_12, /*hidden argument*/NULL);
goto IL_0081;
}
IL_0070:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_13 = ___info0;
Exception_t * L_14 = __this->get__exception_5();
NullCheck(L_13);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_13, _stringLiteralA14EF6B2D92FF638BA1F29FDB232B6E9716749FC, L_14, /*hidden argument*/NULL);
}
IL_0081:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_15 = ___info0;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_16 = __this->get__callContext_11();
NullCheck(L_15);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_15, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95, L_16, /*hidden argument*/NULL);
RuntimeObject* L_17 = __this->get_InternalProperties_14();
if (!L_17)
{
goto IL_00e8;
}
}
{
RuntimeObject* L_18 = __this->get_InternalProperties_14();
NullCheck(L_18);
RuntimeObject* L_19 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7_il2cpp_TypeInfo_var, L_18);
V_0 = L_19;
}
IL_00a6:
try
{ // begin try (depth: 1)
{
goto IL_00cd;
}
IL_00a8:
{
RuntimeObject* L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
V_1 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_21, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_22 = ___info0;
RuntimeObject * L_23 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_24 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_22);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_22, ((String_t*)CastclassSealed((RuntimeObject*)L_23, String_t_il2cpp_TypeInfo_var)), L_24, /*hidden argument*/NULL);
}
IL_00cd:
{
RuntimeObject* L_25 = V_0;
NullCheck(L_25);
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_00a8;
}
}
IL_00d5:
{
IL2CPP_LEAVE(0xE8, FINALLY_00d7);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00d7;
}
FINALLY_00d7:
{ // begin finally (depth: 1)
{
RuntimeObject* L_27 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_27, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_28 = V_2;
if (!L_28)
{
goto IL_00e7;
}
}
IL_00e1:
{
RuntimeObject* L_29 = V_2;
NullCheck(L_29);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_29);
}
IL_00e7:
{
IL2CPP_END_FINALLY(215)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(215)
{
IL2CPP_JUMP_TBL(0xE8, IL_00e8)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00e8:
{
return;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodResponse::System.Runtime.Remoting.Messaging.IInternalMessage.get_TargetIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * MethodResponse_System_Runtime_Remoting_Messaging_IInternalMessage_get_TargetIdentity_mA03B012C67198AD08BB252DB1E7CA7CE8E3EB146 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get__targetIdentity_12();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::System.Runtime.Remoting.Messaging.IInternalMessage.set_TargetIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse_System_Runtime_Remoting_Messaging_IInternalMessage_set_TargetIdentity_mF0DDEDA0C65451DE5892931C27786AE2025D7982 (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___value0, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___value0;
__this->set__targetIdentity_12(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.MethodReturnDictionary::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A (MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * __this, RuntimeObject* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___message0;
MessageDictionary__ctor_m679873B25EF35750306D2976BC48BD4FE251F2D9(__this, L_0, /*hidden argument*/NULL);
RuntimeObject* L_1 = ___message0;
NullCheck(L_1);
Exception_t * L_2 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_1);
if (L_2)
{
goto IL_001b;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = ((MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields*)il2cpp_codegen_static_fields_for(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var))->get_InternalReturnKeys_4();
MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline(__this, L_3, /*hidden argument*/NULL);
return;
}
IL_001b:
{
IL2CPP_RUNTIME_CLASS_INIT(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = ((MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields*)il2cpp_codegen_static_fields_for(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var))->get_InternalExceptionKeys_5();
MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline(__this, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MethodReturnDictionary::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodReturnDictionary__cctor_m31964E85238EDB0728277FC855D7DBECF2AE9546 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MethodReturnDictionary__cctor_m31964E85238EDB0728277FC855D7DBECF2AE9546_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)7);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral0A5F485440325F1E51E7572A1155F88F8DD2852B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralFE38B219B50BDB2DD0A832A7B0A0E6F9CC8EDA27);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral12A7BA6B98B7BEBD09157D78A79421F399F00B0B);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralA8D78E7499BFCC6A33ACD0E18B5151DBDD55FDCC);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralC95C6A6386000C0974B29704A8144597D3108DB5);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
((MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields*)il2cpp_codegen_static_fields_for(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var))->set_InternalReturnKeys_4(L_7);
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, _stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
((MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_StaticFields*)il2cpp_codegen_static_fields_for(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var))->set_InternalExceptionKeys_5(L_9);
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.Runtime.Remoting.Messaging.MonoMethodMessage
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled)
{
Exception_t* ___method_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'method' of type 'MonoMethodMessage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___method_0Exception, NULL);
}
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke_back(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled)
{
Exception_t* ___method_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'method' of type 'MonoMethodMessage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___method_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.MonoMethodMessage
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_pinvoke_cleanup(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Messaging.MonoMethodMessage
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com& marshaled)
{
Exception_t* ___method_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'method' of type 'MonoMethodMessage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___method_0Exception, NULL);
}
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com_back(const MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com& marshaled, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234& unmarshaled)
{
Exception_t* ___method_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'method' of type 'MonoMethodMessage': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___method_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Messaging.MonoMethodMessage
IL2CPP_EXTERN_C void MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshal_com_cleanup(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_marshaled_com& marshaled)
{
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::InitMessage(System.Reflection.MonoMethod,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, MonoMethod_t * ___method0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___out_args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
uint8_t V_6 = 0x0;
bool V_7 = false;
{
MonoMethod_t * L_0 = ___method0;
__this->set_method_0(L_0);
MonoMethod_t * L_1 = ___method0;
NullCheck(L_1);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(37 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParametersInternal() */, L_1);
V_0 = L_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_3 = V_0;
NullCheck(L_3);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))));
int32_t L_4 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_4);
__this->set_args_1(L_5);
int32_t L_6 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6);
__this->set_arg_types_3(L_7);
__this->set_asyncResult_7((AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 *)NULL);
__this->set_call_type_8(0);
int32_t L_8 = V_1;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_9 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)L_8);
__this->set_names_2(L_9);
V_4 = 0;
goto IL_0061;
}
IL_0049:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_10 = __this->get_names_2();
int32_t L_11 = V_4;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_12 = V_0;
int32_t L_13 = V_4;
NullCheck(L_12);
int32_t L_14 = L_13;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_15);
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_15);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_16);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (String_t*)L_16);
int32_t L_17 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0061:
{
int32_t L_18 = V_4;
int32_t L_19 = V_1;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_0049;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ___out_args1;
V_2 = (bool)((!(((RuntimeObject*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_20) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
V_3 = 0;
V_5 = 0;
goto IL_00cf;
}
IL_0072:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_21 = V_0;
int32_t L_22 = V_5;
NullCheck(L_21);
int32_t L_23 = L_22;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
NullCheck(L_24);
bool L_25 = ParameterInfo_get_IsOut_mBD413F046E276BBF88D653EA7A261B221420A464(L_24, /*hidden argument*/NULL);
V_7 = L_25;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_26 = V_0;
int32_t L_27 = V_5;
NullCheck(L_26);
int32_t L_28 = L_27;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
NullCheck(L_29);
Type_t * L_30 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_29);
NullCheck(L_30);
bool L_31 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_30, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00b0;
}
}
{
bool L_32 = V_2;
if (!L_32)
{
goto IL_00a0;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = __this->get_args_1();
int32_t L_34 = V_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = ___out_args1;
int32_t L_36 = V_3;
int32_t L_37 = L_36;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
NullCheck(L_35);
int32_t L_38 = L_37;
RuntimeObject * L_39 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_39);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (RuntimeObject *)L_39);
}
IL_00a0:
{
V_6 = (uint8_t)2;
bool L_40 = V_7;
if (L_40)
{
goto IL_00be;
}
}
{
uint8_t L_41 = V_6;
V_6 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_41|(int32_t)1)))));
goto IL_00be;
}
IL_00b0:
{
V_6 = (uint8_t)1;
bool L_42 = V_7;
if (!L_42)
{
goto IL_00be;
}
}
{
uint8_t L_43 = V_6;
V_6 = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_43|(int32_t)4)))));
}
IL_00be:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_44 = __this->get_arg_types_3();
int32_t L_45 = V_5;
uint8_t L_46 = V_6;
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_45), (uint8_t)L_46);
int32_t L_47 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)1));
}
IL_00cf:
{
int32_t L_48 = V_5;
int32_t L_49 = V_1;
if ((((int32_t)L_48) < ((int32_t)L_49)))
{
goto IL_0072;
}
}
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::.ctor(System.Reflection.MethodBase,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage__ctor_m765D41E74151716E2FFDD59D87CFC2270CC4E05C (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, MethodBase_t * ___method0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___out_args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage__ctor_m765D41E74151716E2FFDD59D87CFC2270CC4E05C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MethodBase_t * L_0 = ___method0;
bool L_1 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_0, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
MethodBase_t * L_2 = ___method0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___out_args1;
MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D(__this, ((MonoMethod_t *)CastclassClass((RuntimeObject*)L_2, MonoMethod_t_il2cpp_TypeInfo_var)), L_3, /*hidden argument*/NULL);
return;
}
IL_001d:
{
__this->set_args_1((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::.ctor(System.Reflection.MethodInfo,System.Object[],System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, MethodInfo_t * ___minfo0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___in_args1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___out_args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MethodInfo_t * L_0 = ___minfo0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___out_args2;
MonoMethodMessage_InitMessage_m7042EC9A33E24CDB8E19354F2F4719183287D61D(__this, ((MonoMethod_t *)CastclassClass((RuntimeObject*)L_0, MonoMethod_t_il2cpp_TypeInfo_var)), L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___in_args1;
NullCheck(L_2);
V_0 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
V_1 = 0;
goto IL_002a;
}
IL_001b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_args_1();
int32_t L_4 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___in_args1;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_8);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_8);
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002a:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_001b;
}
}
{
return;
}
}
// System.Reflection.MethodInfo System.Runtime.Remoting.Messaging.MonoMethodMessage::GetMethodInfo(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9 (Type_t * ___type0, String_t* ___methodName1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * G_B2_0 = NULL;
MethodInfo_t * G_B1_0 = NULL;
{
Type_t * L_0 = ___type0;
String_t* L_1 = ___methodName1;
NullCheck(L_0);
MethodInfo_t * L_2 = Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE(L_0, L_1, /*hidden argument*/NULL);
MethodInfo_t * L_3 = L_2;
bool L_4 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_3, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
G_B1_0 = L_3;
if (!L_4)
{
G_B2_0 = L_3;
goto IL_0027;
}
}
{
String_t* L_5 = ___methodName1;
Type_t * L_6 = ___type0;
String_t* L_7 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral6E4FE3A1EED889B1C0789FBDE05DBE96397121DF, L_5, L_6, /*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, _stringLiteral7C9C7E60AD7446E0ED2B8C40DF4B7346C3B6A8BA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9_RuntimeMethod_var);
}
IL_0027:
{
return G_B2_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::.ctor(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage__ctor_mAB471416283E76FEBB232CF8D63F191BA48C4833 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, Type_t * ___type0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___in_args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage__ctor_mAB471416283E76FEBB232CF8D63F191BA48C4833_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
String_t* L_1 = ___methodName1;
IL2CPP_RUNTIME_CLASS_INIT(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var);
MethodInfo_t * L_2 = MonoMethodMessage_GetMethodInfo_m22B70E678850B829070AE6772A13CD16BE94CCB9(L_0, L_1, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___in_args2;
MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA(__this, L_2, L_3, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MonoMethodMessage::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MonoMethodMessage_get_Properties_m224BEE45C2108D30C6DFCBD7F6A57D2BCF5EE5CB (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_Properties_m224BEE45C2108D30C6DFCBD7F6A57D2BCF5EE5CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_0 = __this->get_properties_10();
if (L_0)
{
goto IL_0014;
}
}
{
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_1 = (MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 *)il2cpp_codegen_object_new(MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434_il2cpp_TypeInfo_var);
MCMDictionary__ctor_m02A28CFFBADCD5CC83267E16B471BB453BF54D21(L_1, __this, /*hidden argument*/NULL);
__this->set_properties_10(L_1);
}
IL_0014:
{
MCMDictionary_tD801081CC84A219F173B4A5A90A53A75A43D5434 * L_2 = __this->get_properties_10();
return L_2;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.MonoMethodMessage::get_ArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoMethodMessage_get_ArgCount_mE38E7CB8A98FBF5ED5FB5F02A788938EB94BAB23 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get_args_1();
if (L_1)
{
goto IL_0015;
}
}
{
return 0;
}
IL_0015:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get_args_1();
NullCheck(L_2);
return (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
}
}
// System.Object[] System.Runtime.Remoting.Messaging.MonoMethodMessage::get_Args()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoMethodMessage_get_Args_mB5DE528D1CDFD3C23EBD8A1F1538C5258274BBB4 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_args_1();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MonoMethodMessage::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * MonoMethodMessage_get_LogicalCallContext_m519E485FDC2EC7CA6DB55954BC85D988796522CE (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get_ctx_4();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::set_LogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage_set_LogicalCallContext_mC537D5CD5A24D556624216727BF10D33FB318A3F (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___value0, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___value0;
__this->set_ctx_4(L_0);
return;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MonoMethodMessage::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * MonoMethodMessage_get_MethodBase_mD737855945B1C91D1E0C871472A53EAE73E349E8 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
MonoMethod_t * L_0 = __this->get_method_0();
return L_0;
}
}
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MonoMethodMessage_get_MethodName_mC7B20FFCA40005D55C36272FC88DEBC7EBA373A4 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_MethodName_mC7B20FFCA40005D55C36272FC88DEBC7EBA373A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MonoMethod_t * L_0 = __this->get_method_0();
bool L_1 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0((MethodInfo_t *)NULL, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_2;
}
IL_0014:
{
MonoMethod_t * L_3 = __this->get_method_0();
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
return L_4;
}
}
// System.Object System.Runtime.Remoting.Messaging.MonoMethodMessage::get_MethodSignature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoMethodMessage_get_MethodSignature_mAC399B18EC4E7DAD7B073564A4720485394D53EF (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_MethodSignature_mAC399B18EC4E7DAD7B073564A4720485394D53EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
int32_t V_1 = 0;
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = __this->get_methodSignature_11();
if (L_0)
{
goto IL_0040;
}
}
{
MonoMethod_t * L_1 = __this->get_method_0();
NullCheck(L_1);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_2 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_1);
V_0 = L_2;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_3 = V_0;
NullCheck(L_3);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))));
__this->set_methodSignature_11(L_4);
V_1 = 0;
goto IL_003a;
}
IL_0026:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_5 = __this->get_methodSignature_11();
int32_t L_6 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_7 = V_0;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_10);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_11);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Type_t *)L_11);
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_003a:
{
int32_t L_13 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_14 = V_0;
NullCheck(L_14);
if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))))
{
goto IL_0026;
}
}
IL_0040:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_15 = __this->get_methodSignature_11();
return (RuntimeObject *)L_15;
}
}
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MonoMethodMessage_get_TypeName_mB9C1F9948E9294B62B53BEECFA2F57E3EE8E264A (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_TypeName_mB9C1F9948E9294B62B53BEECFA2F57E3EE8E264A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MonoMethod_t * L_0 = __this->get_method_0();
bool L_1 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0((MethodInfo_t *)NULL, L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_2;
}
IL_0014:
{
MonoMethod_t * L_3 = __this->get_method_0();
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_3);
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_4);
return L_5;
}
}
// System.String System.Runtime.Remoting.Messaging.MonoMethodMessage::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MonoMethodMessage_get_Uri_m5E7DB5F5F592A3934CD028CCDC879FA402FD8173 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_uri_9();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage_set_Uri_mBB14363E309D827F2224ABD4FC7FEDAE5FACD71B (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_uri_9(L_0);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.MonoMethodMessage::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoMethodMessage_GetArg_m529CCF8B626A5886D79B001AB600BCB09FBE410F (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, int32_t ___arg_num0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_args_1();
if (L_0)
{
goto IL_000a;
}
}
{
return NULL;
}
IL_000a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get_args_1();
int32_t L_2 = ___arg_num0;
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
return L_4;
}
}
// System.Exception System.Runtime.Remoting.Messaging.MonoMethodMessage::get_Exception()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * MonoMethodMessage_get_Exception_m301B94F12FCD436BF1AB7DBFE5FF6CE3A2EB21B7 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get_exc_6();
return L_0;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.MonoMethodMessage::get_OutArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoMethodMessage_get_OutArgCount_mED628DAB0DD4F53E07153932EDE4C5F198F0B553 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_args_1();
if (L_0)
{
goto IL_000a;
}
}
{
return 0;
}
IL_000a:
{
V_0 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_arg_types_3();
V_1 = L_1;
V_2 = 0;
goto IL_0026;
}
IL_0017:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
if (!((int32_t)((int32_t)L_5&(int32_t)2)))
{
goto IL_0022;
}
}
{
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0022:
{
int32_t L_7 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0026:
{
int32_t L_8 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_1;
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
{
goto IL_0017;
}
}
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.MonoMethodMessage::get_OutArgs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoMethodMessage_get_OutArgs_mFAF3BC8E0BF07F8D821E5043C8D641ED10B7ED75 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_OutArgs_mFAF3BC8E0BF07F8D821E5043C8D641ED10B7ED75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
int32_t V_4 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_args_1();
if (L_0)
{
goto IL_000a;
}
}
{
return (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL;
}
IL_000a:
{
int32_t L_1 = MonoMethodMessage_get_OutArgCount_mED628DAB0DD4F53E07153932EDE4C5F198F0B553(__this, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_1);
V_2 = L_2;
int32_t L_3 = 0;
V_1 = L_3;
V_0 = L_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get_arg_types_3();
V_3 = L_4;
V_4 = 0;
goto IL_0047;
}
IL_0026:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_3;
int32_t L_6 = V_4;
NullCheck(L_5);
int32_t L_7 = L_6;
uint8_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
if (!((int32_t)((int32_t)L_8&(int32_t)2)))
{
goto IL_003d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = V_2;
int32_t L_10 = V_1;
int32_t L_11 = L_10;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get_args_1();
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = L_13;
RuntimeObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_15);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_15);
}
IL_003d:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
int32_t L_17 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0047:
{
int32_t L_18 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_3;
NullCheck(L_19);
if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))))
{
goto IL_0026;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_2;
return L_20;
}
}
// System.Object System.Runtime.Remoting.Messaging.MonoMethodMessage::get_ReturnValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoMethodMessage_get_ReturnValue_mD2CBBBAB52894AB94721446C9F53632AC7BC873E (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_rval_5();
return L_0;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MonoMethodMessage::System.Runtime.Remoting.Messaging.IInternalMessage.get_TargetIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * MonoMethodMessage_System_Runtime_Remoting_Messaging_IInternalMessage_get_TargetIdentity_mCD43C689F2F6CA392AA4C1D88E0FD71952A4BC53 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get_identity_12();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::System.Runtime.Remoting.Messaging.IInternalMessage.set_TargetIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_TargetIdentity_m0AD7765C0F930E8741A955A5548E37161194BC2C (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___value0, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___value0;
__this->set_identity_12(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.AsyncResult System.Runtime.Remoting.Messaging.MonoMethodMessage::get_AsyncResult()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_0 = __this->get_asyncResult_7();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.CallType System.Runtime.Remoting.Messaging.MonoMethodMessage::get_CallType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_call_type_8();
if (L_0)
{
goto IL_001c;
}
}
{
MonoMethod_t * L_1 = __this->get_method_0();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_2 = RemotingServices_IsOneWay_m7D017D4D9C29D18ED118BF475128D98B44B092BA(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_001c;
}
}
{
__this->set_call_type_8(3);
}
IL_001c:
{
int32_t L_3 = __this->get_call_type_8();
return L_3;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.MonoMethodMessage::NeedsOutProcessing(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoMethodMessage_NeedsOutProcessing_m91A820AC440989C58838EF714F839047DFE42012 (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, int32_t* ___outCount0, const RuntimeMethod* method)
{
bool V_0 = false;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
int32_t V_2 = 0;
uint8_t V_3 = 0x0;
{
V_0 = (bool)0;
int32_t* L_0 = ___outCount0;
*((int32_t*)L_0) = (int32_t)0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = __this->get_arg_types_3();
V_1 = L_1;
V_2 = 0;
goto IL_002c;
}
IL_0010:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_1;
int32_t L_3 = V_2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_3 = L_5;
uint8_t L_6 = V_3;
if (!((int32_t)((int32_t)L_6&(int32_t)2)))
{
goto IL_0021;
}
}
{
int32_t* L_7 = ___outCount0;
int32_t* L_8 = ___outCount0;
int32_t L_9 = *((int32_t*)L_8);
*((int32_t*)L_7) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
goto IL_0028;
}
IL_0021:
{
uint8_t L_10 = V_3;
if (!((int32_t)((int32_t)L_10&(int32_t)4)))
{
goto IL_0028;
}
}
{
V_0 = (bool)1;
}
IL_0028:
{
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_002c:
{
int32_t L_12 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_0010;
}
}
{
int32_t* L_14 = ___outCount0;
int32_t L_15 = *((int32_t*)L_14);
bool L_16 = V_0;
return (bool)((int32_t)((int32_t)((((int32_t)L_15) > ((int32_t)0))? 1 : 0)|(int32_t)L_16));
}
}
// System.Void System.Runtime.Remoting.Messaging.MonoMethodMessage::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoMethodMessage__cctor_m3FFFAEFF04386D82104D909E37A546A41D33FCE6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoMethodMessage__cctor_m3FFFAEFF04386D82104D909E37A546A41D33FCE6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_StaticFields*)il2cpp_codegen_static_fields_for(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var))->set_CallContextKey_13(_stringLiteral3EBB6E2C17CF9B27B6AAE4B9FBE5A413934EDE95);
((MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_StaticFields*)il2cpp_codegen_static_fields_for(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var))->set_UriKey_14(_stringLiteral56AF0DB501D8DAD8615AD7D8C9D40B3B9B7BFAA4);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ObjRefSurrogate::GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRefSurrogate_GetObjectData_m5215896E51B5BDAF51568445949D95BB6375A06A (ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * __this, RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___si1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___sc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRefSurrogate_GetObjectData_m5215896E51B5BDAF51568445949D95BB6375A06A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!L_0)
{
goto IL_0006;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___si1;
if (L_1)
{
goto IL_000c;
}
}
IL_0006:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ObjRefSurrogate_GetObjectData_m5215896E51B5BDAF51568445949D95BB6375A06A_RuntimeMethod_var);
}
IL_000c:
{
RuntimeObject * L_3 = ___obj0;
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___si1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = ___sc2;
NullCheck(((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *)CastclassClass((RuntimeObject*)L_3, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var)));
VirtActionInvoker2< SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 >::Invoke(13 /* System.Void System.Runtime.Remoting.ObjRef::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, ((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *)CastclassClass((RuntimeObject*)L_3, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var)), L_4, L_5);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___si1;
NullCheck(L_6);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_6, _stringLiteral5E545F1F92BB780A4B143358ACBCE75340A23795, 0, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.ObjRefSurrogate::SetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjRefSurrogate_SetObjectData_m027D3AFF272173FD3D0B53F75700524398479EE7 (ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * __this, RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___si1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___sc2, RuntimeObject* ___selector3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRefSurrogate_SetObjectData_m027D3AFF272173FD3D0B53F75700524398479EE7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral61B24289B9E450D3D06AECD1EAD76C25BB842F02, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ObjRefSurrogate_SetObjectData_m027D3AFF272173FD3D0B53F75700524398479EE7_RuntimeMethod_var);
}
}
// System.Void System.Runtime.Remoting.Messaging.ObjRefSurrogate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRefSurrogate__ctor_m70F2BA92B4ABC33214BB76CE69A51738B3D49FE6 (ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * __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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.RemotingSurrogate::GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogate_GetObjectData_m6BC88BFB014FA37D85D1A2746E78B4E193F0BF3F (RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * __this, RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___si1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___sc2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingSurrogate_GetObjectData_m6BC88BFB014FA37D85D1A2746E78B4E193F0BF3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!L_0)
{
goto IL_0006;
}
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___si1;
if (L_1)
{
goto IL_000c;
}
}
IL_0006:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, RemotingSurrogate_GetObjectData_m6BC88BFB014FA37D85D1A2746E78B4E193F0BF3F_RuntimeMethod_var);
}
IL_000c:
{
RuntimeObject * L_3 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_4 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0022;
}
}
{
RuntimeObject * L_5 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_6 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_5, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_7 = ___si1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_8 = ___sc2;
NullCheck(L_6);
VirtActionInvoker2< SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 >::Invoke(4 /* System.Void System.Runtime.Remoting.Proxies.RealProxy::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, L_6, L_7, L_8);
return;
}
IL_0022:
{
RuntimeObject * L_9 = ___obj0;
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___si1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_11 = ___sc2;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F(L_9, L_10, L_11, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.RemotingSurrogate::SetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingSurrogate_SetObjectData_mFFA5ECF9242A3DC294022F7D13CE9E2665D6B76A (RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * __this, RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___si1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___sc2, RuntimeObject* ___selector3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingSurrogate_SetObjectData_mFFA5ECF9242A3DC294022F7D13CE9E2665D6B76A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, RemotingSurrogate_SetObjectData_mFFA5ECF9242A3DC294022F7D13CE9E2665D6B76A_RuntimeMethod_var);
}
}
// System.Void System.Runtime.Remoting.Messaging.RemotingSurrogate::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogate__ctor_m29BEBC27986C9C65567B05BEA373C697774B5F8A (RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * __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.Runtime.Remoting.Messaging.RemotingSurrogateSelector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogateSelector__ctor_m5AEC278659397A63359757387A07AD305F8BE6B7 (RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Runtime.Serialization.ISerializationSurrogate System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::GetSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingSurrogateSelector_GetSurrogate_mBE79B7E36A68A4598269C886D9E3E58C0CB5F23A (RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 * __this, Type_t * ___type0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, RuntimeObject** ___ssout2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingSurrogateSelector_GetSurrogate_mBE79B7E36A68A4598269C886D9E3E58C0CB5F23A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___type0;
NullCheck(L_0);
bool L_1 = Type_get_IsMarshalByRef_mE12C8300F5A8BB91C6319CE71994EA3D1563C465(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
RuntimeObject** L_2 = ___ssout2;
*((RuntimeObject **)L_2) = (RuntimeObject *)__this;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)__this);
IL2CPP_RUNTIME_CLASS_INIT(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var);
RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * L_3 = ((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->get__objRemotingSurrogate_2();
return L_3;
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var);
Type_t * L_4 = ((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->get_s_cachedTypeObjRef_0();
Type_t * L_5 = ___type0;
NullCheck(L_4);
bool L_6 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_4, L_5);
if (!L_6)
{
goto IL_0027;
}
}
{
RuntimeObject** L_7 = ___ssout2;
*((RuntimeObject **)L_7) = (RuntimeObject *)__this;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)__this);
IL2CPP_RUNTIME_CLASS_INIT(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var);
ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * L_8 = ((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->get__objRefSurrogate_1();
return L_8;
}
IL_0027:
{
RuntimeObject* L_9 = __this->get__next_3();
if (!L_9)
{
goto IL_003e;
}
}
{
RuntimeObject* L_10 = __this->get__next_3();
Type_t * L_11 = ___type0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_12 = ___context1;
RuntimeObject** L_13 = ___ssout2;
NullCheck(L_10);
RuntimeObject* L_14 = InterfaceFuncInvoker3< RuntimeObject*, Type_t *, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 , RuntimeObject** >::Invoke(0 /* System.Runtime.Serialization.ISerializationSurrogate System.Runtime.Serialization.ISurrogateSelector::GetSurrogate(System.Type,System.Runtime.Serialization.StreamingContext,System.Runtime.Serialization.ISurrogateSelector&) */, ISurrogateSelector_t4C99617DAC31689CEC0EDB09B067A65E80E1C3EA_il2cpp_TypeInfo_var, L_10, L_11, L_12, (RuntimeObject**)L_13);
return L_14;
}
IL_003e:
{
RuntimeObject** L_15 = ___ssout2;
*((RuntimeObject **)L_15) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_15, (void*)(RuntimeObject *)NULL);
return (RuntimeObject*)NULL;
}
}
// System.Void System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogateSelector__cctor_m6109818EB572091946B639D4948DC09FBAE14EB8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingSurrogateSelector__cctor_m6109818EB572091946B639D4948DC09FBAE14EB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->set_s_cachedTypeObjRef_0(L_1);
ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 * L_2 = (ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547 *)il2cpp_codegen_object_new(ObjRefSurrogate_tE2F801FFAE2DBDE6B44A528F7E537922F3840547_il2cpp_TypeInfo_var);
ObjRefSurrogate__ctor_m70F2BA92B4ABC33214BB76CE69A51738B3D49FE6(L_2, /*hidden argument*/NULL);
((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->set__objRefSurrogate_1(L_2);
RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA * L_3 = (RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA *)il2cpp_codegen_object_new(RemotingSurrogate_t722F41294C1F4DEA38A993DB43F51AC8CBB494BA_il2cpp_TypeInfo_var);
RemotingSurrogate__ctor_m29BEBC27986C9C65567B05BEA373C697774B5F8A(L_3, /*hidden argument*/NULL);
((RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_StaticFields*)il2cpp_codegen_static_fields_for(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var))->set__objRemotingSurrogate_2(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::.ctor(System.Object,System.Object[],System.Int32,System.Runtime.Remoting.Messaging.LogicalCallContext,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, RuntimeObject * ___ret0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___outArgs1, int32_t ___outArgsCount2, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___callCtx3, RuntimeObject* ___mcm4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject * L_0 = ___ret0;
__this->set__returnValue_3(L_0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___outArgs1;
__this->set__args_1(L_1);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = ___callCtx3;
__this->set__callCtx_2(L_2);
RuntimeObject* L_3 = ___mcm4;
if (!L_3)
{
goto IL_003a;
}
}
{
RuntimeObject* L_4 = ___mcm4;
NullCheck(L_4);
String_t* L_5 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_4);
__this->set__uri_4(L_5);
RuntimeObject* L_6 = ___mcm4;
NullCheck(L_6);
MethodBase_t * L_7 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_6);
__this->set__methodBase_6(L_7);
}
IL_003a:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__args_1();
if (L_8)
{
goto IL_004e;
}
}
{
int32_t L_9 = ___outArgsCount2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_9);
__this->set__args_1(L_10);
}
IL_004e:
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, Exception_t * ___e0, RuntimeObject* ___mcm1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Exception_t * L_0 = ___e0;
__this->set__exception_5(L_0);
RuntimeObject* L_1 = ___mcm1;
if (!L_1)
{
goto IL_0028;
}
}
{
RuntimeObject* L_2 = ___mcm1;
NullCheck(L_2);
MethodBase_t * L_3 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
__this->set__methodBase_6(L_3);
RuntimeObject* L_4 = ___mcm1;
NullCheck(L_4);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_5 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_4);
__this->set__callCtx_2(L_5);
}
IL_0028:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
__this->set__args_1(L_6);
return;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.ReturnMessage::get_ArgCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReturnMessage_get_ArgCount_m9A58AEF66BE93BC181BB4CB11BD7617618B80230 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_1();
NullCheck(L_0);
return (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))));
}
}
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::get_Args()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ReturnMessage_get_Args_m3113CA62394305FD584562D2530DFE2830E5F06C (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_1();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.ReturnMessage::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ReturnMessage_get_LogicalCallContext_mDE6BE5576719BE633127919AEC82E21449A1D8C1 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage_get_LogicalCallContext_mDE6BE5576719BE633127919AEC82E21449A1D8C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = __this->get__callCtx_2();
if (L_0)
{
goto IL_0013;
}
}
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_1 = (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)il2cpp_codegen_object_new(LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var);
LogicalCallContext__ctor_mAC471FE3FA530E350A3D44904670D487AD29C810(L_1, /*hidden argument*/NULL);
__this->set__callCtx_2(L_1);
}
IL_0013:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_2 = __this->get__callCtx_2();
return L_2;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ReturnMessage::get_MethodBase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * ReturnMessage_get_MethodBase_m7D3748540C2572738F4B0AFC940DC88D5F11DD20 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
MethodBase_t * L_0 = __this->get__methodBase_6();
return L_0;
}
}
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::get_MethodName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReturnMessage_get_MethodName_mA135B0508D7F1A930BCBE58828B6AD4DC497E8C8 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
MethodBase_t * L_0 = __this->get__methodBase_6();
bool L_1 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_0, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0027;
}
}
{
String_t* L_2 = __this->get__methodName_7();
if (L_2)
{
goto IL_0027;
}
}
{
MethodBase_t * L_3 = __this->get__methodBase_6();
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_3);
__this->set__methodName_7(L_4);
}
IL_0027:
{
String_t* L_5 = __this->get__methodName_7();
return L_5;
}
}
// System.Object System.Runtime.Remoting.Messaging.ReturnMessage::get_MethodSignature()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReturnMessage_get_MethodSignature_mAF436AAB654979FF4DB994ED4DE5EEF040C622F5 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage_get_MethodSignature_mAF436AAB654979FF4DB994ED4DE5EEF040C622F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_0 = NULL;
int32_t V_1 = 0;
{
MethodBase_t * L_0 = __this->get__methodBase_6();
bool L_1 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_0, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_004e;
}
}
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_2 = __this->get__methodSignature_8();
if (L_2)
{
goto IL_004e;
}
}
{
MethodBase_t * L_3 = __this->get__methodBase_6();
NullCheck(L_3);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_4 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_3);
V_0 = L_4;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_5 = V_0;
NullCheck(L_5);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = (TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)SZArrayNew(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))));
__this->set__methodSignature_8(L_6);
V_1 = 0;
goto IL_0048;
}
IL_0034:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_7 = __this->get__methodSignature_8();
int32_t L_8 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_9 = V_0;
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_13);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Type_t *)L_13);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0048:
{
int32_t L_15 = V_1;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_16 = V_0;
NullCheck(L_16);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0034;
}
}
IL_004e:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_17 = __this->get__methodSignature_8();
return (RuntimeObject *)L_17;
}
}
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.ReturnMessage::get_Properties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReturnMessage_get_Properties_m861BFA60A87404E0E572E0B98BB23196932C811A (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage_get_Properties_m861BFA60A87404E0E572E0B98BB23196932C811A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_0 = __this->get__properties_10();
if (L_0)
{
goto IL_0014;
}
}
{
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_1 = (MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 *)il2cpp_codegen_object_new(MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48_il2cpp_TypeInfo_var);
MethodReturnDictionary__ctor_m1F0A97F4CFB071748543B73FF9B6EC6D5387B25A(L_1, __this, /*hidden argument*/NULL);
__this->set__properties_10(L_1);
}
IL_0014:
{
MethodReturnDictionary_tFCD4ADFA43AA2736517130020BBB9E60A253EB48 * L_2 = __this->get__properties_10();
return L_2;
}
}
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReturnMessage_get_TypeName_mF59C0E50EFF887EB5BCF5E0E868D2B5121E9E1BB (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
MethodBase_t * L_0 = __this->get__methodBase_6();
bool L_1 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_0, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002c;
}
}
{
String_t* L_2 = __this->get__typeName_9();
if (L_2)
{
goto IL_002c;
}
}
{
MethodBase_t * L_3 = __this->get__methodBase_6();
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_3);
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_4);
__this->set__typeName_9(L_5);
}
IL_002c:
{
String_t* L_6 = __this->get__typeName_9();
return L_6;
}
}
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReturnMessage_get_Uri_m3591EF63BD17A684921801695437DD4E15367C7E (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_4();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage_set_Uri_mCA6CBC9645665E22ED5E5E67FDA14B72D6F5CDB9 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_4(L_0);
return;
}
}
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::System.Runtime.Remoting.Messaging.IInternalMessage.get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_get_Uri_mB4A791E1D35A202B5BB4DB791BC6059F66A743A5 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = ReturnMessage_get_Uri_m3591EF63BD17A684921801695437DD4E15367C7E_inline(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::System.Runtime.Remoting.Messaging.IInternalMessage.set_Uri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_Uri_m24BCECC83BB2568009A1B544F1A1E476717513A8 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
ReturnMessage_set_Uri_mCA6CBC9645665E22ED5E5E67FDA14B72D6F5CDB9_inline(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.ReturnMessage::GetArg(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReturnMessage_GetArg_mEF420693E7B850D3DB2ACF226AA168F1F022B419 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, int32_t ___argNum0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__args_1();
int32_t L_1 = ___argNum0;
NullCheck(L_0);
int32_t L_2 = L_1;
RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return L_3;
}
}
// System.Exception System.Runtime.Remoting.Messaging.ReturnMessage::get_Exception()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * ReturnMessage_get_Exception_mE50E9CC16D703391673A5FD7CF5BB75B3AD9F7F4 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get__exception_5();
return L_0;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::get_OutArgs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ReturnMessage_get_OutArgs_mFCA082489C8824081DF92ED164E935E1DC6827B3 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ReturnMessage_get_OutArgs_mFCA082489C8824081DF92ED164E935E1DC6827B3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__outArgs_0();
if (L_0)
{
goto IL_0041;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__args_1();
if (!L_1)
{
goto IL_0041;
}
}
{
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_2 = __this->get__inArgInfo_12();
if (L_2)
{
goto IL_002a;
}
}
{
MethodBase_t * L_3 = ReturnMessage_get_MethodBase_m7D3748540C2572738F4B0AFC940DC88D5F11DD20_inline(__this, /*hidden argument*/NULL);
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_4 = (ArgInfo_t67419B6DE53980148631C33DF785307579134942 *)il2cpp_codegen_object_new(ArgInfo_t67419B6DE53980148631C33DF785307579134942_il2cpp_TypeInfo_var);
ArgInfo__ctor_m2D288B5E55452B26EC4E99A2220A24A5BECEB13A(L_4, L_3, 1, /*hidden argument*/NULL);
__this->set__inArgInfo_12(L_4);
}
IL_002a:
{
ArgInfo_t67419B6DE53980148631C33DF785307579134942 * L_5 = __this->get__inArgInfo_12();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get__args_1();
NullCheck(L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ArgInfo_GetInOutArgs_mD6150D4C2021F566DCC34BE338E412240D7E44A6(L_5, L_6, /*hidden argument*/NULL);
__this->set__outArgs_0(L_7);
}
IL_0041:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__outArgs_0();
return L_8;
}
}
// System.Object System.Runtime.Remoting.Messaging.ReturnMessage::get_ReturnValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ReturnMessage_get_ReturnValue_m74755F10483982057AB773DB2BCA177C1CFD2024 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__returnValue_3();
return L_0;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.ReturnMessage::System.Runtime.Remoting.Messaging.IInternalMessage.get_TargetIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_get_TargetIdentity_m40A186818561B982F0E157188A47E3F5B4BEAB98 (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get__targetIdentity_11();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::System.Runtime.Remoting.Messaging.IInternalMessage.set_TargetIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage_System_Runtime_Remoting_Messaging_IInternalMessage_set_TargetIdentity_m9A0E85E9C2AE3582A6683C41412D85955294286A (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___value0, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___value0;
__this->set__targetIdentity_11(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.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ServerContextTerminatorSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerContextTerminatorSink_SyncProcessMessage_mE650DB626C4E04472C159FD31D9D90FCD6A8BE58 (ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerContextTerminatorSink_SyncProcessMessage_mE650DB626C4E04472C159FD31D9D90FCD6A8BE58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___msg0;
RuntimeObject* L_2 = ActivationServices_CreateInstanceFromMessage_m316F6AA883460A4E1032CDC7E840AC995568BE1F(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConstructionCallMessage_t2ACEF19300C83A5D9556376D8E305CDD94B7758D_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
RuntimeObject* L_3 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_4 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_3, /*hidden argument*/NULL);
RuntimeObject* L_5 = ___msg0;
NullCheck(((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_4, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)));
RuntimeObject* L_6 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(6 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.ServerIdentity::SyncObjectProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_4, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)), L_5);
return L_6;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ServerContextTerminatorSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerContextTerminatorSink_AsyncProcessMessage_m6B8E5770B5F18EE9E61268786243EC999F077867 (ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerContextTerminatorSink_AsyncProcessMessage_m6B8E5770B5F18EE9E61268786243EC999F077867_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
RuntimeObject* L_2 = ___msg0;
RuntimeObject* L_3 = ___replySink1;
NullCheck(((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)));
RuntimeObject* L_4 = VirtFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(7 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.ServerIdentity::AsyncObjectProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var)), L_2, L_3);
return L_4;
}
}
// System.Void System.Runtime.Remoting.Messaging.ServerContextTerminatorSink::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerContextTerminatorSink__ctor_m058F40A2121D3A40C643802F839F6E28A32C142D (ServerContextTerminatorSink_t11FA44A0CACACA4A89B73434FB6D685479C6B8E0 * __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.Runtime.Remoting.Messaging.ServerObjectReplySink::.ctor(System.Runtime.Remoting.ServerIdentity,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerObjectReplySink__ctor_m120671D0D04E406158696C0C11EA4B0520064109 (ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 * __this, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___replySink1;
__this->set__replySink_0(L_0);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_1 = ___identity0;
__this->set__identity_1(L_1);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ServerObjectReplySink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerObjectReplySink_SyncProcessMessage_m7477C12B857649F88B78786A8CCFEBA3D51C2B7F (ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerObjectReplySink_SyncProcessMessage_m7477C12B857649F88B78786A8CCFEBA3D51C2B7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_0 = __this->get__identity_1();
RuntimeObject* L_1 = ___msg0;
NullCheck(L_0);
Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143(L_0, (bool)0, L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_2 = __this->get__replySink_0();
RuntimeObject* L_3 = ___msg0;
NullCheck(L_2);
RuntimeObject* L_4 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_2, L_3);
return L_4;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ServerObjectReplySink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerObjectReplySink_AsyncProcessMessage_mD3E1D4192E38ACDA62452A8720A177323FC6ADBA (ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerObjectReplySink_AsyncProcessMessage_mD3E1D4192E38ACDA62452A8720A177323FC6ADBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ServerObjectReplySink_AsyncProcessMessage_mD3E1D4192E38ACDA62452A8720A177323FC6ADBA_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink::.ctor(System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerObjectTerminatorSink__ctor_m54A7376AB25FC67718DF72AE62573583E0377880 (ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD * __this, RuntimeObject* ___nextSink0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___nextSink0;
__this->set__nextSink_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerObjectTerminatorSink_SyncProcessMessage_mC1D8BD0FB0F77A063E66ABB1C0A9701079C34917 (ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerObjectTerminatorSink_SyncProcessMessage_mC1D8BD0FB0F77A063E66ABB1C0A9701079C34917_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
V_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_2 = V_0;
RuntimeObject* L_3 = ___msg0;
NullCheck(L_2);
Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143(L_2, (bool)1, L_3, (bool)0, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_4 = __this->get__nextSink_0();
RuntimeObject* L_5 = ___msg0;
NullCheck(L_4);
RuntimeObject* L_6 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_4, L_5);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_7 = V_0;
RuntimeObject* L_8 = ___msg0;
NullCheck(L_7);
Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143(L_7, (bool)0, L_8, (bool)0, (bool)0, /*hidden argument*/NULL);
return L_6;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ServerObjectTerminatorSink_AsyncProcessMessage_m513D0AD9435F9EF9EC7EA8B37F58C5871998B745 (ServerObjectTerminatorSink_t635122FE05BCEDE34F4B07AA9590AD77509752FD * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServerObjectTerminatorSink_AsyncProcessMessage_m513D0AD9435F9EF9EC7EA8B37F58C5871998B745_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
RuntimeObject* G_B5_0 = NULL;
RuntimeObject* G_B4_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E(L_0, /*hidden argument*/NULL);
V_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)CastclassClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Identity_get_HasServerDynamicSinks_m69FD18B9C80973FF0375BFDB46647B2DD8664BB6(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002a;
}
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_4 = V_0;
RuntimeObject* L_5 = ___msg0;
NullCheck(L_4);
Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143(L_4, (bool)1, L_5, (bool)0, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_6 = ___replySink1;
if (!L_6)
{
goto IL_002a;
}
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_7 = V_0;
RuntimeObject* L_8 = ___replySink1;
ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 * L_9 = (ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8 *)il2cpp_codegen_object_new(ServerObjectReplySink_tE1CEF247A2AC5DFD53842706CFE097CE9556CCB8_il2cpp_TypeInfo_var);
ServerObjectReplySink__ctor_m120671D0D04E406158696C0C11EA4B0520064109(L_9, L_7, L_8, /*hidden argument*/NULL);
___replySink1 = L_9;
}
IL_002a:
{
RuntimeObject* L_10 = __this->get__nextSink_0();
RuntimeObject* L_11 = ___msg0;
RuntimeObject* L_12 = ___replySink1;
NullCheck(L_10);
RuntimeObject* L_13 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_10, L_11, L_12);
RuntimeObject* L_14 = ___replySink1;
G_B4_0 = L_13;
if (L_14)
{
G_B5_0 = L_13;
goto IL_0044;
}
}
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_15 = V_0;
RuntimeObject* L_16 = ___msg0;
NullCheck(L_15);
Identity_NotifyServerDynamicSinks_mBF0A1F562DB424D93C54CD5903FE41E6C54A5143(L_15, (bool)0, L_16, (bool)1, (bool)1, /*hidden argument*/NULL);
G_B5_0 = G_B4_0;
}
IL_0044:
{
return G_B5_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::.ctor(System.MarshalByRefObject,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink__ctor_m2A44CFC4687F4F8698EC87D3ED54980E7B9302AB (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___obj0, bool ___forceInternalExecute1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink__ctor_m2A44CFC4687F4F8698EC87D3ED54980E7B9302AB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___obj0;
__this->set__target_0(L_0);
bool L_1 = ___forceInternalExecute1;
if (L_1)
{
goto IL_0024;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_2 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_3 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0024;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_4 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_5 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_4, /*hidden argument*/NULL);
__this->set__rp_1(L_5);
}
IL_0024:
{
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.StackBuilderSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StackBuilderSink_SyncProcessMessage_m02B70E80D439D7446AC6C9AB335BCBCA36768C77 (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink_SyncProcessMessage_m02B70E80D439D7446AC6C9AB335BCBCA36768C77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D(__this, L_0, /*hidden argument*/NULL);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_1 = __this->get__rp_1();
if (!L_1)
{
goto IL_001c;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_2 = __this->get__rp_1();
RuntimeObject* L_3 = ___msg0;
NullCheck(L_2);
RuntimeObject* L_4 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(5 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RealProxy::Invoke(System.Runtime.Remoting.Messaging.IMessage) */, L_2, L_3);
return L_4;
}
IL_001c:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_5 = __this->get__target_0();
RuntimeObject* L_6 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject* L_7 = RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B(L_5, ((RuntimeObject*)Castclass((RuntimeObject*)L_6, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_7;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.StackBuilderSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* StackBuilderSink_AsyncProcessMessage_m0829C4C2DB5B6C672CF76CBEAABB46CA9E88B587 (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink_AsyncProcessMessage_m0829C4C2DB5B6C672CF76CBEAABB46CA9E88B587_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_1;
RuntimeObject* L_4 = ___replySink1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4);
V_0 = L_3;
WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC * L_5 = (WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC *)il2cpp_codegen_object_new(WaitCallback_t61C5F053CAC7A7FE923208EFA060693D7997B4EC_il2cpp_TypeInfo_var);
WaitCallback__ctor_m375A357FD7C64F4182FD88B8276D88FE5BE75B31(L_5, __this, (intptr_t)((intptr_t)StackBuilderSink_U3CAsyncProcessMessageU3Eb__4_0_m389EA6A277AAF44FB53D63754900702DD1BD0E3B_RuntimeMethod_var), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_0;
ThreadPool_QueueUserWorkItem_mF344DA7B44CDBE8C7163C1539D429F27E8553185(L_5, (RuntimeObject *)(RuntimeObject *)L_6, /*hidden argument*/NULL);
return (RuntimeObject*)NULL;
}
}
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::ExecuteAsyncMessage(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink_ExecuteAsyncMessage_m78BFD4AEE1F41531BED3452E01E5629BBA3D96F3 (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject * ___ob0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink_ExecuteAsyncMessage_m78BFD4AEE1F41531BED3452E01E5629BBA3D96F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* G_B2_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
RuntimeObject * L_0 = ___ob0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var));
NullCheck(L_1);
int32_t L_2 = 0;
RuntimeObject * L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_3, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var));
NullCheck(L_1);
int32_t L_4 = 1;
RuntimeObject * L_5 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
RuntimeObject* L_6 = V_0;
StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D(__this, L_6, /*hidden argument*/NULL);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_7 = __this->get__rp_1();
G_B1_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_5, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var));
if (!L_7)
{
G_B2_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_5, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var));
goto IL_0034;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_8 = __this->get__rp_1();
RuntimeObject* L_9 = V_0;
NullCheck(L_8);
RuntimeObject* L_10 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(5 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RealProxy::Invoke(System.Runtime.Remoting.Messaging.IMessage) */, L_8, L_9);
V_1 = L_10;
G_B3_0 = G_B1_0;
goto IL_0041;
}
IL_0034:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_11 = __this->get__target_0();
RuntimeObject* L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject* L_13 = RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B(L_11, L_12, /*hidden argument*/NULL);
V_1 = L_13;
G_B3_0 = G_B2_0;
}
IL_0041:
{
RuntimeObject* L_14 = V_1;
NullCheck(G_B3_0);
InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, G_B3_0, L_14);
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::CheckParameters(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_2 = NULL;
int32_t V_3 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * V_4 = NULL;
RuntimeObject * V_5 = NULL;
Type_t * V_6 = NULL;
{
RuntimeObject* L_0 = ___msg0;
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
NullCheck(L_1);
MethodBase_t * L_2 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_1);
NullCheck(L_2);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_3 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_2);
V_1 = 0;
V_2 = L_3;
V_3 = 0;
goto IL_00b5;
}
IL_001c:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_4 = V_2;
int32_t L_5 = V_3;
NullCheck(L_4);
int32_t L_6 = L_5;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_4 = L_7;
RuntimeObject* L_8 = V_0;
int32_t L_9 = V_1;
int32_t L_10 = L_9;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
NullCheck(L_8);
RuntimeObject * L_11 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(8 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::GetArg(System.Int32) */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_8, L_10);
V_5 = L_11;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_12 = V_4;
NullCheck(L_12);
Type_t * L_13 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_12);
V_6 = L_13;
Type_t * L_14 = V_6;
NullCheck(L_14);
bool L_15 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0049;
}
}
{
Type_t * L_16 = V_6;
NullCheck(L_16);
Type_t * L_17 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_16);
V_6 = L_17;
}
IL_0049:
{
RuntimeObject * L_18 = V_5;
if (!L_18)
{
goto IL_00b1;
}
}
{
Type_t * L_19 = V_6;
RuntimeObject * L_20 = V_5;
NullCheck(L_19);
bool L_21 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(108 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_19, L_20);
if (L_21)
{
goto IL_00b1;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral96FF587B5AF4D3566623718F3C85493DE70D7483);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral96FF587B5AF4D3566623718F3C85493DE70D7483);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = L_23;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_25 = V_4;
NullCheck(L_25);
int32_t L_26 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_25);
int32_t L_27 = L_26;
RuntimeObject * L_28 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_27);
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_28);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_28);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = L_24;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, _stringLiteralACCC301353BCC7B4B2482313F9C3B54F189AD37B);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteralACCC301353BCC7B4B2482313F9C3B54F189AD37B);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_29;
RuntimeObject * L_31 = V_5;
NullCheck(L_31);
Type_t * L_32 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_31, /*hidden argument*/NULL);
NullCheck(L_32);
String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_32);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_33);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_33);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = L_30;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, _stringLiteralCA37D4F187DB9771FF88B0B456B50DA453F5AEB2);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteralCA37D4F187DB9771FF88B0B456B50DA453F5AEB2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = L_34;
Type_t * L_36 = V_6;
NullCheck(L_36);
String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_36);
NullCheck(L_35);
ArrayElementTypeCheck (L_35, L_37);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_35;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)_stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8);
String_t* L_39 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_38, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_40 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_40, L_39, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, StackBuilderSink_CheckParameters_m043F22209CF968468A590FA6C928DD7E4D387F6D_RuntimeMethod_var);
}
IL_00b1:
{
int32_t L_41 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_00b5:
{
int32_t L_42 = V_3;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_43 = V_2;
NullCheck(L_43);
if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length)))))))
{
goto IL_001c;
}
}
{
return;
}
}
// System.Void System.Runtime.Remoting.Messaging.StackBuilderSink::<AsyncProcessMessage>b__4_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackBuilderSink_U3CAsyncProcessMessageU3Eb__4_0_m389EA6A277AAF44FB53D63754900702DD1BD0E3B (StackBuilderSink_t312B8C166D43B3871C33905CA64E57520C479897 * __this, RuntimeObject * ___data0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StackBuilderSink_U3CAsyncProcessMessageU3Eb__4_0_m389EA6A277AAF44FB53D63754900702DD1BD0E3B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
RuntimeObject * L_0 = ___data0;
StackBuilderSink_ExecuteAsyncMessage_m78BFD4AEE1F41531BED3452E01E5629BBA3D96F3(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.Object)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Metadata.SoapAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1 (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapAttribute::get_UseAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapAttribute_get_UseAttribute_m683D27D10227D657AA60D34563B2003F00BD2E56 (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__useAttribute_0();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapAttribute::get_XmlNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapAttribute_get_XmlNamespace_mF028166A5C1997B563F3C077252CCDD785A07D0A (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_ProtXmlNamespace_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Metadata.SoapAttribute::SetReflectionObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapAttribute_SetReflectionObject_m2CFFF59E912D3B4BDA6F6A8CA1C7578EFF9ED331 (SoapAttribute_tFAB893E3F49B2A2431C47FA7E79746BD6AE4C5CE * __this, RuntimeObject * ___reflectionObject0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___reflectionObject0;
__this->set_ReflectInfo_2(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Metadata.SoapFieldAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapFieldAttribute__ctor_m8132378AE95B6B7981DAC2A0B1AB05E85B3453B7 (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * __this, const RuntimeMethod* method)
{
{
SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapFieldAttribute::get_XmlElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapFieldAttribute_get_XmlElementName_m48A63760F915ABB18C08DAA74CCE7E5D93CF0C85 (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__elementName_3();
return L_0;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapFieldAttribute::IsInteropXmlElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapFieldAttribute_IsInteropXmlElement_m4317D5BFFB52C5096A6939E3268EB3F9E722A573 (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isElement_4();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Metadata.SoapFieldAttribute::SetReflectionObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapFieldAttribute_SetReflectionObject_m37C80CB25B13B733F8160A6E7548F3D3EB72D86D (SoapFieldAttribute_t0D4849AE71639A7044E81BF800B5687F7CD5D35C * __this, RuntimeObject * ___reflectionObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SoapFieldAttribute_SetReflectionObject_m37C80CB25B13B733F8160A6E7548F3D3EB72D86D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FieldInfo_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___reflectionObject0;
V_0 = ((FieldInfo_t *)CastclassClass((RuntimeObject*)L_0, FieldInfo_t_il2cpp_TypeInfo_var));
String_t* L_1 = __this->get__elementName_3();
if (L_1)
{
goto IL_001b;
}
}
{
FieldInfo_t * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2);
__this->set__elementName_3(L_3);
}
IL_001b:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Metadata.SoapMethodAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapMethodAttribute__ctor_m69ABE77883D5B9DD0FA3BE21C9FA2250855AA7F2 (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * __this, const RuntimeMethod* method)
{
{
SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapMethodAttribute::get_UseAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapMethodAttribute_get_UseAttribute_mFADB80808FDF950E0E88CB487BB6586E21621002 (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__useAttribute_7();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapMethodAttribute::get_XmlNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapMethodAttribute_get_XmlNamespace_m8EF919E559B346CD60F7B360244508316CC6698F (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__namespace_8();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Metadata.SoapMethodAttribute::SetReflectionObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapMethodAttribute_SetReflectionObject_m1BDCA13F68216B31B8C1E6311EBA9B2BA945A3EB (SoapMethodAttribute_t072DC0C06B866B7CF194BFF308CA9FA5C22EE722 * __this, RuntimeObject * ___reflectionObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SoapMethodAttribute_SetReflectionObject_m1BDCA13F68216B31B8C1E6311EBA9B2BA945A3EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodBase_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___reflectionObject0;
V_0 = ((MethodBase_t *)CastclassClass((RuntimeObject*)L_0, MethodBase_t_il2cpp_TypeInfo_var));
String_t* L_1 = __this->get__responseElement_3();
if (L_1)
{
goto IL_0025;
}
}
{
MethodBase_t * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2);
String_t* L_4 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_3, _stringLiteral6E617E4FC9DA3DE9693EAC5990613543B86C63F9, /*hidden argument*/NULL);
__this->set__responseElement_3(L_4);
}
IL_0025:
{
String_t* L_5 = __this->get__responseNamespace_4();
if (L_5)
{
goto IL_0039;
}
}
{
MethodBase_t * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tFAC138D29909023A659225D2178FBA4155FAB007_il2cpp_TypeInfo_var);
String_t* L_7 = SoapServices_GetXmlNamespaceForMethodResponse_m868F2E6F50D18120AEB71E048E5362E04FC66F06(L_6, /*hidden argument*/NULL);
__this->set__responseNamespace_4(L_7);
}
IL_0039:
{
String_t* L_8 = __this->get__returnElement_5();
if (L_8)
{
goto IL_004c;
}
}
{
__this->set__returnElement_5(_stringLiteral63143B6F8007B98C53CA2149822777B3566F9241);
}
IL_004c:
{
String_t* L_9 = __this->get__soapAction_6();
if (L_9)
{
goto IL_0070;
}
}
{
MethodBase_t * L_10 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tFAC138D29909023A659225D2178FBA4155FAB007_il2cpp_TypeInfo_var);
String_t* L_11 = SoapServices_GetXmlNamespaceForMethodCall_m4A1C57780FBF810E42A16512D811A98C569C6316(L_10, /*hidden argument*/NULL);
MethodBase_t * L_12 = V_0;
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_12);
String_t* L_14 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_11, _stringLiteralD08F88DF745FA7950B104E4A707A31CFCE7B5841, L_13, /*hidden argument*/NULL);
__this->set__soapAction_6(L_14);
}
IL_0070:
{
String_t* L_15 = __this->get__namespace_8();
if (L_15)
{
goto IL_0084;
}
}
{
MethodBase_t * L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tFAC138D29909023A659225D2178FBA4155FAB007_il2cpp_TypeInfo_var);
String_t* L_17 = SoapServices_GetXmlNamespaceForMethodCall_m4A1C57780FBF810E42A16512D811A98C569C6316(L_16, /*hidden argument*/NULL);
__this->set__namespace_8(L_17);
}
IL_0084:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Metadata.SoapParameterAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapParameterAttribute__ctor_mDC782C88646C3237077194DA5BAC9AB6C01BA232 (SoapParameterAttribute_t1CB67B052C746AA6B61A0C0C5D214A098E63ABD6 * __this, const RuntimeMethod* method)
{
{
SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Metadata.SoapTypeAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapTypeAttribute__ctor_m0864596C6B23265C358BE9B3408A71B3F399F991 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
SoapAttribute__ctor_mCAC18E080B42DD484D7A10454DAF7AE5C614B6C1(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_UseAttribute()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapTypeAttribute_get_UseAttribute_mCAE15424BD0F2DC004EEF1BD3583A65A9BF7767E (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__useAttribute_3();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_XmlElementName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapTypeAttribute_get_XmlElementName_m1B393174668B8462602DCF9D05C73C058614EA87 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__xmlElementName_4();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_XmlNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapTypeAttribute_get_XmlNamespace_m213D70F3CF8D6F3CD7B1C9F9284C5F281C73C5F8 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__xmlNamespace_5();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_XmlTypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapTypeAttribute_get_XmlTypeName_m279D2740C8C9FE80A0840BD9A49B2D8D5900CD28 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__xmlTypeName_6();
return L_0;
}
}
// System.String System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_XmlTypeNamespace()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SoapTypeAttribute_get_XmlTypeNamespace_m22B14D327DAEEB629A2EC3F9BC629DDE60E74525 (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__xmlTypeNamespace_7();
return L_0;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_IsInteropXmlElement()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapTypeAttribute_get_IsInteropXmlElement_m6C463906F6AEE5BB76B52A1DE1ECBA7462C22ACB (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isElement_9();
return L_0;
}
}
// System.Boolean System.Runtime.Remoting.Metadata.SoapTypeAttribute::get_IsInteropXmlType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SoapTypeAttribute_get_IsInteropXmlType_m2B94CD46917CC50B09193DF404D0B95B32171B6D (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__isType_8();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Metadata.SoapTypeAttribute::SetReflectionObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapTypeAttribute_SetReflectionObject_m9850EB38A4BEC60C169E2E7843CFF075D297335E (SoapTypeAttribute_t1C7E0B175F9D3211051EC6DF57A195527AEE937A * __this, RuntimeObject * ___reflectionObject0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SoapTypeAttribute_SetReflectionObject_m9850EB38A4BEC60C169E2E7843CFF075D297335E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___reflectionObject0;
V_0 = ((Type_t *)CastclassClass((RuntimeObject*)L_0, Type_t_il2cpp_TypeInfo_var));
String_t* L_1 = __this->get__xmlElementName_4();
if (L_1)
{
goto IL_001b;
}
}
{
Type_t * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_2);
__this->set__xmlElementName_4(L_3);
}
IL_001b:
{
String_t* L_4 = __this->get__xmlTypeName_6();
if (L_4)
{
goto IL_002f;
}
}
{
Type_t * L_5 = V_0;
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5);
__this->set__xmlTypeName_6(L_6);
}
IL_002f:
{
String_t* L_7 = __this->get__xmlTypeNamespace_7();
if (L_7)
{
goto IL_007e;
}
}
{
Type_t * L_8 = V_0;
NullCheck(L_8);
Assembly_t * L_9 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_8);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (RuntimeObject_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_11);
Assembly_t * L_12 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_11);
bool L_13 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_9, L_12, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_005b;
}
}
{
String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
V_1 = L_14;
goto IL_006c;
}
IL_005b:
{
Type_t * L_15 = V_0;
NullCheck(L_15);
Assembly_t * L_16 = VirtFuncInvoker0< Assembly_t * >::Invoke(23 /* System.Reflection.Assembly System.Type::get_Assembly() */, L_15);
NullCheck(L_16);
AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * L_17 = VirtFuncInvoker0< AssemblyName_t6F3EC58113268060348EE894DCB46F6EF6BBBB82 * >::Invoke(18 /* System.Reflection.AssemblyName System.Reflection.Assembly::GetName() */, L_16);
NullCheck(L_17);
String_t* L_18 = AssemblyName_get_Name_m6EA5C18D2FF050D3AF58D4A21ED39D161DFF218B_inline(L_17, /*hidden argument*/NULL);
V_1 = L_18;
}
IL_006c:
{
Type_t * L_19 = V_0;
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_Namespace() */, L_19);
String_t* L_21 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tFAC138D29909023A659225D2178FBA4155FAB007_il2cpp_TypeInfo_var);
String_t* L_22 = SoapServices_CodeXmlNamespaceForClrTypeNamespace_mCF0E7A4181BF6EB8B45D9D550E286BD3F04A6B7C(L_20, L_21, /*hidden argument*/NULL);
__this->set__xmlTypeNamespace_7(L_22);
}
IL_007e:
{
String_t* L_23 = __this->get__xmlNamespace_5();
if (L_23)
{
goto IL_0092;
}
}
{
String_t* L_24 = __this->get__xmlTypeNamespace_7();
__this->set__xmlNamespace_5(L_24);
}
IL_0092:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ObjRef::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_m9382E14A7DC2725F9C70ACA691768F843B12CCDA (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ObjRef_UpdateChannelInfo_mEB7A54FF066B8232DFDEFBBA8E255F4C0FCCF927(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.ObjRef::.ctor(System.String,System.Runtime.Remoting.IChannelInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_mF39AA7DFDDDD477AC65118E2A7158EB6A09AF874 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, String_t* ___uri0, RuntimeObject* ___cinfo1, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___uri0;
__this->set_uri_1(L_0);
RuntimeObject* L_1 = ___cinfo1;
__this->set_channel_info_0(L_1);
return;
}
}
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.ObjRef::DeserializeInTheCurrentDomain(System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ObjRef_DeserializeInTheCurrentDomain_mE66C6F771B2F2A032558CDEC0C775780CAA57C1D (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, int32_t ___domainId0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___tInfo1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_DeserializeInTheCurrentDomain_mE66C6F771B2F2A032558CDEC0C775780CAA57C1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
String_t* L_0 = __this->get_uri_1();
String_t* L_1 = String_Copy_m521EF2A77A1F54EFAB52903A780485ECD171EFA7(L_0, /*hidden argument*/NULL);
int32_t L_2 = ___domainId0;
CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE * L_3 = (CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE *)il2cpp_codegen_object_new(CrossAppDomainData_t61260B5FD78842A89E371C03711E7364E4F810BE_il2cpp_TypeInfo_var);
CrossAppDomainData__ctor_mED632CE830A7710F3470E3DDE7D53B2AA321BF47(L_3, L_2, /*hidden argument*/NULL);
ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * L_4 = (ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 *)il2cpp_codegen_object_new(ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9_il2cpp_TypeInfo_var);
ChannelInfo__ctor_mC8541D235044C39D26804C9BDC13745F59CC35BE(L_4, L_3, /*hidden argument*/NULL);
V_0 = L_4;
ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * L_5 = V_0;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_6 = (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *)il2cpp_codegen_object_new(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
ObjRef__ctor_mF39AA7DFDDDD477AC65118E2A7158EB6A09AF874(L_6, L_1, L_5, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___tInfo1;
RuntimeObject * L_8 = CADSerializer_DeserializeObjectSafe_m220962E09CAFCE7A0A2C2760BF573A385DC61F93(L_7, /*hidden argument*/NULL);
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_8, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var));
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_9 = L_6;
RuntimeObject* L_10 = V_1;
NullCheck(L_9);
L_9->set_typeInfo_2(L_10);
return L_9;
}
}
// System.Byte[] System.Runtime.Remoting.ObjRef::SerializeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_typeInfo_2();
if (L_0)
{
goto IL_0013;
}
}
{
Exception_t * L_1 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_1, _stringLiteral32FFB506802FF06396CDB1D4AE5047B7C92C291A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ObjRef_SerializeType_mE38F1700A454630922A371865BCEEAC7EB9695FD_RuntimeMethod_var);
}
IL_0013:
{
RuntimeObject* L_2 = __this->get_typeInfo_2();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_3 = CADSerializer_SerializeObject_m6B7C23B79F0AFE830641EA7F810201C149F06047(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_3);
return L_4;
}
}
// System.Void System.Runtime.Remoting.ObjRef::.ctor(System.Type,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, Type_t * ___type0, String_t* ___url1, RuntimeObject * ___remoteChannelData2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___url1;
__this->set_uri_1(L_0);
Type_t * L_1 = ___type0;
TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE * L_2 = (TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE *)il2cpp_codegen_object_new(TypeInfo_t621BE6C30385097A31E23DE8B512AA8558B588EE_il2cpp_TypeInfo_var);
TypeInfo__ctor_mC74EC4DBA656D6170C8060154E5F48156C3FDDA5(L_2, L_1, /*hidden argument*/NULL);
__this->set_typeInfo_2(L_2);
RuntimeObject * L_3 = ___remoteChannelData2;
if (!L_3)
{
goto IL_0028;
}
}
{
RuntimeObject * L_4 = ___remoteChannelData2;
ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * L_5 = (ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 *)il2cpp_codegen_object_new(ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9_il2cpp_TypeInfo_var);
ChannelInfo__ctor_mC8541D235044C39D26804C9BDC13745F59CC35BE(L_5, L_4, /*hidden argument*/NULL);
__this->set_channel_info_0(L_5);
}
IL_0028:
{
int32_t L_6 = __this->get_flags_4();
IL2CPP_RUNTIME_CLASS_INIT(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
int32_t L_7 = ((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->get_WellKnowObjectRef_7();
__this->set_flags_4(((int32_t)((int32_t)L_6|(int32_t)L_7)));
return;
}
}
// System.Void System.Runtime.Remoting.ObjRef::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__ctor_mC40A5AC5E30196648D2FF727CE4AC99E52F045C1 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef__ctor_mC40A5AC5E30196648D2FF727CE4AC99E52F045C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
int32_t V_3 = 0;
RuntimeObject * V_4 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
NullCheck(L_0);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_1 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_0, /*hidden argument*/NULL);
V_0 = L_1;
V_1 = (bool)1;
goto IL_0109;
}
IL_0014:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_2, /*hidden argument*/NULL);
V_2 = L_3;
String_t* L_4 = V_2;
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteral2C6D680F5C570BA21D22697CD028F230E9F4CD56, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0071;
}
}
{
String_t* L_6 = V_2;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral98584452752AD757DF2319F0B249A152EB630B1B, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0087;
}
}
{
String_t* L_8 = V_2;
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteralB9ACD739FC193901BC2AB819C3352A4A26425AA9, /*hidden argument*/NULL);
if (L_9)
{
goto IL_009a;
}
}
{
String_t* L_10 = V_2;
bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteralC610FB00E2FFDB47A2315F784CC70510A9DA7C63, /*hidden argument*/NULL);
if (L_11)
{
goto IL_00ad;
}
}
{
String_t* L_12 = V_2;
bool L_13 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_12, _stringLiteral5E545F1F92BB780A4B143358ACBCE75340A23795, /*hidden argument*/NULL);
if (L_13)
{
goto IL_00c0;
}
}
{
String_t* L_14 = V_2;
bool L_15 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_14, _stringLiteralF93FB9ED2C33EDDD8CBC27B2631F0ADD20EFE43D, /*hidden argument*/NULL);
if (L_15)
{
goto IL_00f0;
}
}
{
goto IL_0103;
}
IL_0071:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_16 = V_0;
NullCheck(L_16);
RuntimeObject * L_17 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_16, /*hidden argument*/NULL);
__this->set_uri_1(((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)));
goto IL_0109;
}
IL_0087:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_18 = V_0;
NullCheck(L_18);
RuntimeObject * L_19 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_18, /*hidden argument*/NULL);
__this->set_typeInfo_2(((RuntimeObject*)Castclass((RuntimeObject*)L_19, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var)));
goto IL_0109;
}
IL_009a:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_20 = V_0;
NullCheck(L_20);
RuntimeObject * L_21 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_20, /*hidden argument*/NULL);
__this->set_channel_info_0(((RuntimeObject*)Castclass((RuntimeObject*)L_21, IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D_il2cpp_TypeInfo_var)));
goto IL_0109;
}
IL_00ad:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_22 = V_0;
NullCheck(L_22);
RuntimeObject * L_23 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_22, /*hidden argument*/NULL);
__this->set_envoyInfo_3(((RuntimeObject*)Castclass((RuntimeObject*)L_23, IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148_il2cpp_TypeInfo_var)));
goto IL_0109;
}
IL_00c0:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_24 = V_0;
NullCheck(L_24);
RuntimeObject * L_25 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_24, /*hidden argument*/NULL);
V_4 = L_25;
RuntimeObject * L_26 = V_4;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_26, String_t_il2cpp_TypeInfo_var)))
{
goto IL_00e1;
}
}
{
RuntimeObject * L_27 = V_4;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_27, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)));
int32_t L_28 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_27, IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL);
V_3 = L_28;
goto IL_00e9;
}
IL_00e1:
{
RuntimeObject * L_29 = V_4;
V_3 = ((*(int32_t*)((int32_t*)UnBox(L_29, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var))));
}
IL_00e9:
{
int32_t L_30 = V_3;
if (L_30)
{
goto IL_0109;
}
}
{
V_1 = (bool)0;
goto IL_0109;
}
IL_00f0:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_31 = V_0;
NullCheck(L_31);
RuntimeObject * L_32 = SerializationInfoEnumerator_get_Value_m90F91B3AFD43BA00E4A69FC0954761CFD9C55AE1(L_31, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var);
int32_t L_33 = Convert_ToInt32_mCF1152AF4138C1DD7A16643B22EE69A38373EF86(L_32, /*hidden argument*/NULL);
__this->set_flags_4(L_33);
goto IL_0109;
}
IL_0103:
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_34 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_34, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ObjRef__ctor_mC40A5AC5E30196648D2FF727CE4AC99E52F045C1_RuntimeMethod_var);
}
IL_0109:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_35 = V_0;
NullCheck(L_35);
bool L_36 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0014;
}
}
{
bool L_37 = V_1;
if (!L_37)
{
goto IL_0129;
}
}
{
int32_t L_38 = __this->get_flags_4();
IL2CPP_RUNTIME_CLASS_INIT(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
int32_t L_39 = ((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->get_MarshalledObjectRef_6();
__this->set_flags_4(((int32_t)((int32_t)L_38|(int32_t)L_39)));
}
IL_0129:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.ObjRef::get_IsReferenceToWellKnow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_flags_4();
IL2CPP_RUNTIME_CLASS_INIT(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
int32_t L_1 = ((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->get_WellKnowObjectRef_7();
return (bool)((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) > ((int32_t)0))? 1 : 0);
}
}
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::get_ChannelInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjRef_get_ChannelInfo_m1C480A53F529A6F11169064D962D3064994DE4C5 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_channel_info_0();
return L_0;
}
}
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::get_EnvoyInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjRef_get_EnvoyInfo_mF2070072537B712F5E6A40D4E9F51BE0A2E47152 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_envoyInfo_3();
return L_0;
}
}
// System.Void System.Runtime.Remoting.ObjRef::set_EnvoyInfo(System.Runtime.Remoting.IEnvoyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_set_EnvoyInfo_mBF7328C9E9A533F0BFF20BBFB5F6CA8092C3FDFE (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_envoyInfo_3(L_0);
return;
}
}
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::get_TypeInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ObjRef_get_TypeInfo_m2D651D6CD5B86A31E4070A0110253A761118C553 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get_typeInfo_2();
return L_0;
}
}
// System.Void System.Runtime.Remoting.ObjRef::set_TypeInfo(System.Runtime.Remoting.IRemotingTypeInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_set_TypeInfo_m24DF7D77634717EC33C80EB6691438B7BD5B53A7 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_typeInfo_2(L_0);
return;
}
}
// System.String System.Runtime.Remoting.ObjRef::get_URI()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ObjRef_get_URI_m7AF96AF98779D34D1B11637AE0E35AEA11E18153 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_uri_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.ObjRef::set_URI(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_set_URI_mBE0020F3D16190CE7A6800679B71EDAE3BAA609D (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_uri_1(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.ObjRef::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_GetObjectData_m0F1455D1A1EC29196F9DF15F1E332A8CCFB2AA42 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_GetObjectData_m0F1455D1A1EC29196F9DF15F1E332A8CCFB2AA42_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_0);
SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784(L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
String_t* L_3 = __this->get_uri_1();
NullCheck(L_2);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteral2C6D680F5C570BA21D22697CD028F230E9F4CD56, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
RuntimeObject* L_5 = __this->get_typeInfo_2();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_4);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_4, _stringLiteral98584452752AD757DF2319F0B249A152EB630B1B, L_5, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
RuntimeObject* L_9 = __this->get_envoyInfo_3();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_10 = { reinterpret_cast<intptr_t> (IEnvoyInfo_t11D78CB5D6976205E23180E5F0911CEF40672148_0_0_0_var) };
Type_t * L_11 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_10, /*hidden argument*/NULL);
NullCheck(L_8);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_8, _stringLiteralC610FB00E2FFDB47A2315F784CC70510A9DA7C63, L_9, L_11, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
RuntimeObject* L_13 = __this->get_channel_info_0();
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_12);
SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_12, _stringLiteralB9ACD739FC193901BC2AB819C3352A4A26425AA9, L_13, L_15, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0;
int32_t L_17 = __this->get_flags_4();
NullCheck(L_16);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_16, _stringLiteralF93FB9ED2C33EDDD8CBC27B2631F0ADD20EFE43D, L_17, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.ObjRef::GetRealObject(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ObjRef_GetRealObject_mAC3DCE734849AF6783D643238D9231DA5E75CAD6 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_GetRealObject_mAC3DCE734849AF6783D643238D9231DA5E75CAD6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_flags_4();
IL2CPP_RUNTIME_CLASS_INIT(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
int32_t L_1 = ((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->get_MarshalledObjectRef_6();
if ((((int32_t)((int32_t)((int32_t)L_0&(int32_t)L_1))) <= ((int32_t)0)))
{
goto IL_0016;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A(__this, /*hidden argument*/NULL);
return L_2;
}
IL_0016:
{
return __this;
}
}
// System.Void System.Runtime.Remoting.ObjRef::UpdateChannelInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef_UpdateChannelInfo_mEB7A54FF066B8232DFDEFBBA8E255F4C0FCCF927 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_UpdateChannelInfo_mEB7A54FF066B8232DFDEFBBA8E255F4C0FCCF927_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 * L_0 = (ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9 *)il2cpp_codegen_object_new(ChannelInfo_t3133566E361C13A12FDBB25B72CCB80A3840D7A9_il2cpp_TypeInfo_var);
ChannelInfo__ctor_m5779A75A2FEC132451B997410250729FB599156A(L_0, /*hidden argument*/NULL);
__this->set_channel_info_0(L_0);
return;
}
}
// System.Type System.Runtime.Remoting.ObjRef::get_ServerType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ObjRef_get_ServerType_m8461364BA216148B25DBB1AD68FAF0AA3E8EEED6 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef_get_ServerType_m8461364BA216148B25DBB1AD68FAF0AA3E8EEED6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = __this->get__serverType_5();
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_0024;
}
}
{
RuntimeObject* L_2 = __this->get_typeInfo_2();
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.IRemotingTypeInfo::get_TypeName() */, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var, L_2);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_3, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
__this->set__serverType_5(L_4);
}
IL_0024:
{
Type_t * L_5 = __this->get__serverType_5();
return L_5;
}
}
// System.Void System.Runtime.Remoting.ObjRef::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjRef__cctor_m233EBD25962225DDA7CA831CBF26267DA8F2A41D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ObjRef__cctor_m233EBD25962225DDA7CA831CBF26267DA8F2A41D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->set_MarshalledObjectRef_6(1);
((ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_StaticFields*)il2cpp_codegen_static_fields_for(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var))->set_WellKnowObjectRef_7(2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ProviderData::CopyFrom(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2 (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * __this, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = __this->get_Ref_0();
if (L_0)
{
goto IL_0014;
}
}
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_1 = ___other0;
NullCheck(L_1);
String_t* L_2 = L_1->get_Ref_0();
__this->set_Ref_0(L_2);
}
IL_0014:
{
String_t* L_3 = __this->get_Id_2();
if (L_3)
{
goto IL_0028;
}
}
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_4 = ___other0;
NullCheck(L_4);
String_t* L_5 = L_4->get_Id_2();
__this->set_Id_2(L_5);
}
IL_0028:
{
String_t* L_6 = __this->get_Type_1();
if (L_6)
{
goto IL_003c;
}
}
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_7 = ___other0;
NullCheck(L_7);
String_t* L_8 = L_7->get_Type_1();
__this->set_Type_1(L_8);
}
IL_003c:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_9 = ___other0;
NullCheck(L_9);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_10 = L_9->get_CustomProperties_3();
NullCheck(L_10);
RuntimeObject* L_11 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_10);
V_0 = L_11;
}
IL_0048:
try
{ // begin try (depth: 1)
{
goto IL_0083;
}
IL_004a:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
RuntimeObject * L_13 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_12);
V_1 = ((*(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_13, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var))));
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = __this->get_CustomProperties_3();
RuntimeObject * L_15 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_14);
bool L_16 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_14, L_15);
if (L_16)
{
goto IL_0083;
}
}
IL_006a:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_17 = __this->get_CustomProperties_3();
RuntimeObject * L_18 = DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_19 = DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_17);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_17, L_18, L_19);
}
IL_0083:
{
RuntimeObject* L_20 = V_0;
NullCheck(L_20);
bool L_21 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_20);
if (L_21)
{
goto IL_004a;
}
}
IL_008b:
{
IL2CPP_LEAVE(0x9E, FINALLY_008d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_008d;
}
FINALLY_008d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_22 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_23 = V_2;
if (!L_23)
{
goto IL_009d;
}
}
IL_0097:
{
RuntimeObject* L_24 = V_2;
NullCheck(L_24);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_24);
}
IL_009d:
{
IL2CPP_END_FINALLY(141)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(141)
{
IL2CPP_JUMP_TBL(0x9E, IL_009e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_009e:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_25 = ___other0;
NullCheck(L_25);
RuntimeObject* L_26 = L_25->get_CustomData_4();
if (!L_26)
{
goto IL_00fd;
}
}
{
RuntimeObject* L_27 = __this->get_CustomData_4();
if (L_27)
{
goto IL_00b9;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_28 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_28, /*hidden argument*/NULL);
__this->set_CustomData_4(L_28);
}
IL_00b9:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_29 = ___other0;
NullCheck(L_29);
RuntimeObject* L_30 = L_29->get_CustomData_4();
NullCheck(L_30);
RuntimeObject* L_31 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_30);
V_3 = L_31;
}
IL_00c5:
try
{ // begin try (depth: 1)
{
goto IL_00e2;
}
IL_00c7:
{
RuntimeObject* L_32 = V_3;
NullCheck(L_32);
RuntimeObject * L_33 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_32);
V_4 = ((SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A *)CastclassClass((RuntimeObject*)L_33, SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A_il2cpp_TypeInfo_var));
RuntimeObject* L_34 = __this->get_CustomData_4();
SinkProviderData_t064AF19C13A6FAA93EC3C8015E94D551A6F5248A * L_35 = V_4;
NullCheck(L_34);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tA637AB426E16F84F84ACC2813BDCF3A0414AF0AA_il2cpp_TypeInfo_var, L_34, L_35);
}
IL_00e2:
{
RuntimeObject* L_36 = V_3;
NullCheck(L_36);
bool L_37 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_36);
if (L_37)
{
goto IL_00c7;
}
}
IL_00ea:
{
IL2CPP_LEAVE(0xFD, FINALLY_00ec);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00ec;
}
FINALLY_00ec:
{ // begin finally (depth: 1)
{
RuntimeObject* L_38 = V_3;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_38, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_39 = V_2;
if (!L_39)
{
goto IL_00fc;
}
}
IL_00f6:
{
RuntimeObject* L_40 = V_2;
NullCheck(L_40);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_40);
}
IL_00fc:
{
IL2CPP_END_FINALLY(236)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(236)
{
IL2CPP_JUMP_TBL(0xFD, IL_00fd)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00fd:
{
return;
}
}
// System.Void System.Runtime.Remoting.ProviderData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData__ctor_m62F7BEE2687705DF69132616A26FC2139AAFB1CF (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProviderData__ctor_m62F7BEE2687705DF69132616A26FC2139AAFB1CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
__this->set_CustomProperties_3(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.MarshalByRefObject System.Runtime.Remoting.Proxies.ProxyAttribute::CreateInstance(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ProxyAttribute_CreateInstance_m02407169934CE7A02E296ECBC45EB5775BC68BE5 (ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * __this, Type_t * ___serverType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProxyAttribute_CreateInstance_m02407169934CE7A02E296ECBC45EB5775BC68BE5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___serverType0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
String_t* L_1 = ((ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var))->get_CrossContextUrl_3();
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_2 = (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)il2cpp_codegen_object_new(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
RemotingProxy__ctor_mED470C821B287EAA284FAA263E1C1A98A84001C7(L_2, L_0, L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
NullCheck(L_2);
RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, L_2);
return ((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)CastclassClass((RuntimeObject*)L_3, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var));
}
}
// System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.Proxies.ProxyAttribute::CreateProxy(System.Runtime.Remoting.ObjRef,System.Type,System.Object,System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * ProxyAttribute_CreateProxy_m64B7F80B041AC2F3AF139ECEF873F79DE42254B7 (ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * __this, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef0, Type_t * ___serverType1, RuntimeObject * ___serverObject2, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ___serverContext3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProxyAttribute_CreateProxy_m64B7F80B041AC2F3AF139ECEF873F79DE42254B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___objRef0;
Type_t * L_1 = ___serverType1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_2 = RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E(L_0, L_1, /*hidden argument*/NULL);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_3 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_2, /*hidden argument*/NULL);
return L_3;
}
}
#ifdef __clang__
#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.Runtime.Remoting.Proxies.RealProxy
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled)
{
Exception_t* ___class_to_proxy_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'class_to_proxy' of type 'RealProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___class_to_proxy_0Exception, NULL);
}
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke_back(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled)
{
Exception_t* ___class_to_proxy_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'class_to_proxy' of type 'RealProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___class_to_proxy_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Proxies.RealProxy
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_pinvoke_cleanup(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Proxies.RealProxy
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled)
{
Exception_t* ___class_to_proxy_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'class_to_proxy' of type 'RealProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___class_to_proxy_0Exception, NULL);
}
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com_back(const RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled, RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF& unmarshaled)
{
Exception_t* ___class_to_proxy_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'class_to_proxy' of type 'RealProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___class_to_proxy_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Proxies.RealProxy
IL2CPP_EXTERN_C void RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshal_com_cleanup(RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF_marshaled_com& marshaled)
{
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_m9A824E70E5BC074696A49E5FE31637DCD1516678 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
{
__this->set__targetDomainId_3((-1));
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mEB28493534C3DF9ECC276A2CBDEB55A985065A1E (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy__ctor_mEB28493534C3DF9ECC276A2CBDEB55A985065A1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___classToProxy0;
RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89(__this, L_0, (intptr_t)(0), NULL, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type,System.Runtime.Remoting.ClientIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mD39E8A57474D97AB39E0C852DE4B3551B8D26BC6 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * ___identity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy__ctor_mD39E8A57474D97AB39E0C852DE4B3551B8D26BC6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___classToProxy0;
RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89(__this, L_0, (intptr_t)(0), NULL, /*hidden argument*/NULL);
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_1 = ___identity1;
__this->set__objectIdentity_5(L_1);
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::.ctor(System.Type,System.IntPtr,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Type_t * ___classToProxy0, intptr_t ___stub1, RuntimeObject * ___stubData2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set__targetDomainId_3((-1));
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___classToProxy0;
NullCheck(L_0);
bool L_1 = Type_get_IsMarshalByRef_mE12C8300F5A8BB91C6319CE71994EA3D1563C465(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0028;
}
}
{
Type_t * L_2 = ___classToProxy0;
NullCheck(L_2);
bool L_3 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0028;
}
}
{
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral57D70182FAA877DF8421EC91CD375C8A7153B5DD, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89_RuntimeMethod_var);
}
IL_0028:
{
Type_t * L_5 = ___classToProxy0;
__this->set_class_to_proxy_0(L_5);
intptr_t L_6 = ___stub1;
bool L_7 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_6, (intptr_t)(0), /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0047;
}
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_8 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_8, _stringLiteral64BB750FBDB619F316CF93F627402BE61ACFBFDF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, RealProxy__ctor_mABD2AC11F60AA0DF845361A694B585E494DEFE89_RuntimeMethod_var);
}
IL_0047:
{
return;
}
}
// System.Type System.Runtime.Remoting.Proxies.RealProxy::InternalGetProxyType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RealProxy_InternalGetProxyType_mE285E2D2DA5C90E676069DCF1189CE0E7D813185 (RuntimeObject * ___transparentProxy0, const RuntimeMethod* method)
{
typedef Type_t * (*RealProxy_InternalGetProxyType_mE285E2D2DA5C90E676069DCF1189CE0E7D813185_ftn) (RuntimeObject *);
using namespace il2cpp::icalls;
return ((RealProxy_InternalGetProxyType_mE285E2D2DA5C90E676069DCF1189CE0E7D813185_ftn)mscorlib::System::Runtime::Remoting::Proxies::RealProxy::InternalGetProxyType) (___transparentProxy0);
}
// System.Type System.Runtime.Remoting.Proxies.RealProxy::GetProxiedType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = __this->get__objTP_6();
if (L_0)
{
goto IL_0027;
}
}
{
Type_t * L_1 = __this->get_class_to_proxy_0();
NullCheck(L_1);
bool L_2 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_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);
return L_4;
}
IL_0020:
{
Type_t * L_5 = __this->get_class_to_proxy_0();
return L_5;
}
IL_0027:
{
RuntimeObject * L_6 = __this->get__objTP_6();
Type_t * L_7 = RealProxy_InternalGetProxyType_mE285E2D2DA5C90E676069DCF1189CE0E7D813185(L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy_GetObjectData_mB3208201B6CB9EFE90A5581873D6E669B4D3393F (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_GetObjectData_mB3208201B6CB9EFE90A5581873D6E669B4D3393F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, __this);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_2 = ___context1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F(L_0, L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Proxies.RealProxy::get_ObjectIdentity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get__objectIdentity_5();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::set_ObjectIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy_set_ObjectIdentity_m6AEE70959473C6A72D4EB37EBACAB588EA5338E8 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___value0, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___value0;
__this->set__objectIdentity_5(L_0);
return;
}
}
// System.Object System.Runtime.Remoting.Proxies.RealProxy::PrivateInvoke(System.Runtime.Remoting.Proxies.RealProxy,System.Runtime.Remoting.Messaging.IMessage,System.Exception&,System.Object[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * ___rp0, RuntimeObject* ___msg1, Exception_t ** ___exc2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___out_args3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
Exception_t * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___msg1;
V_0 = ((MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 *)CastclassClass((RuntimeObject*)L_0, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var));
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_1 = V_0;
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_2 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_2);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_3 = Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_4 = ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3(L_3, /*hidden argument*/NULL);
NullCheck(L_1);
MonoMethodMessage_set_LogicalCallContext_mC537D5CD5A24D556624216727BF10D33FB318A3F_inline(L_1, L_4, /*hidden argument*/NULL);
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(L_5, /*hidden argument*/NULL);
V_1 = L_6;
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_7 = ___rp0;
V_2 = (bool)((!(((RuntimeObject*)(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)IsInstClass((RuntimeObject*)L_7, RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_8 = ___out_args3;
*((RuntimeObject **)L_8) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)(RuntimeObject *)NULL);
V_3 = (RuntimeObject*)NULL;
int32_t L_9 = V_1;
if ((!(((uint32_t)L_9) == ((uint32_t)1))))
{
goto IL_0042;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_10 = V_0;
NullCheck(L_10);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_11 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_10, /*hidden argument*/NULL);
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_12 = V_0;
NullCheck(L_11);
AsyncResult_set_CallMessage_mAD854B93251BE37936DCE2234D88E9C00E7C2E8D_inline(L_11, L_12, /*hidden argument*/NULL);
}
IL_0042:
{
int32_t L_13 = V_1;
if ((!(((uint32_t)L_13) == ((uint32_t)2))))
{
goto IL_0057;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_14 = V_0;
NullCheck(L_14);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_15 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_14, /*hidden argument*/NULL);
NullCheck(L_15);
RuntimeObject* L_16 = AsyncResult_EndInvoke_mDF00A1546A469ECD9D9C93D4D01194F2BDCE2DCE(L_15, /*hidden argument*/NULL);
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_16, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var));
}
IL_0057:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_17 = V_0;
NullCheck(L_17);
MethodBase_t * L_18 = MonoMethodMessage_get_MethodBase_mD737855945B1C91D1E0C871472A53EAE73E349E8_inline(L_17, /*hidden argument*/NULL);
NullCheck(L_18);
bool L_19 = MethodBase_get_IsConstructor_mB9D1652FC7716077DAADB6F5F0F1BE6E7199413C(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_008d;
}
}
{
bool L_20 = V_2;
if (!L_20)
{
goto IL_0080;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_21 = ___rp0;
RuntimeObject* L_22 = ___msg1;
NullCheck(((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)IsInstClass((RuntimeObject*)L_21, RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var)));
RuntimeObject* L_23 = RemotingProxy_ActivateRemoteObject_m2E16792316E2D090112FC732D608E078A322624B(((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)IsInstClass((RuntimeObject*)L_21, RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_22, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_23, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var));
goto IL_008d;
}
IL_0080:
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_24 = ___rp0;
NullCheck(L_24);
Type_t * L_25 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(L_24, /*hidden argument*/NULL);
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * L_26 = (ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE *)il2cpp_codegen_object_new(ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE_il2cpp_TypeInfo_var);
ConstructionCall__ctor_m28DEE5DCDF1F838D6468F5EE0705962BD3C8A73C(L_26, L_25, /*hidden argument*/NULL);
___msg1 = L_26;
}
IL_008d:
{
RuntimeObject* L_27 = V_3;
if (L_27)
{
goto IL_0108;
}
}
{
V_4 = (bool)0;
}
IL_0093:
try
{ // begin try (depth: 1)
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_28 = ___rp0;
RuntimeObject* L_29 = ___msg1;
NullCheck(L_28);
RuntimeObject* L_30 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(5 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RealProxy::Invoke(System.Runtime.Remoting.Messaging.IMessage) */, L_28, L_29);
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_30, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var));
goto IL_00da;
} // 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_00a2;
throw e;
}
CATCH_00a2:
{ // begin catch(System.Exception)
{
V_5 = ((Exception_t *)__exception_local);
V_4 = (bool)1;
int32_t L_31 = V_1;
if ((!(((uint32_t)L_31) == ((uint32_t)1))))
{
goto IL_00d6;
}
}
IL_00ab:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_32 = V_0;
NullCheck(L_32);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_33 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_32, /*hidden argument*/NULL);
Exception_t * L_34 = V_5;
RuntimeObject* L_35 = ___msg1;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_36 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E(L_36, L_34, ((RuntimeObject*)IsInst((RuntimeObject*)L_35, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
NullCheck(L_33);
VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(18 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, L_33, L_36);
RuntimeObject* L_37 = ___msg1;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_38 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271(L_38, NULL, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, 0, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, ((RuntimeObject*)IsInst((RuntimeObject*)L_37, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_3 = L_38;
goto IL_00d8;
}
IL_00d6:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010_RuntimeMethod_var);
}
IL_00d8:
{
goto IL_00da;
}
} // end catch (depth: 1)
IL_00da:
{
bool L_39 = V_2;
if (L_39)
{
goto IL_0108;
}
}
{
int32_t L_40 = V_1;
if ((!(((uint32_t)L_40) == ((uint32_t)1))))
{
goto IL_0108;
}
}
{
bool L_41 = V_4;
if (L_41)
{
goto IL_0108;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_42 = V_0;
NullCheck(L_42);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_43 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_42, /*hidden argument*/NULL);
RuntimeObject* L_44 = V_3;
NullCheck(L_43);
RuntimeObject* L_45 = VirtFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(18 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.AsyncResult::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, L_43, L_44);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_46 = ___out_args3;
RuntimeObject* L_47 = V_3;
NullCheck(L_47);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_48 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_OutArgs() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_47);
*((RuntimeObject **)L_46) = (RuntimeObject *)L_48;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_46, (void*)(RuntimeObject *)L_48);
RuntimeObject* L_49 = V_3;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_50 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271(L_50, L_45, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, 0, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, ((RuntimeObject*)IsInst((RuntimeObject*)L_49, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_3 = L_50;
}
IL_0108:
{
RuntimeObject* L_51 = V_3;
NullCheck(L_51);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_52 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_51);
if (!L_52)
{
goto IL_0137;
}
}
{
RuntimeObject* L_53 = V_3;
NullCheck(L_53);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_54 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_53);
NullCheck(L_54);
bool L_55 = LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A(L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_0137;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_56 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_56);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_57 = Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72(L_56, /*hidden argument*/NULL);
NullCheck(L_57);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_58 = ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3(L_57, /*hidden argument*/NULL);
RuntimeObject* L_59 = V_3;
NullCheck(L_59);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_60 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_59);
NullCheck(L_58);
LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3(L_58, L_60, /*hidden argument*/NULL);
}
IL_0137:
{
Exception_t ** L_61 = ___exc2;
RuntimeObject* L_62 = V_3;
NullCheck(L_62);
Exception_t * L_63 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_62);
*((RuntimeObject **)L_61) = (RuntimeObject *)L_63;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_61, (void*)(RuntimeObject *)L_63);
Exception_t ** L_64 = ___exc2;
Exception_t * L_65 = *((Exception_t **)L_64);
if (!L_65)
{
goto IL_014e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_66 = ___out_args3;
*((RuntimeObject **)L_66) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_66, (void*)(RuntimeObject *)NULL);
Exception_t ** L_67 = ___exc2;
Exception_t * L_68 = *((Exception_t **)L_67);
NullCheck(L_68);
Exception_t * L_69 = Exception_FixRemotingException_m83F1D2256E715EF3075877ECA7B3E4AC44B23BD2(L_68, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010_RuntimeMethod_var);
}
IL_014e:
{
RuntimeObject* L_70 = V_3;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_70, IConstructionReturnMessage_tD78C6B12128C5D713E531737E203DDB7CC447B2B_il2cpp_TypeInfo_var)))
{
goto IL_0164;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_71 = ___out_args3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = *((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_71);
if (L_72)
{
goto IL_01aa;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_73 = ___out_args3;
RuntimeObject* L_74 = V_3;
NullCheck(L_74);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_75 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_OutArgs() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_74);
*((RuntimeObject **)L_73) = (RuntimeObject *)L_75;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_73, (void*)(RuntimeObject *)L_75);
goto IL_01aa;
}
IL_0164:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_76 = V_0;
NullCheck(L_76);
int32_t L_77 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(L_76, /*hidden argument*/NULL);
if ((((int32_t)L_77) == ((int32_t)1)))
{
goto IL_01aa;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_78 = V_0;
NullCheck(L_78);
int32_t L_79 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(L_78, /*hidden argument*/NULL);
if (L_79)
{
goto IL_0180;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_80 = ___out_args3;
RuntimeObject* L_81 = V_3;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_82 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_83 = RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA(L_81, L_82, /*hidden argument*/NULL);
*((RuntimeObject **)L_80) = (RuntimeObject *)L_83;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_80, (void*)(RuntimeObject *)L_83);
goto IL_01aa;
}
IL_0180:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_84 = V_0;
NullCheck(L_84);
int32_t L_85 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(L_84, /*hidden argument*/NULL);
if ((!(((uint32_t)L_85) == ((uint32_t)2))))
{
goto IL_019e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_86 = ___out_args3;
RuntimeObject* L_87 = V_3;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_88 = V_0;
NullCheck(L_88);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_89 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_88, /*hidden argument*/NULL);
NullCheck(L_89);
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_90 = AsyncResult_get_CallMessage_m2FD4E7BE9C85D209372C98075BFA603C2CCE577C_inline(L_89, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_91 = RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA(L_87, L_90, /*hidden argument*/NULL);
*((RuntimeObject **)L_86) = (RuntimeObject *)L_91;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_86, (void*)(RuntimeObject *)L_91);
goto IL_01aa;
}
IL_019e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_92 = ___out_args3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_93 = *((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)L_92);
if (L_93)
{
goto IL_01aa;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** L_94 = ___out_args3;
RuntimeObject* L_95 = V_3;
NullCheck(L_95);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_96 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_OutArgs() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_95);
*((RuntimeObject **)L_94) = (RuntimeObject *)L_96;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_94, (void*)(RuntimeObject *)L_96);
}
IL_01aa:
{
RuntimeObject* L_97 = V_3;
NullCheck(L_97);
RuntimeObject * L_98 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_97);
return L_98;
}
}
// System.Object System.Runtime.Remoting.Proxies.RealProxy::InternalGetTransparentProxy(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RealProxy_InternalGetTransparentProxy_m16E1C401ABEE3EF701A5E1CA3BFB5C6F829E3B06 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, String_t* ___className0, const RuntimeMethod* method)
{
typedef RuntimeObject * (*RealProxy_InternalGetTransparentProxy_m16E1C401ABEE3EF701A5E1CA3BFB5C6F829E3B06_ftn) (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *, String_t*);
using namespace il2cpp::icalls;
return ((RealProxy_InternalGetTransparentProxy_m16E1C401ABEE3EF701A5E1CA3BFB5C6F829E3B06_ftn)mscorlib::System::Runtime::Remoting::Proxies::RealProxy::InternalGetTransparentProxy) (__this, ___className0);
}
// System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RealProxy_GetTransparentProxy_mFC101729E8F35D8FDEF511B621A47E2094E1E6F3 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_GetTransparentProxy_mFC101729E8F35D8FDEF511B621A47E2094E1E6F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
RuntimeObject * L_0 = __this->get__objTP_6();
if (L_0)
{
goto IL_005a;
}
}
{
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)__this, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_1;
if (!L_1)
{
goto IL_0041;
}
}
{
RuntimeObject* L_2 = V_1;
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.IRemotingTypeInfo::get_TypeName() */, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var, L_2);
V_0 = L_3;
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_0033;
}
}
{
String_t* L_5 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_7);
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_5, L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_004d;
}
}
IL_0033:
{
Type_t * L_10 = __this->get_class_to_proxy_0();
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_10);
V_0 = L_11;
goto IL_004d;
}
IL_0041:
{
Type_t * L_12 = __this->get_class_to_proxy_0();
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_12);
V_0 = L_13;
}
IL_004d:
{
String_t* L_14 = V_0;
RuntimeObject * L_15 = VirtFuncInvoker1< RuntimeObject *, String_t* >::Invoke(6 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::InternalGetTransparentProxy(System.String) */, __this, L_14);
__this->set__objTP_6(L_15);
}
IL_005a:
{
RuntimeObject * L_16 = __this->get__objTP_6();
return L_16;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::AttachServer(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy_AttachServer_mC9D2A70E80B2050BD2653E7247B05E673A0DD6CF (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___s0, const RuntimeMethod* method)
{
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___s0;
__this->set__server_2(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RealProxy::SetTargetDomain(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RealProxy_SetTargetDomain_mB7310C47D68D6C382A90B1C1872A6C1ECC0165D6 (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, int32_t ___domainId0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___domainId0;
__this->set__targetDomainId_3(L_0);
return;
}
}
// System.Object System.Runtime.Remoting.Proxies.RealProxy::GetAppDomainTarget()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RealProxy_GetAppDomainTarget_m844FCA2DDE2B8FE0B93D0AC182C692E3E610FD2C (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_GetAppDomainTarget_m844FCA2DDE2B8FE0B93D0AC182C692E3E610FD2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * V_0 = NULL;
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = __this->get__server_2();
if (L_0)
{
goto IL_0043;
}
}
{
String_t* L_1 = __this->get__targetUri_4();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980(L_1, /*hidden argument*/NULL);
V_0 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)IsInstClass((RuntimeObject*)L_2, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_3 = V_0;
if (L_3)
{
goto IL_0037;
}
}
{
String_t* L_4 = __this->get__targetUri_4();
String_t* L_5 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralE158E5C88DB7AB83A15963EA2A8C50582C9A7236, L_4, _stringLiteral76A6AB37C34BE2069368C556BD900065D9AE36FC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_6 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, RealProxy_GetAppDomainTarget_m844FCA2DDE2B8FE0B93D0AC182C692E3E610FD2C_RuntimeMethod_var);
}
IL_0037:
{
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_7 = V_0;
NullCheck(L_7);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_8 = ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline(L_7, /*hidden argument*/NULL);
__this->set__server_2(L_8);
}
IL_0043:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_9 = __this->get__server_2();
return L_9;
}
}
// System.Object[] System.Runtime.Remoting.Proxies.RealProxy::ProcessResponse(System.Runtime.Remoting.Messaging.IMethodReturnMessage,System.Runtime.Remoting.Messaging.MonoMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA (RuntimeObject* ___mrm0, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___call1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodInfo_t * V_0 = NULL;
int32_t V_1 = 0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL;
int32_t V_3 = 0;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_4 = NULL;
int32_t V_5 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * V_6 = NULL;
RuntimeObject * V_7 = NULL;
RuntimeObject * V_8 = NULL;
RuntimeObject * V_9 = NULL;
RuntimeObject * G_B10_0 = NULL;
RuntimeObject * G_B18_0 = NULL;
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_0 = ___call1;
NullCheck(L_0);
MethodBase_t * L_1 = MonoMethodMessage_get_MethodBase_mD737855945B1C91D1E0C871472A53EAE73E349E8_inline(L_0, /*hidden argument*/NULL);
V_0 = ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_1, MethodInfo_t_il2cpp_TypeInfo_var));
RuntimeObject* L_2 = ___mrm0;
NullCheck(L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_2);
if (!L_3)
{
goto IL_0032;
}
}
{
MethodInfo_t * L_4 = V_0;
NullCheck(L_4);
Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(39 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_4);
RuntimeObject* L_6 = ___mrm0;
NullCheck(L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_tF73EC49214910CFE7305EF5891608B3556D273BF_il2cpp_TypeInfo_var, L_6);
NullCheck(L_5);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(108 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_5, L_7);
if (L_8)
{
goto IL_0032;
}
}
{
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_9 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_9, _stringLiteral3000CCA461FD33CBF12893CAB789D35607E93370, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_RuntimeMethod_var);
}
IL_0032:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_10 = ___call1;
NullCheck(L_10);
bool L_11 = MonoMethodMessage_NeedsOutProcessing_m91A820AC440989C58838EF714F839047DFE42012(L_10, (int32_t*)(&V_1), /*hidden argument*/NULL);
if (!L_11)
{
goto IL_015b;
}
}
{
MethodInfo_t * L_12 = V_0;
NullCheck(L_12);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_13 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_12);
int32_t L_14 = V_1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_14);
V_2 = L_15;
V_3 = 0;
V_4 = L_13;
V_5 = 0;
goto IL_014e;
}
IL_0058:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_16 = V_4;
int32_t L_17 = V_5;
NullCheck(L_16);
int32_t L_18 = L_17;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
V_6 = L_19;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_20 = V_6;
NullCheck(L_20);
bool L_21 = ParameterInfo_get_IsOut_mBD413F046E276BBF88D653EA7A261B221420A464(L_20, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_00db;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_22 = V_6;
NullCheck(L_22);
Type_t * L_23 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_22);
NullCheck(L_23);
bool L_24 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_23, /*hidden argument*/NULL);
if (L_24)
{
goto IL_00db;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_25 = V_6;
NullCheck(L_25);
int32_t L_26 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_25);
RuntimeObject* L_27 = ___mrm0;
NullCheck(L_27);
int32_t L_28 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Runtime.Remoting.Messaging.IMethodMessage::get_ArgCount() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_27);
if ((((int32_t)L_26) < ((int32_t)L_28)))
{
goto IL_0088;
}
}
{
G_B10_0 = NULL;
goto IL_0095;
}
IL_0088:
{
RuntimeObject* L_29 = ___mrm0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_30 = V_6;
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_30);
NullCheck(L_29);
RuntimeObject * L_32 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(8 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::GetArg(System.Int32) */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_29, L_31);
G_B10_0 = L_32;
}
IL_0095:
{
V_7 = G_B10_0;
RuntimeObject * L_33 = V_7;
if (!L_33)
{
goto IL_0148;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_34 = ___call1;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_35 = V_6;
NullCheck(L_35);
int32_t L_36 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_35);
NullCheck(L_34);
RuntimeObject * L_37 = MonoMethodMessage_GetArg_m529CCF8B626A5886D79B001AB600BCB09FBE410F(L_34, L_36, /*hidden argument*/NULL);
V_8 = L_37;
RuntimeObject * L_38 = V_8;
if (L_38)
{
goto IL_00cd;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_39 = V_6;
NullCheck(L_39);
String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_39);
String_t* L_41 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralB92D84A8F27E0C7C4D3CCA2349C778C50AE7F4E9, L_40, _stringLiteralBB589D0621E5472F470FA3425A234C74B1E202E8, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_42 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_42, L_41, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_RuntimeMethod_var);
}
IL_00cd:
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_43 = V_6;
RuntimeObject * L_44 = V_8;
RuntimeObject * L_45 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_UpdateOutArgObject_m43E068A1FAB184AFEF32C91629393EC6556939D1(L_43, L_44, L_45, /*hidden argument*/NULL);
goto IL_0148;
}
IL_00db:
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_46 = V_6;
NullCheck(L_46);
Type_t * L_47 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_46);
NullCheck(L_47);
bool L_48 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_47, /*hidden argument*/NULL);
if (!L_48)
{
goto IL_0148;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_49 = V_6;
NullCheck(L_49);
int32_t L_50 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_49);
RuntimeObject* L_51 = ___mrm0;
NullCheck(L_51);
int32_t L_52 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Runtime.Remoting.Messaging.IMethodMessage::get_ArgCount() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_51);
if ((((int32_t)L_50) < ((int32_t)L_52)))
{
goto IL_00fb;
}
}
{
G_B18_0 = NULL;
goto IL_0108;
}
IL_00fb:
{
RuntimeObject* L_53 = ___mrm0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_54 = V_6;
NullCheck(L_54);
int32_t L_55 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_54);
NullCheck(L_53);
RuntimeObject * L_56 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(8 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::GetArg(System.Int32) */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_53, L_55);
G_B18_0 = L_56;
}
IL_0108:
{
V_9 = G_B18_0;
RuntimeObject * L_57 = V_9;
if (!L_57)
{
goto IL_013f;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_58 = V_6;
NullCheck(L_58);
Type_t * L_59 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_58);
NullCheck(L_59);
Type_t * L_60 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_59);
RuntimeObject * L_61 = V_9;
NullCheck(L_60);
bool L_62 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(108 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_60, L_61);
if (L_62)
{
goto IL_013f;
}
}
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_63 = V_6;
NullCheck(L_63);
String_t* L_64 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, L_63);
String_t* L_65 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral07DFCDB678FEE21C701D5C01F0E1535F861A0DC8, L_64, _stringLiteral3C694A0345C25A74B559228DDAE03172FB45D08C, /*hidden argument*/NULL);
InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_66 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_66, L_65, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_66, RealProxy_ProcessResponse_mE565155A76FDBEDB32117BECF52AF9577FB0B1AA_RuntimeMethod_var);
}
IL_013f:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_67 = V_2;
int32_t L_68 = V_3;
int32_t L_69 = L_68;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1));
RuntimeObject * L_70 = V_9;
NullCheck(L_67);
ArrayElementTypeCheck (L_67, L_70);
(L_67)->SetAt(static_cast<il2cpp_array_size_t>(L_69), (RuntimeObject *)L_70);
}
IL_0148:
{
int32_t L_71 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
}
IL_014e:
{
int32_t L_72 = V_5;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_73 = V_4;
NullCheck(L_73);
if ((((int32_t)L_72) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_73)->max_length)))))))
{
goto IL_0058;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_74 = V_2;
return L_74;
}
IL_015b:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_75 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
return L_75;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::.ctor(System.Type,System.Runtime.Remoting.ClientIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy__ctor_m28C32984A3C53F1E73B93E4DBA94861A91BD2BD5 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Type_t * ___type0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * ___identity1, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_1 = ___identity1;
RealProxy__ctor_mD39E8A57474D97AB39E0C852DE4B3551B8D26BC6(__this, L_0, L_1, /*hidden argument*/NULL);
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_2 = ___identity1;
NullCheck(L_2);
RuntimeObject* L_3 = Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline(L_2, /*hidden argument*/NULL);
__this->set__sink_10(L_3);
__this->set__hasEnvoySink_11((bool)0);
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_4 = ___identity1;
NullCheck(L_4);
String_t* L_5 = ClientIdentity_get_TargetUri_mFD169AEDB67445C13B5ECD7A09F83DF586B078DF(L_4, /*hidden argument*/NULL);
((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->set__targetUri_4(L_5);
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::.ctor(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy__ctor_mED470C821B287EAA284FAA263E1C1A98A84001C7 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Type_t * ___type0, String_t* ___activationUrl1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes2, const RuntimeMethod* method)
{
{
Type_t * L_0 = ___type0;
RealProxy__ctor_mEB28493534C3DF9ECC276A2CBDEB55A985065A1E(__this, L_0, /*hidden argument*/NULL);
__this->set__hasEnvoySink_11((bool)0);
Type_t * L_1 = ___type0;
String_t* L_2 = ___activationUrl1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___activationAttributes2;
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * L_4 = ActivationServices_CreateConstructionCall_mD7B2C98949E01190FC05667B20AB34CCC19566EF(L_1, L_2, L_3, /*hidden argument*/NULL);
__this->set__ctorCall_12(L_4);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RemotingProxy::Invoke(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingProxy_Invoke_m1DA606293F972ECA34A27DB14FD6AE2056AEEB62 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, RuntimeObject* ___request0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_Invoke_m1DA606293F972ECA34A27DB14FD6AE2056AEEB62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * V_4 = NULL;
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * V_5 = NULL;
RuntimeObject* V_6 = NULL;
{
RuntimeObject* L_0 = ___request0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0056;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
MethodBase_t * L_3 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
IL2CPP_RUNTIME_CLASS_INIT(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
MethodInfo_t * L_4 = ((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields*)il2cpp_codegen_static_fields_for(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var))->get__cache_GetHashCodeMethod_9();
bool L_5 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_3, L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0035;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_6 = RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_6);
int32_t L_8 = L_7;
RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8);
RuntimeObject* L_10 = V_0;
MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * L_11 = (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 *)il2cpp_codegen_object_new(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907_il2cpp_TypeInfo_var);
MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4(L_11, L_9, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0035:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
MethodBase_t * L_13 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_12);
IL2CPP_RUNTIME_CLASS_INIT(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
MethodInfo_t * L_14 = ((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields*)il2cpp_codegen_static_fields_for(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var))->get__cache_GetTypeMethod_8();
bool L_15 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_13, L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_0056;
}
}
{
Type_t * L_16 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(__this, /*hidden argument*/NULL);
RuntimeObject* L_17 = V_0;
MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * L_18 = (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 *)il2cpp_codegen_object_new(MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907_il2cpp_TypeInfo_var);
MethodResponse__ctor_mA76B053EA8E7391A68621B313332491AD4B1F0B4(L_18, L_16, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0056:
{
RuntimeObject* L_19 = ___request0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var));
RuntimeObject* L_20 = V_1;
if (!L_20)
{
goto IL_0080;
}
}
{
RuntimeObject* L_21 = V_1;
NullCheck(L_21);
String_t* L_22 = InterfaceFuncInvoker0< String_t* >::Invoke(2 /* System.String System.Runtime.Remoting.Messaging.IInternalMessage::get_Uri() */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, L_21);
if (L_22)
{
goto IL_0074;
}
}
{
RuntimeObject* L_23 = V_1;
String_t* L_24 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__targetUri_4();
NullCheck(L_23);
InterfaceActionInvoker1< String_t* >::Invoke(3 /* System.Void System.Runtime.Remoting.Messaging.IInternalMessage::set_Uri(System.String) */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, L_23, L_24);
}
IL_0074:
{
RuntimeObject* L_25 = V_1;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_26 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_25);
InterfaceActionInvoker1< Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * >::Invoke(1 /* System.Void System.Runtime.Remoting.Messaging.IInternalMessage::set_TargetIdentity(System.Runtime.Remoting.Identity) */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, L_25, L_26);
}
IL_0080:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_27 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
RuntimeObject* L_28 = ___request0;
NullCheck(L_27);
Identity_NotifyClientDynamicSinks_mA8E001AFED507D772A749CBD00679FA8F4AEC590(L_27, (bool)1, L_28, (bool)1, (bool)0, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_29 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_29);
bool L_30 = Context_get_HasExitSinks_m4F058AE201A183546F6A26122345BE7657EB43A1(L_29, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00b0;
}
}
{
bool L_31 = __this->get__hasEnvoySink_11();
if (L_31)
{
goto IL_00b0;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_32 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
NullCheck(L_32);
RuntimeObject* L_33 = Context_GetClientContextSinkChain_m9BDB3F8E33D480EC02CF70EC28AB9B3B61BD3051(L_32, /*hidden argument*/NULL);
V_3 = L_33;
goto IL_00b7;
}
IL_00b0:
{
RuntimeObject* L_34 = __this->get__sink_10();
V_3 = L_34;
}
IL_00b7:
{
RuntimeObject* L_35 = ___request0;
V_4 = ((MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 *)IsInstClass((RuntimeObject*)L_35, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var));
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_36 = V_4;
if (!L_36)
{
goto IL_00cc;
}
}
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_37 = V_4;
NullCheck(L_37);
int32_t L_38 = MonoMethodMessage_get_CallType_m8BDA4E1BD767C1316FE4699408F1A87E4729A465(L_37, /*hidden argument*/NULL);
if (L_38)
{
goto IL_00d6;
}
}
IL_00cc:
{
RuntimeObject* L_39 = V_3;
RuntimeObject* L_40 = ___request0;
NullCheck(L_39);
RuntimeObject* L_41 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_39, L_40);
V_2 = L_41;
goto IL_0108;
}
IL_00d6:
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_42 = V_4;
NullCheck(L_42);
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_43 = MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline(L_42, /*hidden argument*/NULL);
V_5 = L_43;
RuntimeObject* L_44 = V_3;
RuntimeObject* L_45 = ___request0;
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_46 = V_5;
NullCheck(L_44);
RuntimeObject* L_47 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_tB1CED1C3E8A2782C843D48468DB443B7940FC76C_il2cpp_TypeInfo_var, L_44, L_45, L_46);
V_6 = L_47;
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_48 = V_5;
if (!L_48)
{
goto IL_00f7;
}
}
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_49 = V_5;
RuntimeObject* L_50 = V_6;
NullCheck(L_49);
VirtActionInvoker1< RuntimeObject* >::Invoke(17 /* System.Void System.Runtime.Remoting.Messaging.AsyncResult::SetMessageCtrl(System.Runtime.Remoting.Messaging.IMessageCtrl) */, L_49, L_50);
}
IL_00f7:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_51 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)0);
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_52 = V_4;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_53 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271(L_53, NULL, L_51, 0, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, L_52, /*hidden argument*/NULL);
V_2 = L_53;
}
IL_0108:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_54 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
RuntimeObject* L_55 = ___request0;
NullCheck(L_54);
Identity_NotifyClientDynamicSinks_mA8E001AFED507D772A749CBD00679FA8F4AEC590(L_54, (bool)0, L_55, (bool)1, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_56 = V_2;
return L_56;
}
}
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::AttachIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy_AttachIdentity_m4FBF47621ACE40979F9EC9B769F6629D3FC69DB7 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___identity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_AttachIdentity_m4FBF47621ACE40979F9EC9B769F6629D3FC69DB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * V_0 = NULL;
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ___identity0;
((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->set__objectIdentity_5(L_0);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = ___identity0;
if (!((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)IsInstClass((RuntimeObject*)L_1, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var)))
{
goto IL_003f;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = ___identity0;
V_0 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)CastclassClass((RuntimeObject*)L_2, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_3 = V_0;
NullCheck(L_3);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_4 = ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline(L_3, /*hidden argument*/NULL);
((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->set__targetContext_1(L_4);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_5 = V_0;
NullCheck(L_5);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_6 = ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline(L_5, /*hidden argument*/NULL);
RealProxy_AttachServer_mC9D2A70E80B2050BD2653E7247B05E673A0DD6CF_inline(__this, L_6, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_7 = V_0;
RuntimeObject * L_8 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, __this);
NullCheck(L_7);
ClientActivatedIdentity_SetClientProxy_m19D6E3E55E17496B9810A34B5CAAF37B0DD575AD_inline(L_7, ((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)CastclassClass((RuntimeObject*)L_8, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_003f:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_9 = ___identity0;
if (!((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)IsInstClass((RuntimeObject*)L_9, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)))
{
goto IL_0070;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_10 = ___identity0;
RuntimeObject * L_11 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, __this);
NullCheck(((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)CastclassClass((RuntimeObject*)L_10, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)));
ClientIdentity_set_ClientProxy_m5FFB0857E02412C0C7AE4EBB04B1A93DB9DEF477(((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)CastclassClass((RuntimeObject*)L_10, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)), ((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)CastclassClass((RuntimeObject*)L_11, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_12 = ___identity0;
NullCheck(((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)CastclassClass((RuntimeObject*)L_12, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)));
String_t* L_13 = ClientIdentity_get_TargetUri_mFD169AEDB67445C13B5ECD7A09F83DF586B078DF(((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)CastclassClass((RuntimeObject*)L_12, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->set__targetUri_4(L_13);
goto IL_007c;
}
IL_0070:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_14 = ___identity0;
NullCheck(L_14);
String_t* L_15 = Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline(L_14, /*hidden argument*/NULL);
((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->set__targetUri_4(L_15);
}
IL_007c:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_16 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_16);
RuntimeObject* L_17 = Identity_get_EnvoySink_m3C9ABB6C826A976FB6B2CD7DC4CEB343AD284D84_inline(L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_00a3;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_18 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_18);
RuntimeObject* L_19 = Identity_get_EnvoySink_m3C9ABB6C826A976FB6B2CD7DC4CEB343AD284D84_inline(L_18, /*hidden argument*/NULL);
__this->set__sink_10(L_19);
__this->set__hasEnvoySink_11((bool)1);
goto IL_00b4;
}
IL_00a3:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_20 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_20);
RuntimeObject* L_21 = Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline(L_20, /*hidden argument*/NULL);
__this->set__sink_10(L_21);
}
IL_00b4:
{
__this->set__ctorCall_12((ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE *)NULL);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Proxies.RemotingProxy::ActivateRemoteObject(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingProxy_ActivateRemoteObject_m2E16792316E2D090112FC732D608E078A322624B (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, RuntimeObject* ___request0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_ActivateRemoteObject_m2E16792316E2D090112FC732D608E078A322624B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * L_0 = __this->get__ctorCall_12();
if (L_0)
{
goto IL_0016;
}
}
{
RuntimeObject* L_1 = ___request0;
ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 * L_2 = (ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2 *)il2cpp_codegen_object_new(ConstructionResponse_t772CA297A73A84339329D0FCD37FCDF257A0BAA2_il2cpp_TypeInfo_var);
ConstructionResponse__ctor_mEC3264294B069F837780553769DDFD82E612DFB3(L_2, __this, (LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)NULL, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IMethodCallMessage_t9A3B0B9D1DCB71D44BB799FD5CA1100C4824C386_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
IL_0016:
{
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * L_3 = __this->get__ctorCall_12();
RuntimeObject* L_4 = ___request0;
NullCheck(L_3);
MethodCall_CopyFrom_mBDC7054B8D0E6BF7049D1402D4A96132EAC9B07B(L_3, L_4, /*hidden argument*/NULL);
ConstructionCall_t24A620B6D0B83BCF9CF434AD9A5532D0826950AE * L_5 = __this->get__ctorCall_12();
RuntimeObject* L_6 = ActivationServices_Activate_m16B879DA0C080FBAFF9486FBA01AB38310A64023(__this, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.String System.Runtime.Remoting.Proxies.RemotingProxy::get_TypeName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingProxy_get_TypeName_m5667DFE47ECD05586AF7C8D53E29CD7551AE81F2 (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_get_TypeName_m5667DFE47ECD05586AF7C8D53E29CD7551AE81F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * V_0 = NULL;
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
if (!((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)IsInstClass((RuntimeObject*)L_0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_1);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_2 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::CreateObjRef(System.Type) */, L_1, (Type_t *)NULL);
V_0 = L_2;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = V_0;
NullCheck(L_3);
RuntimeObject* L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::get_TypeInfo() */, L_3);
if (!L_4)
{
goto IL_002e;
}
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6 = VirtFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::get_TypeInfo() */, L_5);
NullCheck(L_6);
String_t* L_7 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.IRemotingTypeInfo::get_TypeName() */, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var, L_6);
return L_7;
}
IL_002e:
{
Type_t * L_8 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(__this, /*hidden argument*/NULL);
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_8);
return L_9;
}
}
// System.Boolean System.Runtime.Remoting.Proxies.RemotingProxy::CanCastTo(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingProxy_CanCastTo_m939CC0CD9AC2BDDB5ECC464339C6B94CD51DA19C (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, Type_t * ___fromType0, RuntimeObject * ___o1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_CanCastTo_m939CC0CD9AC2BDDB5ECC464339C6B94CD51DA19C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * V_0 = NULL;
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
if (!((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)IsInstClass((RuntimeObject*)L_0, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var)))
{
goto IL_0059;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
NullCheck(L_1);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_2 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::CreateObjRef(System.Type) */, L_1, (Type_t *)NULL);
V_0 = L_2;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = V_0;
NullCheck(L_3);
bool L_4 = ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0043;
}
}
{
Type_t * L_5 = ___fromType0;
NullCheck(L_5);
bool L_6 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0041;
}
}
{
Type_t * L_7 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(__this, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_8, /*hidden argument*/NULL);
bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_7, L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0043;
}
}
IL_0041:
{
return (bool)1;
}
IL_0043:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_11 = V_0;
NullCheck(L_11);
RuntimeObject* L_12 = VirtFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::get_TypeInfo() */, L_11);
if (!L_12)
{
goto IL_0059;
}
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_13 = V_0;
NullCheck(L_13);
RuntimeObject* L_14 = VirtFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::get_TypeInfo() */, L_13);
Type_t * L_15 = ___fromType0;
RuntimeObject * L_16 = ___o1;
NullCheck(L_14);
bool L_17 = InterfaceFuncInvoker2< bool, Type_t *, RuntimeObject * >::Invoke(1 /* System.Boolean System.Runtime.Remoting.IRemotingTypeInfo::CanCastTo(System.Type,System.Object) */, IRemotingTypeInfo_t510B5BDF4B8C7290A270755122F69C90EDE1B56C_il2cpp_TypeInfo_var, L_14, L_15, L_16);
return L_17;
}
IL_0059:
{
Type_t * L_18 = ___fromType0;
Type_t * L_19 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(__this, /*hidden argument*/NULL);
NullCheck(L_18);
bool L_20 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_18, L_19);
return L_20;
}
}
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy_Finalize_m3559298C1F35F42CC28F9DDF426F55EFCFDEDFBC (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy_Finalize_m3559298C1F35F42CC28F9DDF426F55EFCFDEDFBC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
if (!L_0)
{
goto IL_0020;
}
}
IL_0008:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
if (((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)IsInstClass((RuntimeObject*)L_1, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
IL_0015:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = ((RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *)__this)->get__objectIdentity_5();
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB(L_2, /*hidden argument*/NULL);
}
IL_0020:
{
IL2CPP_LEAVE(0x29, FINALLY_0022);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(34)
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0029:
{
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.RemotingProxy::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingProxy__cctor_m21A07EC3545FFB2A7C7E378FE06BCE524653755D (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingProxy__cctor_m21A07EC3545FFB2A7C7E378FE06BCE524653755D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
MethodInfo_t * L_2 = Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE(L_1, _stringLiteral8C906D9E0E2439238B3263E087AEE3D98FA86DEA, /*hidden argument*/NULL);
((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields*)il2cpp_codegen_static_fields_for(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var))->set__cache_GetTypeMethod_8(L_2);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_4);
MethodInfo_t * L_5 = Type_GetMethod_mB8368D44E32C205D279BA3BB9E6FE1D09D45A6DE(L_4, _stringLiteral9B47C032938820269CE9D24A72B299C9D2A50C6C, /*hidden argument*/NULL);
((RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_StaticFields*)il2cpp_codegen_static_fields_for(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var))->set__cache_GetHashCodeMethod_9(L_5);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Runtime.Remoting.Proxies.TransparentProxy
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_pinvoke(const TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000& unmarshaled, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_pinvoke& marshaled)
{
Exception_t* ____rp_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_rp' of type 'TransparentProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____rp_0Exception, NULL);
}
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_pinvoke_back(const TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_pinvoke& marshaled, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000& unmarshaled)
{
Exception_t* ____rp_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_rp' of type 'TransparentProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____rp_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Proxies.TransparentProxy
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_pinvoke_cleanup(TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Runtime.Remoting.Proxies.TransparentProxy
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_com(const TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000& unmarshaled, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_com& marshaled)
{
Exception_t* ____rp_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_rp' of type 'TransparentProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____rp_0Exception, NULL);
}
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_com_back(const TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_com& marshaled, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000& unmarshaled)
{
Exception_t* ____rp_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_rp' of type 'TransparentProxy': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(____rp_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Runtime.Remoting.Proxies.TransparentProxy
IL2CPP_EXTERN_C void TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshal_com_cleanup(TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_marshaled_com& marshaled)
{
}
// System.RuntimeType System.Runtime.Remoting.Proxies.TransparentProxy::GetProxyType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * TransparentProxy_GetProxyType_m850D00301C1E81BF83C9907795A13138425A52AA (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TransparentProxy_GetProxyType_m850D00301C1E81BF83C9907795A13138425A52AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 * L_0 = __this->get_address_of__class_1();
RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 L_1 = RuntimeRemoteClassHandle_get_ProxyClass_m849BC826C890A4A9BCB330D0E25BDD7907E7C685((RuntimeRemoteClassHandle_t972C2E7509316F0BC87754C8C761D89143CFBFD8 *)L_0, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_2 = RuntimeClassHandle_GetTypeHandle_m790F200983BE3D4F3B5979773C05801F9948219B((RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 *)(&V_0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_3 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_2, /*hidden argument*/NULL);
return ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var));
}
}
// System.Boolean System.Runtime.Remoting.Proxies.TransparentProxy::get_IsContextBoundObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransparentProxy_get_IsContextBoundObject_m91709F803207B39CFF47F08C022EFC3B6082344E (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method)
{
{
RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_0 = TransparentProxy_GetProxyType_m850D00301C1E81BF83C9907795A13138425A52AA(__this, /*hidden argument*/NULL);
NullCheck(L_0);
bool L_1 = Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Proxies.TransparentProxy::get_TargetContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * TransparentProxy_get_TargetContext_mBE0230BC1A4B94BEF05C25A71604C27DBFC6C610 (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method)
{
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_0 = __this->get__rp_0();
NullCheck(L_0);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = L_0->get__targetContext_1();
return L_1;
}
}
// System.Boolean System.Runtime.Remoting.Proxies.TransparentProxy::InCurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransparentProxy_InCurrentContext_m299CE6FA0687B1BCFE870067D6AF59827A51E52C (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, const RuntimeMethod* method)
{
{
bool L_0 = TransparentProxy_get_IsContextBoundObject_m91709F803207B39CFF47F08C022EFC3B6082344E(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_1 = TransparentProxy_get_TargetContext_mBE0230BC1A4B94BEF05C25A71604C27DBFC6C610(__this, /*hidden argument*/NULL);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Thread_get_CurrentContext_mD4C5716B63A293947733813B4D9256925CB90A44(/*hidden argument*/NULL);
return (bool)((((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_1) == ((RuntimeObject*)(Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)L_2))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
}
// System.Object System.Runtime.Remoting.Proxies.TransparentProxy::LoadRemoteFieldNew(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142 (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, intptr_t ___classPtr0, intptr_t ___fieldPtr1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D V_1;
memset((&V_1), 0, sizeof(V_1));
FieldInfo_t * V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_6 = NULL;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * V_7 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_8 = NULL;
Exception_t * V_9 = NULL;
RuntimeObject * V_10 = NULL;
MethodInfo_t * G_B4_0 = NULL;
MethodInfo_t * G_B3_0 = NULL;
{
intptr_t L_0 = ___classPtr0;
RuntimeClassHandle__ctor_m46F68F9440F32F597CF0EF63B99796481A0F2089((RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 *)(&V_0), (intptr_t)L_0, /*hidden argument*/NULL);
intptr_t L_1 = ___fieldPtr1;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2;
memset((&L_2), 0, sizeof(L_2));
RuntimeFieldHandle__ctor_m0F5089DB23BC2C4CB780462950561A777E9480F1_inline((&L_2), (intptr_t)L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = RuntimeClassHandle_GetTypeHandle_m790F200983BE3D4F3B5979773C05801F9948219B((RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_3;
FieldInfo_t * L_4 = FieldInfo_GetFieldFromHandle_m4559B3EB75D60B9573FF47FB04F91F4752F1EDD6(L_2, /*hidden argument*/NULL);
V_2 = L_4;
bool L_5 = TransparentProxy_InCurrentContext_m299CE6FA0687B1BCFE870067D6AF59827A51E52C(__this, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003a;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_6 = __this->get__rp_0();
NullCheck(L_6);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_7 = L_6->get__server_2();
V_10 = L_7;
FieldInfo_t * L_8 = V_2;
RuntimeObject * L_9 = V_10;
NullCheck(L_8);
RuntimeObject * L_10 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, L_8, L_9);
return L_10;
}
IL_003a:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_12);
V_3 = L_13;
FieldInfo_t * L_14 = V_2;
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14);
V_4 = L_15;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_16;
String_t* L_18 = V_3;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_18);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_17;
String_t* L_20 = V_4;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20);
V_5 = L_19;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
V_6 = L_21;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL);
NullCheck(L_23);
MethodInfo_t * L_24 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_23, _stringLiteralCBD006E28E8B11491E1DCC6DE6CFEC1DA02AFFFA, ((int32_t)36), /*hidden argument*/NULL);
MethodInfo_t * L_25 = L_24;
bool L_26 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_25, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
G_B3_0 = L_25;
if (!L_26)
{
G_B4_0 = L_25;
goto IL_0096;
}
}
{
MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * L_27 = (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 *)il2cpp_codegen_object_new(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var);
MissingMethodException__ctor_mEE8869A7C1042B1286DCD4D91DA67BF0D06E0452(L_27, _stringLiteralC696EB742C71623D86826F5A28C356CAE89DAB61, _stringLiteralCBD006E28E8B11491E1DCC6DE6CFEC1DA02AFFFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142_RuntimeMethod_var);
}
IL_0096:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = V_6;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_30 = (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 *)il2cpp_codegen_object_new(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var);
MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA(L_30, G_B4_0, L_28, L_29, /*hidden argument*/NULL);
V_7 = L_30;
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_31 = __this->get__rp_0();
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_32 = V_7;
RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010(L_31, L_32, (Exception_t **)(&V_9), (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_8), /*hidden argument*/NULL);
Exception_t * L_33 = V_9;
if (!L_33)
{
goto IL_00ba;
}
}
{
Exception_t * L_34 = V_9;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, TransparentProxy_LoadRemoteFieldNew_m4443C16ED3387D960D9C8757ADED4B3D8D24E142_RuntimeMethod_var);
}
IL_00ba:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = V_8;
NullCheck(L_35);
int32_t L_36 = 0;
RuntimeObject * L_37 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
return L_37;
}
}
// System.Void System.Runtime.Remoting.Proxies.TransparentProxy::StoreRemoteField(System.IntPtr,System.IntPtr,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901 (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __this, intptr_t ___classPtr0, intptr_t ___fieldPtr1, RuntimeObject * ___arg2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D V_1;
memset((&V_1), 0, sizeof(V_1));
FieldInfo_t * V_2 = NULL;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * V_6 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_7 = NULL;
Exception_t * V_8 = NULL;
RuntimeObject * V_9 = NULL;
MethodInfo_t * G_B4_0 = NULL;
MethodInfo_t * G_B3_0 = NULL;
{
intptr_t L_0 = ___classPtr0;
RuntimeClassHandle__ctor_m46F68F9440F32F597CF0EF63B99796481A0F2089((RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 *)(&V_0), (intptr_t)L_0, /*hidden argument*/NULL);
intptr_t L_1 = ___fieldPtr1;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2;
memset((&L_2), 0, sizeof(L_2));
RuntimeFieldHandle__ctor_m0F5089DB23BC2C4CB780462950561A777E9480F1_inline((&L_2), (intptr_t)L_1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = RuntimeClassHandle_GetTypeHandle_m790F200983BE3D4F3B5979773C05801F9948219B((RuntimeClassHandle_tC1F6E462273EB268F47536E8348486778C45A6D5 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_3;
FieldInfo_t * L_4 = FieldInfo_GetFieldFromHandle_m4559B3EB75D60B9573FF47FB04F91F4752F1EDD6(L_2, /*hidden argument*/NULL);
V_2 = L_4;
bool L_5 = TransparentProxy_InCurrentContext_m299CE6FA0687B1BCFE870067D6AF59827A51E52C(__this, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003b;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_6 = __this->get__rp_0();
NullCheck(L_6);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_7 = L_6->get__server_2();
V_9 = L_7;
FieldInfo_t * L_8 = V_2;
RuntimeObject * L_9 = V_9;
RuntimeObject * L_10 = ___arg2;
NullCheck(L_8);
FieldInfo_SetValue_m9E7A4FBA27F835B6C26CC09CF609333967150E41(L_8, L_9, L_10, /*hidden argument*/NULL);
return;
}
IL_003b:
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_13 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_12);
V_3 = L_13;
FieldInfo_t * L_14 = V_2;
NullCheck(L_14);
String_t* L_15 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_14);
V_4 = L_15;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_16;
String_t* L_18 = V_3;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_18);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_17;
String_t* L_20 = V_4;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, L_20);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_19;
RuntimeObject * L_22 = ___arg2;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_22);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_22);
V_5 = L_21;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_23 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_24 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_23, /*hidden argument*/NULL);
NullCheck(L_24);
MethodInfo_t * L_25 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_24, _stringLiteral52FCFAE6C8A919BB1C8FF1107EDCD54440FCDD8E, ((int32_t)36), /*hidden argument*/NULL);
MethodInfo_t * L_26 = L_25;
bool L_27 = MethodInfo_op_Equality_m1E51FB51169B9B8FB3120ED5F9B454785932C5D0(L_26, (MethodInfo_t *)NULL, /*hidden argument*/NULL);
G_B3_0 = L_26;
if (!L_27)
{
G_B4_0 = L_26;
goto IL_0093;
}
}
{
MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 * L_28 = (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 *)il2cpp_codegen_object_new(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var);
MissingMethodException__ctor_mEE8869A7C1042B1286DCD4D91DA67BF0D06E0452(L_28, _stringLiteralC696EB742C71623D86826F5A28C356CAE89DAB61, _stringLiteral52FCFAE6C8A919BB1C8FF1107EDCD54440FCDD8E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901_RuntimeMethod_var);
}
IL_0093:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = V_5;
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_30 = (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 *)il2cpp_codegen_object_new(MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234_il2cpp_TypeInfo_var);
MonoMethodMessage__ctor_mAA552B1DF7CE40B99BEAAC0F44A21FFC40BDF4DA(L_30, G_B4_0, L_29, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
V_6 = L_30;
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_31 = __this->get__rp_0();
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_32 = V_6;
RealProxy_PrivateInvoke_m2FC8A5F2726CFD29679DD6CBEDCB92D030ADF010(L_31, L_32, (Exception_t **)(&V_8), (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_7), /*hidden argument*/NULL);
Exception_t * L_33 = V_8;
if (!L_33)
{
goto IL_00b6;
}
}
{
Exception_t * L_34 = V_8;
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, TransparentProxy_StoreRemoteField_mAFBB7F4B6A649BDA112C282AF6298B8ECD6BE901_RuntimeMethod_var);
}
IL_00b6:
{
return;
}
}
// System.Void System.Runtime.Remoting.Proxies.TransparentProxy::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransparentProxy__ctor_mB7FE776F2127701B239224561EFAF7C2FB406720 (TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 * __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.String System.Runtime.Remoting.RemotingConfiguration::get_ApplicationName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_applicationName_1();
return L_0;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::set_ApplicationName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_set_ApplicationName_mB6A012DCEA8BEB2809D094CA743B1EF5A84E15B2 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_set_ApplicationName_mB6A012DCEA8BEB2809D094CA743B1EF5A84E15B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_applicationName_1(L_0);
return;
}
}
// System.String System.Runtime.Remoting.RemotingConfiguration::get_ProcessId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingConfiguration_get_ProcessId_m17A38791D8CC05637D22834EAFF75DE0D647486C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_get_ProcessId_m17A38791D8CC05637D22834EAFF75DE0D647486C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_processGuid_2();
if (L_0)
{
goto IL_0011;
}
}
{
String_t* L_1 = AppDomain_GetProcessGuid_mDAFFFAF5716D58A3C645D6033AD2F8FF95BE4315(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_processGuid_2(L_1);
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_processGuid_2();
return L_2;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::LoadDefaultDelayedChannels()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_LoadDefaultDelayedChannels_mD26748787BB8B5F5507F720A644698136DB091DF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_LoadDefaultDelayedChannels_mD26748787BB8B5F5507F720A644698136DB091DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * V_2 = NULL;
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * V_3 = NULL;
ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
bool L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_defaultDelayedConfigRead_4();
if (L_2)
{
goto IL_001e;
}
}
IL_0017:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
bool L_3 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_defaultConfigRead_3();
if (!L_3)
{
goto IL_0020;
}
}
IL_001e:
{
IL2CPP_LEAVE(0x60, FINALLY_0056);
}
IL_0020:
{
SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * L_4 = (SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 *)il2cpp_codegen_object_new(SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196_il2cpp_TypeInfo_var);
SmallXmlParser__ctor_m9FD7D5896F766B4F9ED74478616F09462523ABF2(L_4, /*hidden argument*/NULL);
V_2 = L_4;
String_t* L_5 = Environment_GetMachineConfigPath_m7EFF6DDC6233A66D43753D264714227F550A6C9C(/*hidden argument*/NULL);
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_6 = (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E *)il2cpp_codegen_object_new(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mE646A80660B17E91CEA1048DB5B6F0616C77EECD(L_6, L_5, /*hidden argument*/NULL);
V_3 = L_6;
}
IL_0031:
try
{ // begin try (depth: 2)
ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 * L_7 = (ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 *)il2cpp_codegen_object_new(ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376_il2cpp_TypeInfo_var);
ConfigHandler__ctor_m182C33AA3BB7C99E7F18B62109A3B6B0C1507B68(L_7, (bool)1, /*hidden argument*/NULL);
V_4 = L_7;
SmallXmlParser_t4FF09686422594EF19E2CA54CB877F9FCE5AF196 * L_8 = V_2;
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_9 = V_3;
ConfigHandler_t4F24B57CB7DF76F3059092E729BAAF25CC3EF376 * L_10 = V_4;
NullCheck(L_8);
SmallXmlParser_Parse_mBFFAA2DDD223DEE2A8E22E33C9CF986F06B84D5F(L_8, L_9, L_10, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x4E, FINALLY_0044);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0044;
}
FINALLY_0044:
{ // begin finally (depth: 2)
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_11 = V_3;
if (!L_11)
{
goto IL_004d;
}
}
IL_0047:
{
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * L_12 = V_3;
NullCheck(L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_12);
}
IL_004d:
{
IL2CPP_END_FINALLY(68)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(68)
{
IL2CPP_JUMP_TBL(0x4E, IL_004e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004e:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_defaultDelayedConfigRead_4((bool)1);
IL2CPP_LEAVE(0x60, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
{
bool L_13 = V_1;
if (!L_13)
{
goto IL_005f;
}
}
IL_0059:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_14, /*hidden argument*/NULL);
}
IL_005f:
{
IL2CPP_END_FINALLY(86)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x60, IL_0060)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0060:
{
return;
}
}
// System.Runtime.Remoting.ActivatedClientTypeEntry System.Runtime.Remoting.RemotingConfiguration::IsRemotelyActivatedClientType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * RemotingConfiguration_IsRemotelyActivatedClientType_m8027E7BE9FD0A4D99E411AB65FEE937C5C4B6818 (Type_t * ___svrType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_IsRemotelyActivatedClientType_m8027E7BE9FD0A4D99E411AB65FEE937C5C4B6818_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_activatedClientEntries_7();
Type_t * L_3 = ___svrType0;
NullCheck(L_2);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
V_2 = ((ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD *)IsInstClass((RuntimeObject*)L_4, ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD_il2cpp_TypeInfo_var));
IL2CPP_LEAVE(0x2D, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_002c;
}
}
IL_0026:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_END_FINALLY(35)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002d:
{
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_7 = V_2;
return L_7;
}
}
// System.Runtime.Remoting.WellKnownClientTypeEntry System.Runtime.Remoting.RemotingConfiguration::IsWellKnownClientType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * RemotingConfiguration_IsWellKnownClientType_mDE9E757BD0028D3C88FF2E22A8153F7F55ADB698 (Type_t * ___svrType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_IsWellKnownClientType_mDE9E757BD0028D3C88FF2E22A8153F7F55ADB698_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_wellKnownClientEntries_6();
Type_t * L_3 = ___svrType0;
NullCheck(L_2);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_3);
V_2 = ((WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 *)IsInstClass((RuntimeObject*)L_4, WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053_il2cpp_TypeInfo_var));
IL2CPP_LEAVE(0x2D, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_002c;
}
}
IL_0026:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_END_FINALLY(35)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002d:
{
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_7 = V_2;
return L_7;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterActivatedClientType(System.Runtime.Remoting.ActivatedClientTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419 (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * ___entry0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_wellKnownClientEntries_6();
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_3 = ___entry0;
NullCheck(L_3);
Type_t * L_4 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_2, L_4);
if (L_5)
{
goto IL_0034;
}
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_activatedClientEntries_7();
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_7 = ___entry0;
NullCheck(L_7);
Type_t * L_8 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_6, L_8);
if (!L_9)
{
goto IL_0054;
}
}
IL_0034:
{
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_10 = ___entry0;
NullCheck(L_10);
Type_t * L_11 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_11);
String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralD8079D9A09BDE9F565264C5213EE48C39514099E, L_12, _stringLiteralB1656D104EAE97A10AFBECED472E7D72B11C31CC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_14 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419_RuntimeMethod_var);
}
IL_0054:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_activatedClientEntries_7();
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_16 = ___entry0;
NullCheck(L_16);
Type_t * L_17 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_16, /*hidden argument*/NULL);
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_18 = ___entry0;
NullCheck(L_15);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_15, L_17, L_18);
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_19 = ___entry0;
NullCheck(L_19);
Type_t * L_20 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_19, /*hidden argument*/NULL);
ActivationServices_EnableProxyActivation_mB73834AA6794ABC779FE998B936A453602DEE853(L_20, (bool)1, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x7D, FINALLY_0073);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0073;
}
FINALLY_0073:
{ // begin finally (depth: 1)
{
bool L_21 = V_1;
if (!L_21)
{
goto IL_007c;
}
}
IL_0076:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_22 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_22, /*hidden argument*/NULL);
}
IL_007c:
{
IL2CPP_END_FINALLY(115)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(115)
{
IL2CPP_JUMP_TBL(0x7D, IL_007d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007d:
{
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterActivatedServiceType(System.Runtime.Remoting.ActivatedServiceTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterActivatedServiceType_mD8320F66EB153FFE3B7EDAEB0A986F51B78C46E5 (ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * ___entry0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterActivatedServiceType_mD8320F66EB153FFE3B7EDAEB0A986F51B78C46E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_activatedServiceEntries_9();
ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * L_3 = ___entry0;
NullCheck(L_3);
Type_t * L_4 = ActivatedServiceTypeEntry_get_ObjectType_mD7930FD39E47012C78199EACBDBF177AD2B2DA9C_inline(L_3, /*hidden argument*/NULL);
ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * L_5 = ___entry0;
NullCheck(L_2);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_2, L_4, L_5);
IL2CPP_LEAVE(0x2D, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
{
bool L_6 = V_1;
if (!L_6)
{
goto IL_002c;
}
}
IL_0026:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
}
IL_002c:
{
IL2CPP_END_FINALLY(35)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_002d:
{
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterWellKnownClientType(System.Runtime.Remoting.WellKnownClientTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9 (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * ___entry0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_wellKnownClientEntries_6();
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_3 = ___entry0;
NullCheck(L_3);
Type_t * L_4 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_2, L_4);
if (L_5)
{
goto IL_0034;
}
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_activatedClientEntries_7();
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_7 = ___entry0;
NullCheck(L_7);
Type_t * L_8 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_6, L_8);
if (!L_9)
{
goto IL_0054;
}
}
IL_0034:
{
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_10 = ___entry0;
NullCheck(L_10);
Type_t * L_11 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_11);
String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralD8079D9A09BDE9F565264C5213EE48C39514099E, L_12, _stringLiteralB1656D104EAE97A10AFBECED472E7D72B11C31CC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_14 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9_RuntimeMethod_var);
}
IL_0054:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_wellKnownClientEntries_6();
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_16 = ___entry0;
NullCheck(L_16);
Type_t * L_17 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_16, /*hidden argument*/NULL);
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_18 = ___entry0;
NullCheck(L_15);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_15, L_17, L_18);
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_19 = ___entry0;
NullCheck(L_19);
Type_t * L_20 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_19, /*hidden argument*/NULL);
ActivationServices_EnableProxyActivation_mB73834AA6794ABC779FE998B936A453602DEE853(L_20, (bool)1, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x7D, FINALLY_0073);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0073;
}
FINALLY_0073:
{ // begin finally (depth: 1)
{
bool L_21 = V_1;
if (!L_21)
{
goto IL_007c;
}
}
IL_0076:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_22 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_22, /*hidden argument*/NULL);
}
IL_007c:
{
IL2CPP_END_FINALLY(115)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(115)
{
IL2CPP_JUMP_TBL(0x7D, IL_007d)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_007d:
{
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterWellKnownServiceType(System.Runtime.Remoting.WellKnownServiceTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterWellKnownServiceType_m90D68C6F1968E3E71D9B99725F625FE545E8574E (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * ___entry0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterWellKnownServiceType_m90D68C6F1968E3E71D9B99725F625FE545E8574E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_wellKnownServiceEntries_8();
WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * L_3 = ___entry0;
NullCheck(L_3);
String_t* L_4 = WellKnownServiceTypeEntry_get_ObjectUri_m57AA90363CFBE85146EEE8BB6C92FEB574E3DF06_inline(L_3, /*hidden argument*/NULL);
WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * L_5 = ___entry0;
NullCheck(L_2);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_4, L_5);
WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * L_6 = ___entry0;
NullCheck(L_6);
Type_t * L_7 = WellKnownServiceTypeEntry_get_ObjectType_m66AB374A118C20B231AB450938D67776EF7D6EED_inline(L_6, /*hidden argument*/NULL);
WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * L_8 = ___entry0;
NullCheck(L_8);
String_t* L_9 = WellKnownServiceTypeEntry_get_ObjectUri_m57AA90363CFBE85146EEE8BB6C92FEB574E3DF06_inline(L_8, /*hidden argument*/NULL);
WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * L_10 = ___entry0;
NullCheck(L_10);
int32_t L_11 = WellKnownServiceTypeEntry_get_Mode_m2BF9E3CAB114FC05F1C871200E9F2BB6D88C4A71_inline(L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9(L_7, L_9, L_11, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x45, FINALLY_003b);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003b;
}
FINALLY_003b:
{ // begin finally (depth: 1)
{
bool L_12 = V_1;
if (!L_12)
{
goto IL_0044;
}
}
IL_003e:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_13, /*hidden argument*/NULL);
}
IL_0044:
{
IL2CPP_END_FINALLY(59)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(59)
{
IL2CPP_JUMP_TBL(0x45, IL_0045)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0045:
{
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterChannelTemplate(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterChannelTemplate_mAFCDAD3931F051AD8D6215909E862D74D24E1873 (ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * ___channel0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterChannelTemplate_mAFCDAD3931F051AD8D6215909E862D74D24E1873_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_1 = ___channel0;
NullCheck(L_1);
String_t* L_2 = L_1->get_Id_2();
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_3 = ___channel0;
NullCheck(L_0);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_0, L_2, L_3);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterClientProviderTemplate(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterClientProviderTemplate_m69774B53C65B34A316F72C4388E316A46E7B7BDE (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * ___prov0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterClientProviderTemplate_m69774B53C65B34A316F72C4388E316A46E7B7BDE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_clientProviderTemplates_11();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_1 = ___prov0;
NullCheck(L_1);
String_t* L_2 = L_1->get_Id_2();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_3 = ___prov0;
NullCheck(L_0);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_0, L_2, L_3);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterServerProviderTemplate(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterServerProviderTemplate_mFF5435B14741883C286858011EEE4DBF77E3780C (ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * ___prov0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterServerProviderTemplate_mFF5435B14741883C286858011EEE4DBF77E3780C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_serverProviderTemplates_12();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_1 = ___prov0;
NullCheck(L_1);
String_t* L_2 = L_1->get_Id_2();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_3 = ___prov0;
NullCheck(L_0);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_0, L_2, L_3);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterChannels(System.Collections.ArrayList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___channels0, bool ___onlyDelayed1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * V_1 = NULL;
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * V_2 = NULL;
RuntimeObject* V_3 = NULL;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * V_4 = NULL;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * V_5 = NULL;
RuntimeObject* V_6 = NULL;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * V_7 = NULL;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * V_8 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = ___channels0;
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_0 = L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_019b;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_2);
V_1 = ((ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D *)CastclassClass((RuntimeObject*)L_3, ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D_il2cpp_TypeInfo_var));
bool L_4 = ___onlyDelayed1;
if (!L_4)
{
goto IL_0030;
}
}
IL_001b:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_5 = V_1;
NullCheck(L_5);
String_t* L_6 = L_5->get_DelayLoadAsClientChannel_3();
bool L_7 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_6, _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB, /*hidden argument*/NULL);
if (L_7)
{
goto IL_019b;
}
}
IL_0030:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
bool L_8 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_defaultDelayedConfigRead_4();
if (!L_8)
{
goto IL_004c;
}
}
IL_0037:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_9 = V_1;
NullCheck(L_9);
String_t* L_10 = L_9->get_DelayLoadAsClientChannel_3();
bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteral5FFE533B830F08A0326348A9160AFAFC8ADA44DB, /*hidden argument*/NULL);
if (L_11)
{
goto IL_019b;
}
}
IL_004c:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_12 = V_1;
NullCheck(L_12);
String_t* L_13 = L_12->get_Ref_0();
if (!L_13)
{
goto IL_008f;
}
}
IL_0054:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_14 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_channelTemplates_10();
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_15 = V_1;
NullCheck(L_15);
String_t* L_16 = L_15->get_Ref_0();
NullCheck(L_14);
RuntimeObject * L_17 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_16);
V_2 = ((ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D *)CastclassClass((RuntimeObject*)L_17, ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D_il2cpp_TypeInfo_var));
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_18 = V_2;
if (L_18)
{
goto IL_0088;
}
}
IL_006d:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_19 = V_1;
NullCheck(L_19);
String_t* L_20 = L_19->get_Ref_0();
String_t* L_21 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralB61CC23CD69A89A7F8E6D2B987A1B8AFF5827C63, L_20, _stringLiteral76A6AB37C34BE2069368C556BD900065D9AE36FC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_22 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_22, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_RuntimeMethod_var);
}
IL_0088:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_23 = V_1;
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_24 = V_2;
NullCheck(L_23);
ChannelData_CopyFrom_m0FE56D30FD896CF3272D35EC62A1704A2AAD07FA(L_23, L_24, /*hidden argument*/NULL);
}
IL_008f:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_25 = V_1;
NullCheck(L_25);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_26 = ChannelData_get_ServerProviders_m07638833DD2E4A585ED187459F1674F12A86B095(L_25, /*hidden argument*/NULL);
NullCheck(L_26);
RuntimeObject* L_27 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_26);
V_3 = L_27;
}
IL_009b:
try
{ // begin try (depth: 2)
{
goto IL_00f4;
}
IL_009d:
{
RuntimeObject* L_28 = V_3;
NullCheck(L_28);
RuntimeObject * L_29 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_28);
V_4 = ((ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F *)CastclassClass((RuntimeObject*)L_29, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F_il2cpp_TypeInfo_var));
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_30 = V_4;
NullCheck(L_30);
String_t* L_31 = L_30->get_Ref_0();
if (!L_31)
{
goto IL_00f4;
}
}
IL_00b3:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_32 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_serverProviderTemplates_12();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_33 = V_4;
NullCheck(L_33);
String_t* L_34 = L_33->get_Ref_0();
NullCheck(L_32);
RuntimeObject * L_35 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_32, L_34);
V_5 = ((ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F *)CastclassClass((RuntimeObject*)L_35, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F_il2cpp_TypeInfo_var));
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_36 = V_5;
if (L_36)
{
goto IL_00eb;
}
}
IL_00cf:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_37 = V_4;
NullCheck(L_37);
String_t* L_38 = L_37->get_Ref_0();
String_t* L_39 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral467B258EFCB6710990F44818F8EF6EC13ADC3426, L_38, _stringLiteral76A6AB37C34BE2069368C556BD900065D9AE36FC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_40 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_40, L_39, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_RuntimeMethod_var);
}
IL_00eb:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_41 = V_4;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_42 = V_5;
NullCheck(L_41);
ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2(L_41, L_42, /*hidden argument*/NULL);
}
IL_00f4:
{
RuntimeObject* L_43 = V_3;
NullCheck(L_43);
bool L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_43);
if (L_44)
{
goto IL_009d;
}
}
IL_00fc:
{
IL2CPP_LEAVE(0x112, FINALLY_00fe);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00fe;
}
FINALLY_00fe:
{ // begin finally (depth: 2)
{
RuntimeObject* L_45 = V_3;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_45, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_46 = V_6;
if (!L_46)
{
goto IL_0111;
}
}
IL_010a:
{
RuntimeObject* L_47 = V_6;
NullCheck(L_47);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_47);
}
IL_0111:
{
IL2CPP_END_FINALLY(254)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(254)
{
IL2CPP_JUMP_TBL(0x112, IL_0112)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0112:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_48 = V_1;
NullCheck(L_48);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_49 = ChannelData_get_ClientProviders_m7B4372E5AE3B6B3A1CE89C1B7AD15B3039457DCF(L_48, /*hidden argument*/NULL);
NullCheck(L_49);
RuntimeObject* L_50 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_49);
V_3 = L_50;
}
IL_011e:
try
{ // begin try (depth: 2)
{
goto IL_0177;
}
IL_0120:
{
RuntimeObject* L_51 = V_3;
NullCheck(L_51);
RuntimeObject * L_52 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_51);
V_7 = ((ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F *)CastclassClass((RuntimeObject*)L_52, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F_il2cpp_TypeInfo_var));
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_53 = V_7;
NullCheck(L_53);
String_t* L_54 = L_53->get_Ref_0();
if (!L_54)
{
goto IL_0177;
}
}
IL_0136:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_55 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_clientProviderTemplates_11();
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_56 = V_7;
NullCheck(L_56);
String_t* L_57 = L_56->get_Ref_0();
NullCheck(L_55);
RuntimeObject * L_58 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_55, L_57);
V_8 = ((ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F *)CastclassClass((RuntimeObject*)L_58, ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F_il2cpp_TypeInfo_var));
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_59 = V_8;
if (L_59)
{
goto IL_016e;
}
}
IL_0152:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_60 = V_7;
NullCheck(L_60);
String_t* L_61 = L_60->get_Ref_0();
String_t* L_62 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral467B258EFCB6710990F44818F8EF6EC13ADC3426, L_61, _stringLiteral76A6AB37C34BE2069368C556BD900065D9AE36FC, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_63 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_63, L_62, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, RemotingConfiguration_RegisterChannels_m85386BD334B23F3C7AAC20039594CBBC33E63740_RuntimeMethod_var);
}
IL_016e:
{
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_64 = V_7;
ProviderData_t8717089A19620BAEE28EEF0A9C840EC94A47C48F * L_65 = V_8;
NullCheck(L_64);
ProviderData_CopyFrom_mB6BCFDB9437B648446450672BAC92763DC8825A2(L_64, L_65, /*hidden argument*/NULL);
}
IL_0177:
{
RuntimeObject* L_66 = V_3;
NullCheck(L_66);
bool L_67 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_66);
if (L_67)
{
goto IL_0120;
}
}
IL_017f:
{
IL2CPP_LEAVE(0x195, FINALLY_0181);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0181;
}
FINALLY_0181:
{ // begin finally (depth: 2)
{
RuntimeObject* L_68 = V_3;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_68, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_69 = V_6;
if (!L_69)
{
goto IL_0194;
}
}
IL_018d:
{
RuntimeObject* L_70 = V_6;
NullCheck(L_70);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_70);
}
IL_0194:
{
IL2CPP_END_FINALLY(385)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(385)
{
IL2CPP_JUMP_TBL(0x195, IL_0195)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0195:
{
ChannelData_tEEDEC3220C88FF71F54EED08B1A05E6148C0AF5D * L_71 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
ChannelServices_RegisterChannelConfig_mF580859D60B70A2AB298063C6176DC6F52EF3001(L_71, /*hidden argument*/NULL);
}
IL_019b:
{
RuntimeObject* L_72 = V_0;
NullCheck(L_72);
bool L_73 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_72);
if (L_73)
{
goto IL_000c;
}
}
IL_01a6:
{
IL2CPP_LEAVE(0x1BC, FINALLY_01a8);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01a8;
}
FINALLY_01a8:
{ // begin finally (depth: 1)
{
RuntimeObject* L_74 = V_0;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_74, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_75 = V_6;
if (!L_75)
{
goto IL_01bb;
}
}
IL_01b4:
{
RuntimeObject* L_76 = V_6;
NullCheck(L_76);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_76);
}
IL_01bb:
{
IL2CPP_END_FINALLY(424)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(424)
{
IL2CPP_JUMP_TBL(0x1BC, IL_01bc)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01bc:
{
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterTypes(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterTypes_mE00BA23B4C0C22D6485851E5EB9383A1737B1672 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___types0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_RegisterTypes_mE00BA23B4C0C22D6485851E5EB9383A1737B1672_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = ___types0;
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
V_0 = L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0067;
}
IL_0009:
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_2);
V_1 = ((TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 *)CastclassClass((RuntimeObject*)L_3, TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438_il2cpp_TypeInfo_var));
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_4 = V_1;
if (!((ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD *)IsInstClass((RuntimeObject*)L_4, ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD_il2cpp_TypeInfo_var)))
{
goto IL_002a;
}
}
IL_001d:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterActivatedClientType_mFB6A0023346A446C5323C61E14736CD5E93FD419(((ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD *)CastclassClass((RuntimeObject*)L_5, ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_0067;
}
IL_002a:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_6 = V_1;
if (!((ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 *)IsInstClass((RuntimeObject*)L_6, ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818_il2cpp_TypeInfo_var)))
{
goto IL_003f;
}
}
IL_0032:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_7 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterActivatedServiceType_mD8320F66EB153FFE3B7EDAEB0A986F51B78C46E5(((ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 *)CastclassClass((RuntimeObject*)L_7, ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_0067;
}
IL_003f:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_8 = V_1;
if (!((WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 *)IsInstClass((RuntimeObject*)L_8, WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053_il2cpp_TypeInfo_var)))
{
goto IL_0054;
}
}
IL_0047:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterWellKnownClientType_mDD94123783592092E07F759F0D5EED22395E05C9(((WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 *)CastclassClass((RuntimeObject*)L_9, WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
goto IL_0067;
}
IL_0054:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_10 = V_1;
if (!((WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE *)IsInstClass((RuntimeObject*)L_10, WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE_il2cpp_TypeInfo_var)))
{
goto IL_0067;
}
}
IL_005c:
{
TypeEntry_t68ED966763A6311520ACC81794643F9E4928E438 * L_11 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterWellKnownServiceType_m90D68C6F1968E3E71D9B99725F625FE545E8574E(((WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE *)CastclassClass((RuntimeObject*)L_11, WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_0067:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
bool L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_12);
if (L_13)
{
goto IL_0009;
}
}
IL_006f:
{
IL2CPP_LEAVE(0x82, FINALLY_0071);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0071;
}
FINALLY_0071:
{ // begin finally (depth: 1)
{
RuntimeObject* L_14 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_14, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_15 = V_2;
if (!L_15)
{
goto IL_0081;
}
}
IL_007b:
{
RuntimeObject* L_16 = V_2;
NullCheck(L_16);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_16);
}
IL_0081:
{
IL2CPP_END_FINALLY(113)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(113)
{
IL2CPP_JUMP_TBL(0x82, IL_0082)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0082:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::CustomErrorsEnabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingConfiguration_CustomErrorsEnabled_m5A437ADE0000689E0CE21F02978D80333778E160 (bool ___isLocalRequest0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_CustomErrorsEnabled_m5A437ADE0000689E0CE21F02978D80333778E160_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get__errorMode_5();
bool L_1 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_0, _stringLiteralDA7A68734367828E30B94927F4C2B43ED2C0F652, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0013;
}
}
{
return (bool)0;
}
IL_0013:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_2 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get__errorMode_5();
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, _stringLiteralDB3D405B10675998C030223177D42E71B4E7A312, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0026;
}
}
{
return (bool)1;
}
IL_0026:
{
bool L_4 = ___isLocalRequest0;
return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::SetCustomErrorsMode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068 (String_t* ___mode0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___mode0;
if (L_0)
{
goto IL_000e;
}
}
{
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_1 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_1, _stringLiteralA3D3F71C7FD222A10EC32CE224E2696273028F48, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___mode0;
NullCheck(L_2);
String_t* L_3 = String_ToLower_m5287204D93C9DDC4DF84581ADD756D0FDE2BA5A8(L_2, /*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = V_0;
bool L_5 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_4, _stringLiteralDB3D405B10675998C030223177D42E71B4E7A312, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004d;
}
}
{
String_t* L_6 = V_0;
bool L_7 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_6, _stringLiteralDA7A68734367828E30B94927F4C2B43ED2C0F652, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_004d;
}
}
{
String_t* L_8 = V_0;
bool L_9 = String_op_Inequality_m0BD184A74F453A72376E81CC6CAEE2556B80493E(L_8, _stringLiteral3E9B8BBAE5A62534A34CD6C210F74575EBE07A9D, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_004d;
}
}
{
String_t* L_10 = ___mode0;
String_t* L_11 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralB14A93EE86D2F3528D90E99733A1A7840F13A308, L_10, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_12 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, RemotingConfiguration_SetCustomErrorsMode_m196A25B47B719E6E0E4F87553F6891741893B068_RuntimeMethod_var);
}
IL_004d:
{
String_t* L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set__errorMode_5(L_13);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingConfiguration::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration__cctor_mB5EF98E055149890B2ADD999B6DBB989DCA48992 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration__cctor_mB5EF98E055149890B2ADD999B6DBB989DCA48992_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_applicationID_0((String_t*)NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_applicationName_1((String_t*)NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_processGuid_2((String_t*)NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_defaultConfigRead_3((bool)0);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_defaultDelayedConfigRead_4((bool)0);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_wellKnownClientEntries_6(L_0);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_1, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_activatedClientEntries_7(L_1);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_2, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_wellKnownServiceEntries_8(L_2);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_3, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_activatedServiceEntries_9(L_3);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_4, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_channelTemplates_10(L_4);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_5, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_clientProviderTemplates_11(L_5);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_6, /*hidden argument*/NULL);
((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->set_serverProviderTemplates_12(L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.RemotingException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_mE1DDE68D07D4B0EB88E3CB2EDF0A64CC66F6E388 (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * __this, const RuntimeMethod* method)
{
{
SystemException__ctor_mEB9049B75DE1D23B0515DD294BEF0AAC7792F465(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_m371B7D673BB148AA1A4F0963ED7F526B878EC9BF (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * __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;
}
}
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_m00CF41DA8D86981DC94FF234526AED8232F78BF4 (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * __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);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.RemotingServices::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices__cctor_m6113C72D8E6A7A0D826914BB9774FA873877B571 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices__cctor_m6113C72D8E6A7A0D826914BB9774FA873877B571_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_uri_hash_0(L_0);
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_app_id_lock_4(L_1);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_next_id_5(1);
RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 * L_2 = (RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44 *)il2cpp_codegen_object_new(RemotingSurrogateSelector_tEABB3D5ACF04B7270F565E8BC105DDD94DDFFE44_il2cpp_TypeInfo_var);
RemotingSurrogateSelector__ctor_m5AEC278659397A63359757387A07AD305F8BE6B7(L_2, /*hidden argument*/NULL);
StreamingContext__ctor_mFDE6C04F21FF60F9832C30FF1B8C59258C02BF52((StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 *)(&V_0), ((int32_t)16), NULL, /*hidden argument*/NULL);
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_3 = V_0;
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_4 = (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 *)il2cpp_codegen_object_new(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_il2cpp_TypeInfo_var);
BinaryFormatter__ctor_m89DA9542D935A5F3272C49D26984E68FEF2D8713(L_4, L_2, L_3, /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set__serializationFormatter_1(L_4);
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = V_0;
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_6 = (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 *)il2cpp_codegen_object_new(BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0_il2cpp_TypeInfo_var);
BinaryFormatter__ctor_m89DA9542D935A5F3272C49D26984E68FEF2D8713(L_6, (RuntimeObject*)NULL, L_5, /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set__deserializationFormatter_2(L_6);
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_7 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get__serializationFormatter_1();
NullCheck(L_7);
BinaryFormatter_set_AssemblyFormat_m7D82B2B610F97286886BAB761B98E6655056E8F7_inline(L_7, 1, /*hidden argument*/NULL);
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_8 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get__deserializationFormatter_2();
NullCheck(L_8);
BinaryFormatter_set_AssemblyFormat_m7D82B2B610F97286886BAB761B98E6655056E8F7_inline(L_8, 1, /*hidden argument*/NULL);
RemotingServices_RegisterInternalChannels_m69A4E09D5E4777709530898636AC7EBA8032949F(/*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_9 = { reinterpret_cast<intptr_t> (RemoteActivator_t1882A1F35EE36C9F6A639472386A46AB7E49180A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_10 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_9, /*hidden argument*/NULL);
RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9(L_10, _stringLiteral17D8071E94DF635DCEBD891F4F5F32CC30E49C02, 1, /*hidden argument*/NULL);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
MethodInfo_t * L_13 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_12, _stringLiteral52FCFAE6C8A919BB1C8FF1107EDCD54440FCDD8E, ((int32_t)36), /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_FieldSetterMethod_6(L_13);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_14 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) };
Type_t * L_15 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_14, /*hidden argument*/NULL);
NullCheck(L_15);
MethodInfo_t * L_16 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_15, _stringLiteralCBD006E28E8B11491E1DCC6DE6CFEC1DA02AFFFA, ((int32_t)36), /*hidden argument*/NULL);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_FieldGetterMethod_7(L_16);
return;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::InternalExecute(System.Reflection.MethodBase,System.Object,System.Object[],System.Object[]&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_InternalExecute_mD700E602BFBA6EEFE57A94CCF0C2737FF4199EDA (MethodBase_t * ___method0, RuntimeObject * ___obj1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___parameters2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** ___out_args3, const RuntimeMethod* method)
{
typedef RuntimeObject * (*RemotingServices_InternalExecute_mD700E602BFBA6EEFE57A94CCF0C2737FF4199EDA_ftn) (MethodBase_t *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**);
using namespace il2cpp::icalls;
return ((RemotingServices_InternalExecute_mD700E602BFBA6EEFE57A94CCF0C2737FF4199EDA_ftn)mscorlib::System::Runtime::Remoting::RemotingServices::InternalExecute) (___method0, ___obj1, ___parameters2, ___out_args3);
}
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetVirtualMethod(System.Type,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395 (Type_t * ___type0, MethodBase_t * ___method1, const RuntimeMethod* method)
{
typedef MethodBase_t * (*RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395_ftn) (Type_t *, MethodBase_t *);
using namespace il2cpp::icalls;
return ((RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395_ftn)mscorlib::System::Runtime::Remoting::RemotingServices::GetVirtualMethod) (___type0, ___method1);
}
// System.Boolean System.Runtime.Remoting.RemotingServices::IsTransparentProxy(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F (RuntimeObject * ___proxy0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F_RuntimeMethod_var);
}
}
// System.Runtime.Remoting.Messaging.IMethodReturnMessage System.Runtime.Remoting.RemotingServices::InternalExecuteMessage(System.MarshalByRefObject,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___target0, RuntimeObject* ___reqMsg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * V_0 = NULL;
Type_t * V_1 = NULL;
MethodBase_t * V_2 = NULL;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * V_3 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_4 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL;
RuntimeObject * V_6 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_7 = NULL;
int32_t V_8 = 0;
int32_t V_9 = 0;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * V_10 = NULL;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* V_11 = NULL;
int32_t V_12 = 0;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___target0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_0, /*hidden argument*/NULL);
V_1 = L_1;
RuntimeObject* L_2 = ___reqMsg1;
NullCheck(L_2);
MethodBase_t * L_3 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_2);
NullCheck(L_3);
Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_3);
Type_t * L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_4, L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_003e;
}
}
{
RuntimeObject* L_7 = ___reqMsg1;
NullCheck(L_7);
MethodBase_t * L_8 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_7);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodInfo_t * L_9 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_FieldSetterMethod_6();
bool L_10 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_8, L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_003e;
}
}
{
RuntimeObject* L_11 = ___reqMsg1;
NullCheck(L_11);
MethodBase_t * L_12 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_11);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodInfo_t * L_13 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_FieldGetterMethod_7();
bool L_14 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_12, L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0047;
}
}
IL_003e:
{
RuntimeObject* L_15 = ___reqMsg1;
NullCheck(L_15);
MethodBase_t * L_16 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_15);
V_2 = L_16;
goto IL_0074;
}
IL_0047:
{
Type_t * L_17 = V_1;
RuntimeObject* L_18 = ___reqMsg1;
NullCheck(L_18);
MethodBase_t * L_19 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_18);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_20 = RemotingServices_GetVirtualMethod_m272DC8FB18B67F481AAE9038009F097777E79395(L_17, L_19, /*hidden argument*/NULL);
V_2 = L_20;
MethodBase_t * L_21 = V_2;
bool L_22 = MethodBase_op_Equality_mB2519FFC5324C515ED0181B94A3FA5D6FE99D736(L_21, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0074;
}
}
{
Type_t * L_23 = V_1;
RuntimeObject* L_24 = ___reqMsg1;
NullCheck(L_24);
String_t* L_25 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_24);
String_t* L_26 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral21CAAEAE9C76B3BA9D8043DD9396DB7CADD6ABCE, L_23, L_25, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_27 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, RemotingServices_InternalExecuteMessage_m00AA2A075AC828C4CFD0A964CD49CC7A8ABB647B_RuntimeMethod_var);
}
IL_0074:
{
RuntimeObject* L_28 = ___reqMsg1;
NullCheck(L_28);
MethodBase_t * L_29 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_28);
NullCheck(L_29);
bool L_30 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_29);
if (!L_30)
{
goto IL_00a1;
}
}
{
RuntimeObject* L_31 = ___reqMsg1;
NullCheck(L_31);
MethodBase_t * L_32 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_31);
NullCheck(L_32);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_33 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_32);
V_4 = L_33;
MethodBase_t * L_34 = V_2;
NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_34, MethodInfo_t_il2cpp_TypeInfo_var)));
MethodInfo_t * L_35 = VirtFuncInvoker0< MethodInfo_t * >::Invoke(40 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::GetGenericMethodDefinition() */, ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_34, MethodInfo_t_il2cpp_TypeInfo_var)));
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_36 = V_4;
NullCheck(L_35);
MethodInfo_t * L_37 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(41 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_35, L_36);
V_2 = L_37;
}
IL_00a1:
{
RuntimeObject* L_38 = ___reqMsg1;
NullCheck(L_38);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_39 = InterfaceFuncInvoker0< LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_38);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_40 = CallContext_SetLogicalCallContext_mAAF68FB2E7EC13678AE3D25BF7E771D7F4016C16(L_39, /*hidden argument*/NULL);
V_3 = L_40;
}
IL_00ad:
try
{ // begin try (depth: 1)
{
MethodBase_t * L_41 = V_2;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_42 = ___target0;
RuntimeObject* L_43 = ___reqMsg1;
NullCheck(L_43);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_43);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_45 = RemotingServices_InternalExecute_mD700E602BFBA6EEFE57A94CCF0C2737FF4199EDA(L_41, L_42, L_44, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A**)(&V_5), /*hidden argument*/NULL);
V_6 = L_45;
MethodBase_t * L_46 = V_2;
NullCheck(L_46);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_47 = VirtFuncInvoker0< ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_46);
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_48 = L_47;
NullCheck(L_48);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_49 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))));
V_7 = L_49;
V_8 = 0;
V_9 = 0;
V_11 = L_48;
V_12 = 0;
goto IL_0147;
}
IL_00db:
{
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_50 = V_11;
int32_t L_51 = V_12;
NullCheck(L_50);
int32_t L_52 = L_51;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
V_13 = L_53;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_54 = V_13;
NullCheck(L_54);
bool L_55 = ParameterInfo_get_IsOut_mBD413F046E276BBF88D653EA7A261B221420A464(L_54, /*hidden argument*/NULL);
if (!L_55)
{
goto IL_0112;
}
}
IL_00eb:
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_56 = V_13;
NullCheck(L_56);
Type_t * L_57 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_56);
NullCheck(L_57);
bool L_58 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_57, /*hidden argument*/NULL);
if (L_58)
{
goto IL_0112;
}
}
IL_00f9:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_59 = V_7;
int32_t L_60 = V_8;
int32_t L_61 = L_60;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
RuntimeObject* L_62 = ___reqMsg1;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_63 = V_13;
NullCheck(L_63);
int32_t L_64 = VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Reflection.ParameterInfo::get_Position() */, L_63);
NullCheck(L_62);
RuntimeObject * L_65 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(8 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::GetArg(System.Int32) */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_62, L_64);
NullCheck(L_59);
ArrayElementTypeCheck (L_59, L_65);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(L_61), (RuntimeObject *)L_65);
goto IL_0141;
}
IL_0112:
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_66 = V_13;
NullCheck(L_66);
Type_t * L_67 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_66);
NullCheck(L_67);
bool L_68 = Type_get_IsByRef_m13C04A998C9B19058B596A81D188B368333D24F8(L_67, /*hidden argument*/NULL);
if (!L_68)
{
goto IL_0136;
}
}
IL_0120:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_69 = V_7;
int32_t L_70 = V_8;
int32_t L_71 = L_70;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = V_5;
int32_t L_73 = V_9;
int32_t L_74 = L_73;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1));
NullCheck(L_72);
int32_t L_75 = L_74;
RuntimeObject * L_76 = (L_72)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
NullCheck(L_69);
ArrayElementTypeCheck (L_69, L_76);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(L_71), (RuntimeObject *)L_76);
goto IL_0141;
}
IL_0136:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_77 = V_7;
int32_t L_78 = V_8;
int32_t L_79 = L_78;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1));
NullCheck(L_77);
ArrayElementTypeCheck (L_77, NULL);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(L_79), (RuntimeObject *)NULL);
}
IL_0141:
{
int32_t L_80 = V_12;
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1));
}
IL_0147:
{
int32_t L_81 = V_12;
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* L_82 = V_11;
NullCheck(L_82);
if ((((int32_t)L_81) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_82)->max_length)))))))
{
goto IL_00db;
}
}
IL_014f:
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_83 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_83);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_84 = Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72(L_83, /*hidden argument*/NULL);
NullCheck(L_84);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_85 = ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3(L_84, /*hidden argument*/NULL);
V_10 = L_85;
RuntimeObject * L_86 = V_6;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_87 = V_7;
int32_t L_88 = V_8;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_89 = V_10;
RuntimeObject* L_90 = ___reqMsg1;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_91 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA81E63533AD1024E6378B26E2FF6F3391460D271(L_91, L_86, L_87, L_88, L_89, L_90, /*hidden argument*/NULL);
V_0 = L_91;
goto IL_017a;
}
} // 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_0171;
throw e;
}
CATCH_0171:
{ // begin catch(System.Exception)
RuntimeObject* L_92 = ___reqMsg1;
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_93 = (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 *)il2cpp_codegen_object_new(ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03_il2cpp_TypeInfo_var);
ReturnMessage__ctor_mA17F87483A741789E4E5CAF7D3A1F8DCF32CB57E(L_93, ((Exception_t *)__exception_local), L_92, /*hidden argument*/NULL);
V_0 = L_93;
goto IL_017a;
} // end catch (depth: 1)
IL_017a:
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_94 = V_3;
CallContext_SetLogicalCallContext_mAAF68FB2E7EC13678AE3D25BF7E771D7F4016C16(L_94, /*hidden argument*/NULL);
ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * L_95 = V_0;
return L_95;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::Connect(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Connect_m9B95D5D77FB651E2163FB8DABB930651C8997337 (Type_t * ___classToProxy0, String_t* ___url1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Connect_m9B95D5D77FB651E2163FB8DABB930651C8997337_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___classToProxy0;
String_t* L_1 = ___url1;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_2 = (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *)il2cpp_codegen_object_new(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467(L_2, L_0, L_1, NULL, /*hidden argument*/NULL);
Type_t * L_3 = ___classToProxy0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38(L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::Connect(System.Type,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Connect_mF20992AE1A78BC91FE90567919DA07F490A7A279 (Type_t * ___classToProxy0, String_t* ___url1, RuntimeObject * ___data2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Connect_mF20992AE1A78BC91FE90567919DA07F490A7A279_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___classToProxy0;
String_t* L_1 = ___url1;
RuntimeObject * L_2 = ___data2;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *)il2cpp_codegen_object_new(ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2_il2cpp_TypeInfo_var);
ObjRef__ctor_m5E7A9A515A123AFEE645CD49BAAD6E2460076467(L_3, L_0, L_1, L_2, /*hidden argument*/NULL);
Type_t * L_4 = ___classToProxy0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Type System.Runtime.Remoting.RemotingServices::GetServerTypeForUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * RemotingServices_GetServerTypeForUri_mDDC9FFB5DF59680CBC9DE30BB94E6AC9FA0FAD72 (String_t* ___URI0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetServerTypeForUri_mDDC9FFB5DF59680CBC9DE30BB94E6AC9FA0FAD72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
{
String_t* L_0 = ___URI0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_1 = RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980(L_0, /*hidden argument*/NULL);
V_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)IsInstClass((RuntimeObject*)L_1, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_2 = V_0;
if (L_2)
{
goto IL_0011;
}
}
{
return (Type_t *)NULL;
}
IL_0011:
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_3 = V_0;
NullCheck(L_3);
Type_t * L_4 = ServerIdentity_get_ObjectType_mB93B782F357A4AFBFE6E8A7C0668F5D0CB7FDAC2_inline(L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::Unmarshal(System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objectRef0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Unmarshal_m3721D283212A1AED069EAF0F31DB0828B1D69F8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___objectRef0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = RemotingServices_Unmarshal_mE12395241E45DC5F1BDCE371E275C7F3A207BCE9(L_0, (bool)1, /*hidden argument*/NULL);
return L_1;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::Unmarshal(System.Runtime.Remoting.ObjRef,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Unmarshal_mE12395241E45DC5F1BDCE371E275C7F3A207BCE9 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objectRef0, bool ___fRefine1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Unmarshal_mE12395241E45DC5F1BDCE371E275C7F3A207BCE9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * V_1 = NULL;
Type_t * G_B3_0 = NULL;
{
bool L_0 = ___fRefine1;
if (L_0)
{
goto IL_000f;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_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);
G_B3_0 = L_2;
goto IL_0015;
}
IL_000f:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = ___objectRef0;
NullCheck(L_3);
Type_t * L_4 = ObjRef_get_ServerType_m8461364BA216148B25DBB1AD68FAF0AA3E8EEED6(L_3, /*hidden argument*/NULL);
G_B3_0 = L_4;
}
IL_0015:
{
V_0 = G_B3_0;
Type_t * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_6 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_5, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_002a;
}
}
{
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_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);
V_0 = L_8;
}
IL_002a:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_9 = ___objectRef0;
NullCheck(L_9);
bool L_10 = ObjRef_get_IsReferenceToWellKnow_m6FF007CF8A960CC6B75BC869E23EB80B720AF81A(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0041;
}
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_11 = ___objectRef0;
Type_t * L_12 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_13 = RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38(L_11, L_12, /*hidden argument*/NULL);
RuntimeObject * L_14 = L_13;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_15 = ___objectRef0;
IL2CPP_RUNTIME_CLASS_INIT(TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var);
TrackingServices_NotifyUnmarshaledObject_mF4DFEB56D2DF9B17E685B09D20FBC92B9A3B965C(L_14, L_15, /*hidden argument*/NULL);
return L_14;
}
IL_0041:
{
Type_t * L_16 = V_0;
NullCheck(L_16);
bool L_17 = Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A(L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_007a;
}
}
{
Type_t * L_18 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_19 = { reinterpret_cast<intptr_t> (ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_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);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_21 = Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4(L_18, L_20, (bool)1, /*hidden argument*/NULL);
V_1 = ((ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF *)CastclassClass((RuntimeObject*)L_21, ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_il2cpp_TypeInfo_var));
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * L_22 = V_1;
if (!L_22)
{
goto IL_007a;
}
}
{
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * L_23 = V_1;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_24 = ___objectRef0;
Type_t * L_25 = V_0;
NullCheck(L_23);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_26 = VirtFuncInvoker4< RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF *, ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t *, RuntimeObject *, Context_tE86AB6B3D9759C8E715184808579EFE761683724 * >::Invoke(5 /* System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.Proxies.ProxyAttribute::CreateProxy(System.Runtime.Remoting.ObjRef,System.Type,System.Object,System.Runtime.Remoting.Contexts.Context) */, L_23, L_24, L_25, NULL, (Context_tE86AB6B3D9759C8E715184808579EFE761683724 *)NULL);
NullCheck(L_26);
RuntimeObject * L_27 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, L_26);
RuntimeObject * L_28 = L_27;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_29 = ___objectRef0;
IL2CPP_RUNTIME_CLASS_INIT(TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var);
TrackingServices_NotifyUnmarshaledObject_mF4DFEB56D2DF9B17E685B09D20FBC92B9A3B965C(L_28, L_29, /*hidden argument*/NULL);
return L_28;
}
IL_007a:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_30 = ___objectRef0;
Type_t * L_31 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_32 = RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E(L_30, L_31, /*hidden argument*/NULL);
RuntimeObject * L_33 = L_32;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_34 = ___objectRef0;
IL2CPP_RUNTIME_CLASS_INIT(TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var);
TrackingServices_NotifyUnmarshaledObject_mF4DFEB56D2DF9B17E685B09D20FBC92B9A3B965C(L_33, L_34, /*hidden argument*/NULL);
return L_33;
}
}
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___Obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___Obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_1 = RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B(L_0, (String_t*)NULL, (Type_t *)NULL, /*hidden argument*/NULL);
return L_1;
}
}
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___Obj0, String_t* ___ObjURI1, Type_t * ___RequestedType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * V_0 = NULL;
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * V_1 = NULL;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * V_2 = NULL;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * V_3 = NULL;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * V_4 = NULL;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * G_B6_0 = NULL;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * G_B5_0 = NULL;
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___Obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_1 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0087;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_2 = ___Obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_3 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_2, /*hidden argument*/NULL);
V_1 = L_3;
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_4 = V_1;
NullCheck(L_4);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_5 = RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline(L_4, /*hidden argument*/NULL);
V_2 = L_5;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_6 = V_2;
if (!L_6)
{
goto IL_0087;
}
}
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_7 = V_1;
NullCheck(L_7);
Type_t * L_8 = RealProxy_GetProxiedType_m0A8CF599649350904E4CEB231114780AFB3FBC87(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
bool L_9 = Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0063;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_10 = V_2;
NullCheck(L_10);
bool L_11 = Identity_get_IsConnected_m71FF39D6BAD417D698A5C306473747EDB090D12A(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0063;
}
}
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_12 = V_2;
String_t* L_13 = ___ObjURI1;
G_B5_0 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)CastclassClass((RuntimeObject*)L_12, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
if (L_13)
{
G_B6_0 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)CastclassClass((RuntimeObject*)L_12, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
goto IL_003e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_14 = RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD(/*hidden argument*/NULL);
___ObjURI1 = L_14;
G_B6_0 = G_B5_0;
}
IL_003e:
{
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_15 = G_B6_0;
String_t* L_16 = ___ObjURI1;
NullCheck(L_15);
Identity_set_ObjectUri_mE4630E3F65B2A6E9DA60D830975549031A9EA3B8_inline(L_15, L_16, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_17 = L_15;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91(L_17, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_18 = L_17;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_19 = ___Obj0;
NullCheck(L_19);
RuntimeObject * L_20 = VirtFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.MarshalByRefObject::InitializeLifetimeService() */, L_19);
NullCheck(L_18);
ServerIdentity_StartTrackingLifetime_m42193F67CABCFAC75C1652D2AE84930FBAEEC43C(L_18, ((RuntimeObject*)Castclass((RuntimeObject*)L_20, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
Type_t * L_21 = ___RequestedType2;
NullCheck(L_18);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_22 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::CreateObjRef(System.Type) */, L_18, L_21);
return L_22;
}
IL_0063:
{
String_t* L_23 = ___ObjURI1;
if (!L_23)
{
goto IL_0071;
}
}
{
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_24 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_24, _stringLiteralEC054789BE20BE3E91CE6095EEB8F7B63F951EE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, RemotingServices_Marshal_m4011FB4633F63D96F126786B57DC8921B2D7035B_RuntimeMethod_var);
}
IL_0071:
{
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_25 = V_1;
NullCheck(L_25);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_26 = RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline(L_25, /*hidden argument*/NULL);
Type_t * L_27 = ___RequestedType2;
NullCheck(L_26);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_28 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::CreateObjRef(System.Type) */, L_26, L_27);
V_3 = L_28;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_29 = ___Obj0;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_30 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var);
TrackingServices_NotifyMarshaledObject_mE3F8569E9629CEE1DA2A4B1AB995172FF98668EC(L_29, L_30, /*hidden argument*/NULL);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_31 = V_3;
return L_31;
}
IL_0087:
{
Type_t * L_32 = ___RequestedType2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_33 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_32, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_33)
{
goto IL_0098;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_34 = ___Obj0;
NullCheck(L_34);
Type_t * L_35 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_34, /*hidden argument*/NULL);
___RequestedType2 = L_35;
}
IL_0098:
{
String_t* L_36 = ___ObjURI1;
if (L_36)
{
goto IL_00b5;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_37 = ___Obj0;
NullCheck(L_37);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_38 = MarshalByRefObject_get_ObjectIdentity_m7416B44A5332EFEB874C4E6A8100F22511D3997C(L_37, /*hidden argument*/NULL);
if (L_38)
{
goto IL_00e3;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_39 = RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD(/*hidden argument*/NULL);
___ObjURI1 = L_39;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_40 = ___Obj0;
Type_t * L_41 = ___RequestedType2;
String_t* L_42 = ___ObjURI1;
RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2(L_40, L_41, L_42, /*hidden argument*/NULL);
goto IL_00e3;
}
IL_00b5:
{
String_t* L_43 = ___ObjURI1;
String_t* L_44 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, L_43, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_45 = RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980(L_44, /*hidden argument*/NULL);
V_4 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)IsInstClass((RuntimeObject*)L_45, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_46 = V_4;
if (!L_46)
{
goto IL_00da;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_47 = ___Obj0;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_48 = V_4;
NullCheck(L_48);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_49 = ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline(L_48, /*hidden argument*/NULL);
if ((((RuntimeObject*)(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)L_47) == ((RuntimeObject*)(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)L_49)))
{
goto IL_00e3;
}
}
IL_00da:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_50 = ___Obj0;
Type_t * L_51 = ___RequestedType2;
String_t* L_52 = ___ObjURI1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2(L_50, L_51, L_52, /*hidden argument*/NULL);
}
IL_00e3:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_53 = ___Obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_54 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_53, /*hidden argument*/NULL);
if (!L_54)
{
goto IL_00ff;
}
}
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_55 = ___Obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_56 = RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD(L_55, /*hidden argument*/NULL);
NullCheck(L_56);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_57 = RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline(L_56, /*hidden argument*/NULL);
Type_t * L_58 = ___RequestedType2;
NullCheck(L_57);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_59 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::CreateObjRef(System.Type) */, L_57, L_58);
V_0 = L_59;
goto IL_0107;
}
IL_00ff:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_60 = ___Obj0;
Type_t * L_61 = ___RequestedType2;
NullCheck(L_60);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_62 = VirtFuncInvoker1< ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 *, Type_t * >::Invoke(4 /* System.Runtime.Remoting.ObjRef System.MarshalByRefObject::CreateObjRef(System.Type) */, L_60, L_61);
V_0 = L_62;
}
IL_0107:
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_63 = ___Obj0;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_64 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(TrackingServices_t2C809B5035163AEE0FBA4ECE826F9EDDB152CF69_il2cpp_TypeInfo_var);
TrackingServices_NotifyMarshaledObject_mE3F8569E9629CEE1DA2A4B1AB995172FF98668EC(L_63, L_64, /*hidden argument*/NULL);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_65 = V_0;
return L_65;
}
}
// System.String System.Runtime.Remoting.RemotingServices::NewUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_NewUri_mE8A73833D1704D4BAEA099D90DED4CB3B6CA8FAD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Guid_t V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 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);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_0 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_app_id_3();
if (L_0)
{
goto IL_0055;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_app_id_lock_4();
V_1 = L_1;
V_2 = (bool)0;
}
IL_000f:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_3 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_app_id_3();
if (L_3)
{
goto IL_0049;
}
}
IL_001e:
{
IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var);
Guid_t L_4 = Guid_NewGuid_m541CAC23EBB140DFD3AB5B313315647E95FADB29(/*hidden argument*/NULL);
V_3 = L_4;
String_t* L_5 = Guid_ToString_m3024AB4FA6189BC28BE77BBD6A9F55841FE190A5((Guid_t *)(&V_3), /*hidden argument*/NULL);
NullCheck(L_5);
String_t* L_6 = String_Replace_m276641366A463205C185A9B3DC0E24ECB95122C9(L_5, ((int32_t)45), ((int32_t)95), /*hidden argument*/NULL);
String_t* L_7 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_6, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->set_app_id_3(L_7);
}
IL_0049:
{
IL2CPP_LEAVE(0x55, FINALLY_004b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
{
bool L_8 = V_2;
if (!L_8)
{
goto IL_0054;
}
}
IL_004e:
{
RuntimeObject * L_9 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_9, /*hidden argument*/NULL);
}
IL_0054:
{
IL2CPP_END_FINALLY(75)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0x55, IL_0055)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0055:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
int32_t L_10 = Interlocked_Increment_mB6D391197444B8BFD30BAE1EDCF1A255CD2F292F((int32_t*)(((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_address_of_next_id_5()), /*hidden argument*/NULL);
V_0 = L_10;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = L_11;
String_t* L_13 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_app_id_3();
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_13);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_13);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_12;
int32_t L_15 = Environment_get_TickCount_m0A119BE4354EA90C82CC48E559588C987A79FE0C(/*hidden argument*/NULL);
V_4 = L_15;
String_t* L_16 = Int32_ToString_m5A125A41C41701E41FA0C4CC52CADBC73C1C96D8((int32_t*)(&V_4), _stringLiteral11F6AD8EC52A2984ABAAFD7C3B516503785C2072, /*hidden argument*/NULL);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_14;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral53A0ACFAD59379B3E050338BF9F23CFC172EE787);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17;
int32_t L_19 = V_0;
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_20);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_21);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_21);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = L_18;
NullCheck(L_22);
ArrayElementTypeCheck (L_22, _stringLiteral04DB1C850A01E9BFAD67FBA52AECF4A8CCED88EC);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral04DB1C850A01E9BFAD67FBA52AECF4A8CCED88EC);
String_t* L_23 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_22, /*hidden argument*/NULL);
return L_23;
}
}
// System.Runtime.Remoting.Proxies.RealProxy System.Runtime.Remoting.RemotingServices::GetRealProxy(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD (RuntimeObject * ___proxy0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___proxy0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
bool L_1 = RemotingServices_IsTransparentProxy_mC82CA070EE205CED975BD6162B31F9A7C373531F(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0013;
}
}
{
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_2 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_2, _stringLiteral0E810F1FD821A201599050611CC7E608D422CCF2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, RemotingServices_GetRealProxy_mF634619D46FF8654806937F46E0BC2FDBFACB7DD_RuntimeMethod_var);
}
IL_0013:
{
RuntimeObject * L_3 = ___proxy0;
NullCheck(((TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 *)CastclassClass((RuntimeObject*)L_3, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_il2cpp_TypeInfo_var)));
RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * L_4 = ((TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000 *)CastclassClass((RuntimeObject*)L_3, TransparentProxy_t86DE1FBB00F5A5B8859BB8E8375ED2F5C42D8000_il2cpp_TypeInfo_var))->get__rp_0();
return L_4;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetMethodBaseFromMethodMessage(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58 (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * G_B2_0 = NULL;
Type_t * G_B1_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
NullCheck(L_0);
String_t* L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_TypeName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_0);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = il2cpp_codegen_get_type((Il2CppMethodPointer)&Type_GetType_mCF0A3B28889C9FFB9987C8D30C23DF0912E7C00C, L_1, "mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
Type_t * L_3 = L_2;
bool L_4 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
G_B1_0 = L_3;
if (!L_4)
{
G_B2_0 = L_3;
goto IL_002f;
}
}
{
RuntimeObject* L_5 = ___msg0;
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_TypeName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_5);
String_t* L_7 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralBA116CF06D94D1851DD437DF3914E487FD3FE2E2, L_6, _stringLiteral997002FC7C68C5F853A3B415767F78CDAEA8530B, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_8 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, RemotingServices_GetMethodBaseFromMethodMessage_m2DAECE55B2B7BA4F12C6955F571F07DD8A1C9E58_RuntimeMethod_var);
}
IL_002f:
{
RuntimeObject* L_9 = ___msg0;
NullCheck(L_9);
String_t* L_10 = InterfaceFuncInvoker0< String_t* >::Invoke(4 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodName() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_9);
RuntimeObject* L_11 = ___msg0;
NullCheck(L_11);
RuntimeObject * L_12 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodSignature() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, L_11);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_13 = RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872(G_B2_0, L_10, ((TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F*)Castclass((RuntimeObject*)L_12, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_13;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::GetMethodBaseFromName(System.Type,System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872 (Type_t * ___type0, String_t* ___methodName1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___signature2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetMethodBaseFromName_m13F965F80976A804D94876255EC4CC06BD204872_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodBase_t * V_0 = NULL;
{
Type_t * L_0 = ___type0;
NullCheck(L_0);
bool L_1 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
Type_t * L_2 = ___type0;
String_t* L_3 = ___methodName1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_4 = ___signature2;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_5 = RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E(L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0011:
{
V_0 = (MethodBase_t *)NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___signature2;
if (L_6)
{
goto IL_0022;
}
}
{
Type_t * L_7 = ___type0;
String_t* L_8 = ___methodName1;
NullCheck(L_7);
MethodInfo_t * L_9 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_7, L_8, ((int32_t)52), /*hidden argument*/NULL);
V_0 = L_9;
goto IL_002f;
}
IL_0022:
{
Type_t * L_10 = ___type0;
String_t* L_11 = ___methodName1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = ___signature2;
NullCheck(L_10);
MethodInfo_t * L_13 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_10, L_11, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_12, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_0 = L_13;
}
IL_002f:
{
MethodBase_t * L_14 = V_0;
bool L_15 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_14, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_003a;
}
}
{
MethodBase_t * L_16 = V_0;
return L_16;
}
IL_003a:
{
String_t* L_17 = ___methodName1;
bool L_18 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_17, _stringLiteral52FCFAE6C8A919BB1C8FF1107EDCD54440FCDD8E, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_004d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodInfo_t * L_19 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_FieldSetterMethod_6();
return L_19;
}
IL_004d:
{
String_t* L_20 = ___methodName1;
bool L_21 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_20, _stringLiteralCBD006E28E8B11491E1DCC6DE6CFEC1DA02AFFFA, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_0060;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodInfo_t * L_22 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_FieldGetterMethod_7();
return L_22;
}
IL_0060:
{
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_23 = ___signature2;
if (L_23)
{
goto IL_0073;
}
}
{
Type_t * L_24 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_25 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_5();
NullCheck(L_24);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_26 = Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07(L_24, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_25, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
return L_26;
}
IL_0073:
{
Type_t * L_27 = ___type0;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_28 = ___signature2;
NullCheck(L_27);
ConstructorInfo_t9CB51BFC178DF1CBCA5FD16B2D58229618F23EFF * L_29 = Type_GetConstructor_m53CF9E12A23096404A64D1BB7B894657C9063A07(L_27, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_28, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
return L_29;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.RemotingServices::FindInterfaceMethod(System.Type,System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E (Type_t * ___type0, String_t* ___methodName1, TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___signature2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodBase_t * V_0 = NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* V_1 = NULL;
int32_t V_2 = 0;
{
V_0 = (MethodBase_t *)NULL;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_0 = ___signature2;
if (L_0)
{
goto IL_0011;
}
}
{
Type_t * L_1 = ___type0;
String_t* L_2 = ___methodName1;
NullCheck(L_1);
MethodInfo_t * L_3 = Type_GetMethod_m9EC42D4B1F765B882F516EE6D7970D51CF5D80DD(L_1, L_2, ((int32_t)52), /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001e;
}
IL_0011:
{
Type_t * L_4 = ___type0;
String_t* L_5 = ___methodName1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_6 = ___signature2;
NullCheck(L_4);
MethodInfo_t * L_7 = Type_GetMethod_m694F07057F23808980BF6B1637544F34852759FA(L_4, L_5, ((int32_t)52), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_6, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_001e:
{
MethodBase_t * L_8 = V_0;
bool L_9 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_8, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0029;
}
}
{
MethodBase_t * L_10 = V_0;
return L_10;
}
IL_0029:
{
Type_t * L_11 = ___type0;
NullCheck(L_11);
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_12 = VirtFuncInvoker0< TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* >::Invoke(44 /* System.Type[] System.Type::GetInterfaces() */, L_11);
V_1 = L_12;
V_2 = 0;
goto IL_004e;
}
IL_0034:
{
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));
String_t* L_17 = ___methodName1;
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* L_18 = ___signature2;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
MethodBase_t * L_19 = RemotingServices_FindInterfaceMethod_mCBF009B7AAD75FB5911CA35BE6823090642CEF3E(L_16, L_17, L_18, /*hidden argument*/NULL);
V_0 = L_19;
MethodBase_t * L_20 = V_0;
bool L_21 = MethodBase_op_Inequality_mA03AE708DD0D76404AED7C36A75741E2A6BC6BF7(L_20, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_21)
{
goto IL_004a;
}
}
{
MethodBase_t * L_22 = V_0;
return L_22;
}
IL_004a:
{
int32_t L_23 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_004e:
{
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_0034;
}
}
{
return (MethodBase_t *)NULL;
}
}
// System.Void System.Runtime.Remoting.RemotingServices::GetObjectData(System.Object,System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F (RuntimeObject * ___obj0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info1, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F_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, RemotingServices_GetObjectData_m8971BA205E7FAEE41C8B724A2771F2212F174D5F_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___obj0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_3 = RemotingServices_Marshal_m50E2A34A7EB64319F9668CFA5880CE067A1C0AF3(((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)CastclassClass((RuntimeObject*)L_2, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info1;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = ___context2;
NullCheck(L_3);
VirtActionInvoker2< SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 >::Invoke(13 /* System.Void System.Runtime.Remoting.ObjRef::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) */, L_3, L_4, L_5);
return;
}
}
// System.Boolean System.Runtime.Remoting.RemotingServices::IsOneWay(System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_IsOneWay_m7D017D4D9C29D18ED118BF475128D98B44B092BA (MethodBase_t * ___method0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_IsOneWay_m7D017D4D9C29D18ED118BF475128D98B44B092BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MethodBase_t * L_0 = ___method0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_1 = { reinterpret_cast<intptr_t> (OneWayAttribute_t848DB2BC395D34A01B2932EEC85CEA65CA9C9B43_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);
return L_3;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::CreateClientProxy(System.Runtime.Remoting.ActivatedClientTypeEntry,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_CreateClientProxy_m22228424D442DDF319F7C1EDAA9800983139D2BB (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * ___entry0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateClientProxy_m22228424D442DDF319F7C1EDAA9800983139D2BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL;
{
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_0 = ___entry0;
NullCheck(L_0);
IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C* L_1 = ActivatedClientTypeEntry_get_ContextAttributes_mA5710320FE91061287463310937310EBEEB00D4B(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_000b;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___activationAttributes1;
if (!L_2)
{
goto IL_0047;
}
}
IL_000b:
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var);
ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6(L_3, /*hidden argument*/NULL);
V_0 = L_3;
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_4 = ___entry0;
NullCheck(L_4);
IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C* L_5 = ActivatedClientTypeEntry_get_ContextAttributes_mA5710320FE91061287463310937310EBEEB00D4B(L_4, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0025;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_6 = V_0;
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_7 = ___entry0;
NullCheck(L_7);
IContextAttributeU5BU5D_t5EA1C2D7C749430972D5C6B06043A6FF554E2E0C* L_8 = ActivatedClientTypeEntry_get_ContextAttributes_mA5710320FE91061287463310937310EBEEB00D4B(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
VirtActionInvoker1< RuntimeObject* >::Invoke(25 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_6, (RuntimeObject*)(RuntimeObject*)L_8);
}
IL_0025:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = ___activationAttributes1;
if (!L_9)
{
goto IL_002f;
}
}
{
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___activationAttributes1;
NullCheck(L_10);
VirtActionInvoker1< RuntimeObject* >::Invoke(25 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_10, (RuntimeObject*)(RuntimeObject*)L_11);
}
IL_002f:
{
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_12 = ___entry0;
NullCheck(L_12);
Type_t * L_13 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_12, /*hidden argument*/NULL);
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_14 = ___entry0;
NullCheck(L_14);
String_t* L_15 = ActivatedClientTypeEntry_get_ApplicationUrl_m2C321054A0F16A35E987049E8EABB90211B3FEAA_inline(L_14, /*hidden argument*/NULL);
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_16 = V_0;
NullCheck(L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = VirtFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(36 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_16);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_18 = RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61(L_13, L_15, L_17, /*hidden argument*/NULL);
return L_18;
}
IL_0047:
{
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_19 = ___entry0;
NullCheck(L_19);
Type_t * L_20 = ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline(L_19, /*hidden argument*/NULL);
ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * L_21 = ___entry0;
NullCheck(L_21);
String_t* L_22 = ActivatedClientTypeEntry_get_ApplicationUrl_m2C321054A0F16A35E987049E8EABB90211B3FEAA_inline(L_21, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_23 = RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61(L_20, L_22, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, /*hidden argument*/NULL);
return L_23;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::CreateClientProxy(System.Type,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61 (Type_t * ___objectType0, String_t* ___url1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateClientProxy_m52A94412FBB099DCEDF93FE3A6BCA7B7ED89BF61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___url1;
V_0 = L_0;
String_t* L_1 = V_0;
NullCheck(L_1);
bool L_2 = String_EndsWith_mE4F039DCC2A9FCB8C1ED2D04B00A35E3CE16DE99(L_1, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL);
if (L_2)
{
goto IL_001b;
}
}
{
String_t* L_3 = V_0;
String_t* L_4 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_3, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL);
V_0 = L_4;
}
IL_001b:
{
String_t* L_5 = V_0;
String_t* L_6 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_5, _stringLiteral17D8071E94DF635DCEBD891F4F5F32CC30E49C02, /*hidden argument*/NULL);
V_0 = L_6;
String_t* L_7 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB(L_7, NULL, (String_t**)(&V_1), /*hidden argument*/NULL);
Type_t * L_8 = ___objectType0;
String_t* L_9 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___activationAttributes2;
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_11 = (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)il2cpp_codegen_object_new(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
RemotingProxy__ctor_mED470C821B287EAA284FAA263E1C1A98A84001C7(L_11, L_8, L_9, L_10, /*hidden argument*/NULL);
NullCheck(L_11);
RuntimeObject * L_12 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, L_11);
return L_12;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::CreateClientProxy(System.Runtime.Remoting.WellKnownClientTypeEntry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_CreateClientProxy_m65BA9587153743A3A896A2DC590129721D4EB473 (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * ___entry0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateClientProxy_m65BA9587153743A3A896A2DC590129721D4EB473_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_0 = ___entry0;
NullCheck(L_0);
Type_t * L_1 = WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline(L_0, /*hidden argument*/NULL);
WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * L_2 = ___entry0;
NullCheck(L_2);
String_t* L_3 = WellKnownClientTypeEntry_get_ObjectUrl_m75F4EAF368F72E3EB71585945ECF1856341F3170_inline(L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_4 = RemotingServices_Connect_mF20992AE1A78BC91FE90567919DA07F490A7A279(L_1, L_3, NULL, /*hidden argument*/NULL);
return L_4;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::CreateClientProxyForContextBound(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_CreateClientProxyForContextBound_m3996C22D09B570A71564ED57E813FEC83FA24757 (Type_t * ___type0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___activationAttributes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateClientProxyForContextBound_m3996C22D09B570A71564ED57E813FEC83FA24757_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * V_0 = NULL;
{
Type_t * L_0 = ___type0;
NullCheck(L_0);
bool L_1 = Type_get_IsContextful_m02EFD5BDDC6E265AE3B40B144D679AEFACEE4C8A(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002a;
}
}
{
Type_t * L_2 = ___type0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_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);
Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_5 = Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4(L_2, L_4, (bool)1, /*hidden argument*/NULL);
V_0 = ((ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF *)CastclassClass((RuntimeObject*)L_5, ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF_il2cpp_TypeInfo_var));
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * L_6 = V_0;
if (!L_6)
{
goto IL_002a;
}
}
{
ProxyAttribute_tD21FEA6CFFA6473C829A02F92AEAA1A6C23B91CF * L_7 = V_0;
Type_t * L_8 = ___type0;
NullCheck(L_7);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_9 = VirtFuncInvoker1< MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *, Type_t * >::Invoke(4 /* System.MarshalByRefObject System.Runtime.Remoting.Proxies.ProxyAttribute::CreateInstance(System.Type) */, L_7, L_8);
return L_9;
}
IL_002a:
{
Type_t * L_10 = ___type0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
String_t* L_11 = ((ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var))->get_CrossContextUrl_3();
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___activationAttributes1;
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_13 = (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)il2cpp_codegen_object_new(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
RemotingProxy__ctor_mED470C821B287EAA284FAA263E1C1A98A84001C7(L_13, L_10, L_11, L_12, /*hidden argument*/NULL);
NullCheck(L_13);
RuntimeObject * L_14 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, L_13);
return L_14;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetIdentityForUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980 (String_t* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_1 = NULL;
bool V_2 = false;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * V_3 = NULL;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = ___uri0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_1 = RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
V_1 = L_2;
V_2 = (bool)0;
}
IL_000f:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
String_t* L_5 = V_0;
NullCheck(L_4);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_4, L_5);
V_3 = ((Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 *)CastclassClass((RuntimeObject*)L_6, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6_il2cpp_TypeInfo_var));
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_7 = V_3;
if (L_7)
{
goto IL_0046;
}
}
IL_002b:
{
String_t* L_8 = ___uri0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_9 = RemotingServices_RemoveAppNameFromUri_m06AD452F0027AEAB9FF9AAE81184B6DE37879130(L_8, /*hidden argument*/NULL);
V_0 = L_9;
String_t* L_10 = V_0;
if (!L_10)
{
goto IL_0046;
}
}
IL_0035:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_11 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
String_t* L_12 = V_0;
NullCheck(L_11);
RuntimeObject * L_13 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_11, L_12);
V_3 = ((Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 *)CastclassClass((RuntimeObject*)L_13, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6_il2cpp_TypeInfo_var));
}
IL_0046:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_14 = V_3;
V_4 = L_14;
IL2CPP_LEAVE(0x55, FINALLY_004b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004b;
}
FINALLY_004b:
{ // begin finally (depth: 1)
{
bool L_15 = V_2;
if (!L_15)
{
goto IL_0054;
}
}
IL_004e:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_16 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_16, /*hidden argument*/NULL);
}
IL_0054:
{
IL2CPP_END_FINALLY(75)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(75)
{
IL2CPP_JUMP_TBL(0x55, IL_0055)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0055:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_17 = V_4;
return L_17;
}
}
// System.String System.Runtime.Remoting.RemotingServices::RemoveAppNameFromUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_RemoveAppNameFromUri_m06AD452F0027AEAB9FF9AAE81184B6DE37879130 (String_t* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_RemoveAppNameFromUri_m06AD452F0027AEAB9FF9AAE81184B6DE37879130_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_0 = RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806_inline(/*hidden argument*/NULL);
V_0 = L_0;
String_t* L_1 = V_0;
if (L_1)
{
goto IL_000b;
}
}
{
return (String_t*)NULL;
}
IL_000b:
{
String_t* L_2 = V_0;
String_t* L_3 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, L_2, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL);
V_0 = L_3;
String_t* L_4 = ___uri0;
String_t* L_5 = V_0;
NullCheck(L_4);
bool L_6 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_4, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0032;
}
}
{
String_t* L_7 = ___uri0;
String_t* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_8, /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_10 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_7, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_0032:
{
return (String_t*)NULL;
}
}
// System.Runtime.Remoting.ClientIdentity System.Runtime.Remoting.RemotingServices::GetOrCreateClientIdentity(System.Runtime.Remoting.ObjRef,System.Type,System.Object&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * RemotingServices_GetOrCreateClientIdentity_m06ABE462740B7DD4B1C078A6F8A92E7694A1998D (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef0, Type_t * ___proxyType1, RuntimeObject ** ___clientProxy2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetOrCreateClientIdentity_m06ABE462740B7DD4B1C078A6F8A92E7694A1998D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
String_t* V_1 = NULL;
RuntimeObject* V_2 = NULL;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_3 = NULL;
bool V_4 = false;
String_t* V_5 = NULL;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * V_6 = NULL;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * V_7 = NULL;
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * V_8 = NULL;
CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 * 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_0 = NULL;
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___objRef0;
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::get_ChannelInfo() */, L_0);
if (L_1)
{
goto IL_000b;
}
}
{
G_B3_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(NULL));
goto IL_0016;
}
IL_000b:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_2 = ___objRef0;
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(6 /* System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::get_ChannelInfo() */, L_2);
NullCheck(L_3);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = InterfaceFuncInvoker0< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* >::Invoke(0 /* System.Object[] System.Runtime.Remoting.IChannelInfo::get_ChannelData() */, IChannelInfo_tBB94344D943AE3690E34FC989F82D79CEE4F0F4D_il2cpp_TypeInfo_var, L_3);
G_B3_0 = L_4;
}
IL_0016:
{
V_0 = (RuntimeObject *)G_B3_0;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_5 = ___objRef0;
NullCheck(L_5);
String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Runtime.Remoting.ObjRef::get_URI() */, L_5);
RuntimeObject * L_7 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject* L_8 = RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB(L_6, L_7, (String_t**)(&V_1), /*hidden argument*/NULL);
V_2 = L_8;
String_t* L_9 = V_1;
if (L_9)
{
goto IL_0030;
}
}
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_10 = ___objRef0;
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Runtime.Remoting.ObjRef::get_URI() */, L_10);
V_1 = L_11;
}
IL_0030:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
V_3 = L_12;
V_4 = (bool)0;
}
IL_0039:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = V_3;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_13, (bool*)(&V_4), /*hidden argument*/NULL);
RuntimeObject ** L_14 = ___clientProxy2;
*((RuntimeObject **)L_14) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)NULL);
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_15 = ___objRef0;
NullCheck(L_15);
String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Runtime.Remoting.ObjRef::get_URI() */, L_15);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_17 = RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929(L_16, /*hidden argument*/NULL);
V_5 = L_17;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
String_t* L_19 = V_5;
NullCheck(L_18);
RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_18, L_19);
V_6 = ((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)IsInstClass((RuntimeObject*)L_20, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var));
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_21 = V_6;
if (!L_21)
{
goto IL_0082;
}
}
IL_0068:
{
RuntimeObject ** L_22 = ___clientProxy2;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_23 = V_6;
NullCheck(L_23);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_24 = ClientIdentity_get_ClientProxy_m00F8EE713C5435F8E61F7E27E8446EB6889E480F(L_23, /*hidden argument*/NULL);
*((RuntimeObject **)L_22) = (RuntimeObject *)L_24;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_24);
RuntimeObject ** L_25 = ___clientProxy2;
RuntimeObject * L_26 = *((RuntimeObject **)L_25);
if (!L_26)
{
goto IL_007b;
}
}
IL_0075:
{
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_27 = V_6;
V_7 = L_27;
IL2CPP_LEAVE(0xF6, FINALLY_00eb);
}
IL_007b:
{
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_28 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB(L_28, /*hidden argument*/NULL);
}
IL_0082:
{
String_t* L_29 = V_1;
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_30 = ___objRef0;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_31 = (ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)il2cpp_codegen_object_new(ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var);
ClientIdentity__ctor_m531CCE2CFB19665D380646C6B87F8E7FE02760A2(L_31, L_29, L_30, /*hidden argument*/NULL);
V_6 = L_31;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_32 = V_6;
RuntimeObject* L_33 = V_2;
NullCheck(L_32);
Identity_set_ChannelSink_m83E9ABAA9D885C2687D9F94732BB08EFF7831118_inline(L_32, L_33, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_34 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
String_t* L_35 = V_5;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_36 = V_6;
NullCheck(L_34);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_34, L_35, L_36);
Type_t * L_37 = ___proxyType1;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_38 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_37, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00e5;
}
}
IL_00aa:
{
Type_t * L_39 = ___proxyType1;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_40 = V_6;
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_41 = (RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 *)il2cpp_codegen_object_new(RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9_il2cpp_TypeInfo_var);
RemotingProxy__ctor_m28C32984A3C53F1E73B93E4DBA94861A91BD2BD5(L_41, L_39, L_40, /*hidden argument*/NULL);
V_8 = L_41;
RuntimeObject* L_42 = V_2;
V_9 = ((CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 *)IsInstClass((RuntimeObject*)L_42, CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73_il2cpp_TypeInfo_var));
CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 * L_43 = V_9;
if (!L_43)
{
goto IL_00ce;
}
}
IL_00c0:
{
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_44 = V_8;
CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 * L_45 = V_9;
NullCheck(L_45);
int32_t L_46 = CrossAppDomainSink_get_TargetDomainId_m3AE0C1B8D43C8B746173F5C3F669CBA4F8616E2C_inline(L_45, /*hidden argument*/NULL);
NullCheck(L_44);
RealProxy_SetTargetDomain_mB7310C47D68D6C382A90B1C1872A6C1ECC0165D6_inline(L_44, L_46, /*hidden argument*/NULL);
}
IL_00ce:
{
RuntimeObject ** L_47 = ___clientProxy2;
RemotingProxy_t02A995D835CE746F989867DC6713F084B355A4D9 * L_48 = V_8;
NullCheck(L_48);
RuntimeObject * L_49 = VirtFuncInvoker0< RuntimeObject * >::Invoke(7 /* System.Object System.Runtime.Remoting.Proxies.RealProxy::GetTransparentProxy() */, L_48);
*((RuntimeObject **)L_47) = (RuntimeObject *)L_49;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_47, (void*)(RuntimeObject *)L_49);
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_50 = V_6;
RuntimeObject ** L_51 = ___clientProxy2;
RuntimeObject * L_52 = *((RuntimeObject **)L_51);
NullCheck(L_50);
ClientIdentity_set_ClientProxy_m5FFB0857E02412C0C7AE4EBB04B1A93DB9DEF477(L_50, ((MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF *)CastclassClass((RuntimeObject*)L_52, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
}
IL_00e5:
{
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_53 = V_6;
V_7 = L_53;
IL2CPP_LEAVE(0xF6, FINALLY_00eb);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00eb;
}
FINALLY_00eb:
{ // begin finally (depth: 1)
{
bool L_54 = V_4;
if (!L_54)
{
goto IL_00f5;
}
}
IL_00ef:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_55 = V_3;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_55, /*hidden argument*/NULL);
}
IL_00f5:
{
IL2CPP_END_FINALLY(235)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(235)
{
IL2CPP_JUMP_TBL(0xF6, IL_00f6)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00f6:
{
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_56 = V_7;
return L_56;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.RemotingServices::GetClientChannelSinkChain(System.String,System.Object,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB (String_t* ___url0, RuntimeObject * ___channelData1, String_t** ___objectUri2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B4_0 = NULL;
RuntimeObject* G_B1_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
RuntimeObject* G_B2_0 = NULL;
{
String_t* L_0 = ___url0;
RuntimeObject * L_1 = ___channelData1;
String_t** L_2 = ___objectUri2;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = ChannelServices_CreateClientChannelSinkChain_mF3D74C368900D701AD0CECC73C0D53DE060942A4(L_0, L_1, (String_t**)L_2, /*hidden argument*/NULL);
RuntimeObject* L_4 = L_3;
G_B1_0 = L_4;
if (L_4)
{
G_B4_0 = L_4;
goto IL_0030;
}
}
{
String_t* L_5 = ___url0;
G_B2_0 = G_B1_0;
if (!L_5)
{
G_B3_0 = G_B1_0;
goto IL_001f;
}
}
{
String_t* L_6 = ___url0;
String_t* L_7 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral09E7B44CD9E126BF4269DB4199BBB266729EC7C7, L_6, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_8 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB_RuntimeMethod_var);
}
IL_001f:
{
String_t* L_9 = ___url0;
String_t* L_10 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral41A0E6C504F277C7AE4F0B2B8FF2A27CCC207CA4, L_9, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_11 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, RemotingServices_GetClientChannelSinkChain_mBF7CDC9AB521CACA4DCB8823D7619A25D3888AEB_RuntimeMethod_var);
}
IL_0030:
{
return G_B4_0;
}
}
// System.Runtime.Remoting.ClientActivatedIdentity System.Runtime.Remoting.RemotingServices::CreateContextBoundObjectIdentity(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * RemotingServices_CreateContextBoundObjectIdentity_m2E8ACF6876C3D96515EF5EFF1853B5773D9766F2 (Type_t * ___objectType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateContextBoundObjectIdentity_m2E8ACF6876C3D96515EF5EFF1853B5773D9766F2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Type_t * L_0 = ___objectType0;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_1 = (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)il2cpp_codegen_object_new(ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var);
ClientActivatedIdentity__ctor_mDD73F17C3071617E002404B442A8F29CA5555909(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_2 = L_1;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * L_3 = ChannelServices_get_CrossContextChannel_mC44A705B5F28920BC7740D453812154206294153_inline(/*hidden argument*/NULL);
NullCheck(L_2);
Identity_set_ChannelSink_m83E9ABAA9D885C2687D9F94732BB08EFF7831118_inline(L_2, L_3, /*hidden argument*/NULL);
return L_2;
}
}
// System.Runtime.Remoting.ClientActivatedIdentity System.Runtime.Remoting.RemotingServices::CreateClientActivatedServerIdentity(System.MarshalByRefObject,System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2 (MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___realObject0, Type_t * ___objectType1, String_t* ___objectUri2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateClientActivatedServerIdentity_m0EAC2EBBAC00389543414332CDE0387CBBBDFBA2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___objectUri2;
Type_t * L_1 = ___objectType1;
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_2 = (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)il2cpp_codegen_object_new(ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var);
ClientActivatedIdentity__ctor_mDD73F17C3071617E002404B442A8F29CA5555909(L_2, L_0, L_1, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_3 = L_2;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_4 = ___realObject0;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_5 = Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189(/*hidden argument*/NULL);
NullCheck(L_3);
ServerIdentity_AttachServerObject_mDAF46A8A96123B31091CEDBAA0070BE01226F7DD(L_3, L_4, L_5, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_6 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91(L_6, /*hidden argument*/NULL);
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_7 = L_6;
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_8 = ___realObject0;
NullCheck(L_8);
RuntimeObject * L_9 = VirtFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.MarshalByRefObject::InitializeLifetimeService() */, L_8);
NullCheck(L_7);
ServerIdentity_StartTrackingLifetime_m42193F67CABCFAC75C1652D2AE84930FBAEEC43C(L_7, ((RuntimeObject*)Castclass((RuntimeObject*)L_9, ILease_t341D788D16ADC594871883DAC6ADB6A316E1AF4B_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_7;
}
}
// System.Runtime.Remoting.ServerIdentity System.Runtime.Remoting.RemotingServices::CreateWellKnownServerIdentity(System.Type,System.String,System.Runtime.Remoting.WellKnownObjectMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9 (Type_t * ___objectType0, String_t* ___objectUri1, int32_t ___mode2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_CreateWellKnownServerIdentity_m0BBF53F861F86CEBE77FBA1F0D9E1325B6FC3AD9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * V_0 = NULL;
{
int32_t L_0 = ___mode2;
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_0013;
}
}
{
String_t* L_1 = ___objectUri1;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_2 = Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189(/*hidden argument*/NULL);
Type_t * L_3 = ___objectType0;
SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083 * L_4 = (SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083 *)il2cpp_codegen_object_new(SingleCallIdentity_tAFE479E42C2A9EFED817B8D3426104994CC04083_il2cpp_TypeInfo_var);
SingleCallIdentity__ctor_m4B0D7D93CC9617660664172436323EF610FFC0D1(L_4, L_1, L_2, L_3, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_0020;
}
IL_0013:
{
String_t* L_5 = ___objectUri1;
IL2CPP_RUNTIME_CLASS_INIT(Context_tE86AB6B3D9759C8E715184808579EFE761683724_il2cpp_TypeInfo_var);
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_6 = Context_get_DefaultContext_m8618C20C00FFE2C0CEEE203BDCC93F45C7FA7189(/*hidden argument*/NULL);
Type_t * L_7 = ___objectType0;
SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5 * L_8 = (SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5 *)il2cpp_codegen_object_new(SingletonIdentity_t766AB38F2A063031B6DBEE246C251FC02F3E1DB5_il2cpp_TypeInfo_var);
SingletonIdentity__ctor_m40742B79B36568EEEEF86558C348DDB254AA40CC(L_8, L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
}
IL_0020:
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91(L_9, /*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_10 = V_0;
return L_10;
}
}
// System.Void System.Runtime.Remoting.RemotingServices::RegisterServerIdentity(System.Runtime.Remoting.ServerIdentity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91 (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * ___identity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_3 = ___identity0;
NullCheck(L_3);
String_t* L_4 = Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_2, L_4);
if (!L_5)
{
goto IL_003d;
}
}
IL_0022:
{
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_6 = ___identity0;
NullCheck(L_6);
String_t* L_7 = Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline(L_6, /*hidden argument*/NULL);
String_t* L_8 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteralAE9A210469B99538B4F81CFD2F6B381E09B6EE67, L_7, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C * L_9 = (RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C *)il2cpp_codegen_object_new(RemotingException_tDD6EC24895707C7D437EF6437E3913758E8DF02C_il2cpp_TypeInfo_var);
RemotingException__ctor_mE2685EFC6A282F2E8409AFCF860FCE42BAE0ED5B(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, RemotingServices_RegisterServerIdentity_mD34659899E17A5E79C5410A83351DB7D92053F91_RuntimeMethod_var);
}
IL_003d:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_10 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_11 = ___identity0;
NullCheck(L_11);
String_t* L_12 = Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline(L_11, /*hidden argument*/NULL);
ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * L_13 = ___identity0;
NullCheck(L_10);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_10, L_12, L_13);
IL2CPP_LEAVE(0x5A, FINALLY_0050);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0050;
}
FINALLY_0050:
{ // begin finally (depth: 1)
{
bool L_14 = V_1;
if (!L_14)
{
goto IL_0059;
}
}
IL_0053:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_15, /*hidden argument*/NULL);
}
IL_0059:
{
IL2CPP_END_FINALLY(80)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(80)
{
IL2CPP_JUMP_TBL(0x5A, IL_005a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005a:
{
return;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::GetProxyForRemoteObject(System.Runtime.Remoting.ObjRef,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objref0, Type_t * ___classToProxy1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetProxyForRemoteObject_mEED7CBE4AA06C81FDEA18126218D5A44718E727E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * V_0 = NULL;
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___objref0;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Runtime.Remoting.ObjRef::get_URI() */, L_0);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = RemotingServices_GetIdentityForUri_mCDD91C8861896C0BF4E83D979D373A81BC61F980(L_1, /*hidden argument*/NULL);
V_0 = ((ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 *)IsInstClass((RuntimeObject*)L_2, ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416_il2cpp_TypeInfo_var));
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_3 = V_0;
if (!L_3)
{
goto IL_001b;
}
}
{
ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * L_4 = V_0;
NullCheck(L_4);
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_5 = ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline(L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001b:
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_6 = ___objref0;
Type_t * L_7 = ___classToProxy1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RuntimeObject * L_8 = RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38(L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::GetRemoteObject(System.Runtime.Remoting.ObjRef,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38 (ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * ___objRef0, Type_t * ___proxyType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetRemoteObject_m5DB2A77DC4B11E76BF9B562F3841C5CAE4371A38_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
ObjRef_tA220448511DCA671EFC23F87F1C7FCA6ACC749D2 * L_0 = ___objRef0;
Type_t * L_1 = ___proxyType1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
RemotingServices_GetOrCreateClientIdentity_m06ABE462740B7DD4B1C078A6F8A92E7694A1998D(L_0, L_1, (RuntimeObject **)(&V_0), /*hidden argument*/NULL);
RuntimeObject * L_2 = V_0;
return L_2;
}
}
// System.Byte[] System.Runtime.Remoting.RemotingServices::SerializeCallData(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* RemotingServices_SerializeCallData_m593FAD621A4004236D395E9BF5BB0FBFF1651B69 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_SerializeCallData_m593FAD621A4004236D395E9BF5BB0FBFF1651B69_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 V_0;
memset((&V_0), 0, sizeof(V_0));
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_1 = NULL;
Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B V_2;
memset((&V_2), 0, sizeof(V_2));
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_0 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_0);
Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B L_1 = Thread_GetExecutionContextReader_m94A554E99BC4602CE1703DFBA4C96373208D1A4B(L_0, /*hidden argument*/NULL);
V_2 = L_1;
Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 L_2 = Reader_get_LogicalCallContext_m2ED53FE369B9E3B722607F004EC392320C97D56D((Reader_t5766DE258B6B590281150D8DB517B651F9F4F33B *)(&V_2), /*hidden argument*/NULL);
V_0 = L_2;
bool L_3 = Reader_get_IsNull_mFD27D8A619397DF6F304BD25A8BD532593CF87F7((Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *)(&V_0), /*hidden argument*/NULL);
if (L_3)
{
goto IL_0037;
}
}
{
CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A * L_4 = (CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A *)il2cpp_codegen_object_new(CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A_il2cpp_TypeInfo_var);
CACD__ctor_mB97157ADE90FFB1C40E799D3FB015157C823D745(L_4, /*hidden argument*/NULL);
CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A * L_5 = L_4;
RuntimeObject * L_6 = ___obj0;
NullCheck(L_5);
L_5->set_d_0(L_6);
CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A * L_7 = L_5;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_8 = Reader_Clone_m154E31CFDB4E65DE4336EA856F081B8E4E595A83((Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 *)(&V_0), /*hidden argument*/NULL);
NullCheck(L_7);
L_7->set_c_1(L_8);
___obj0 = L_7;
}
IL_0037:
{
RuntimeObject * L_9 = ___obj0;
if (L_9)
{
goto IL_003c;
}
}
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_003c:
{
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_10 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m9D0F92C76EFEDA651B678A98EB693FD945286DC2(L_10, /*hidden argument*/NULL);
V_1 = L_10;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_11 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get__serializationFormatter_1();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_12 = V_1;
RuntimeObject * L_13 = ___obj0;
NullCheck(L_11);
BinaryFormatter_Serialize_mBA2FB6DB94D34F42E14DF7D788056FCF0CF41D52(L_11, L_12, L_13, /*hidden argument*/NULL);
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_14 = V_1;
NullCheck(L_14);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(28 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_14);
return L_15;
}
}
// System.Object System.Runtime.Remoting.RemotingServices::DeserializeCallData(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_DeserializeCallData_mBA977F9792BE8865EEBC5985485FC98CB4CA7782 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_DeserializeCallData_mBA977F9792BE8865EEBC5985485FC98CB4CA7782_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_0 = NULL;
RuntimeObject * V_1 = NULL;
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * V_2 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_2 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m731754F1435D29F87C407D84ED47AF35FFF9B0EF(L_2, L_1, /*hidden argument*/NULL);
V_0 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_3 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get__deserializationFormatter_2();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = V_0;
NullCheck(L_3);
RuntimeObject * L_5 = BinaryFormatter_Deserialize_m20A831B13DF5C3F031F2141730291630A16A32AD(L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
RuntimeObject * L_6 = V_1;
if (!((CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A *)IsInstClass((RuntimeObject*)L_6, CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A_il2cpp_TypeInfo_var)))
{
goto IL_0055;
}
}
{
RuntimeObject * L_7 = V_1;
CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A * L_8 = ((CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A *)CastclassClass((RuntimeObject*)L_7, CACD_t077B81E970254E4A14C3397B1193DF995DCDB11A_il2cpp_TypeInfo_var));
NullCheck(L_8);
RuntimeObject * L_9 = L_8->get_d_0();
V_1 = L_9;
NullCheck(L_8);
RuntimeObject * L_10 = L_8->get_c_1();
V_2 = ((LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E *)CastclassSealed((RuntimeObject*)L_10, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E_il2cpp_TypeInfo_var));
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_11 = V_2;
NullCheck(L_11);
bool L_12 = LogicalCallContext_get_HasInfo_mCF03FCA58825221568878DED1D88935FDF45549A(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0055;
}
}
{
Thread_tF60E0A146CD3B5480CB65FF9B6016E84C5460CC7 * L_13 = Thread_get_CurrentThread_mB7A83CAE2B9A74CEA053196DFD1AF1E7AB30A70E(/*hidden argument*/NULL);
NullCheck(L_13);
ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * L_14 = Thread_GetMutableExecutionContext_mD22CBCEAD2B95B779612C42D8B634B8B5163BA72(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_15 = ExecutionContext_get_LogicalCallContext_m8BC3B30F9A6E55E7739BA1DF28913107CC4B20E3(L_14, /*hidden argument*/NULL);
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_16 = V_2;
NullCheck(L_15);
LogicalCallContext_Merge_mB5D94134FDB381F70CB295ED542DE5444D8388E3(L_15, L_16, /*hidden argument*/NULL);
}
IL_0055:
{
RuntimeObject * L_17 = V_1;
return L_17;
}
}
// System.Byte[] System.Runtime.Remoting.RemotingServices::SerializeExceptionData(System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* RemotingServices_SerializeExceptionData_mD4DDED5D74613AA25D3D41A1E459789DF724C264 (Exception_t * ___ex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_SerializeExceptionData_mD4DDED5D74613AA25D3D41A1E459789DF724C264_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_0002:
try
{ // begin try (depth: 1)
IL2CPP_LEAVE(0x1E, FINALLY_0004);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0004;
}
FINALLY_0004:
{ // begin finally (depth: 1)
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_0 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m9D0F92C76EFEDA651B678A98EB693FD945286DC2(L_0, /*hidden argument*/NULL);
V_1 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * L_1 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get__serializationFormatter_1();
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_2 = V_1;
Exception_t * L_3 = ___ex0;
NullCheck(L_1);
BinaryFormatter_Serialize_mBA2FB6DB94D34F42E14DF7D788056FCF0CF41D52(L_1, L_2, L_3, /*hidden argument*/NULL);
MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_4 = V_1;
NullCheck(L_4);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(28 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_4);
V_0 = L_5;
IL2CPP_END_FINALLY(4)
} // end finally (depth: 1)
IL2CPP_CLEANUP(4)
{
IL2CPP_JUMP_TBL(0x1E, IL_001e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_001e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
return L_6;
}
}
// System.Void System.Runtime.Remoting.RemotingServices::RegisterInternalChannels()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_RegisterInternalChannels_m69A4E09D5E4777709530898636AC7EBA8032949F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_RegisterInternalChannels_m69A4E09D5E4777709530898636AC7EBA8032949F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CrossAppDomainChannel_tDB80218239B9773152AF9FEF5AFA01DD2E2C4FE6_il2cpp_TypeInfo_var);
CrossAppDomainChannel_RegisterCrossAppDomainChannel_m9AF7B2D169F1E6F604713DB74B1BF6E3D4D1D7C6(/*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.RemotingServices::DisposeIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___ident0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_DisposeIdentity_m5421DA06D07E221314EA3B8A86DB3319F1CF65EB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = ___ident0;
NullCheck(L_2);
bool L_3 = Identity_get_Disposed_m57B594F2F3A3FCCA0BFBF1AF65FE102A133DA137_inline(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0050;
}
}
IL_0018:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_4 = ___ident0;
V_2 = ((ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 *)IsInstClass((RuntimeObject*)L_4, ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9_il2cpp_TypeInfo_var));
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
ClientIdentity_tAEDCD514F337D6FFF55BF4CA5D9FFB2D56218FE9 * L_7 = V_2;
NullCheck(L_7);
String_t* L_8 = ClientIdentity_get_TargetUri_mFD169AEDB67445C13B5ECD7A09F83DF586B078DF(L_7, /*hidden argument*/NULL);
String_t* L_9 = RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929(L_8, /*hidden argument*/NULL);
NullCheck(L_6);
VirtActionInvoker1< RuntimeObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_6, L_9);
goto IL_0049;
}
IL_0039:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_10 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_11 = ___ident0;
NullCheck(L_11);
String_t* L_12 = Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_10);
VirtActionInvoker1< RuntimeObject * >::Invoke(26 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_10, L_12);
}
IL_0049:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_13 = ___ident0;
NullCheck(L_13);
Identity_set_Disposed_m28D1BF11148E67DEE2AC2BD5681D4909DB6CC8CD_inline(L_13, (bool)1, /*hidden argument*/NULL);
}
IL_0050:
{
IL2CPP_LEAVE(0x5C, FINALLY_0052);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0052;
}
FINALLY_0052:
{ // begin finally (depth: 1)
{
bool L_14 = V_1;
if (!L_14)
{
goto IL_005b;
}
}
IL_0055:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_15, /*hidden argument*/NULL);
}
IL_005b:
{
IL2CPP_END_FINALLY(82)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(82)
{
IL2CPP_JUMP_TBL(0x5C, IL_005c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_005c:
{
return;
}
}
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetMessageTargetIdentity(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetMessageTargetIdentity_m0891BCFD5ED3C291C0F851EC37AD74753A23C45E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * V_3 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___msg0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___msg0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)));
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = InterfaceFuncInvoker0< Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * >::Invoke(0 /* System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.IInternalMessage::get_TargetIdentity() */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)));
return L_2;
}
IL_0014:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
V_0 = L_3;
V_1 = (bool)0;
}
IL_001c:
try
{ // begin try (depth: 1)
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_4, (bool*)(&V_1), /*hidden argument*/NULL);
RuntimeObject* L_5 = ___msg0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_5, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var)));
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_5, IMethodMessage_tAF63A8DBD140DA0E8F5D8385270F81429CAA6420_il2cpp_TypeInfo_var)));
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var);
String_t* L_7 = RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929(L_6, /*hidden argument*/NULL);
V_2 = L_7;
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = ((RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_StaticFields*)il2cpp_codegen_static_fields_for(RemotingServices_tC5439C1B728EDB8838F3C744E61C69A0D17FCA51_il2cpp_TypeInfo_var))->get_uri_hash_0();
String_t* L_9 = V_2;
NullCheck(L_8);
RuntimeObject * L_10 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_8, L_9);
V_3 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)IsInstClass((RuntimeObject*)L_10, ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2_il2cpp_TypeInfo_var));
IL2CPP_LEAVE(0x52, FINALLY_0048);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0048;
}
FINALLY_0048:
{ // begin finally (depth: 1)
{
bool L_11 = V_1;
if (!L_11)
{
goto IL_0051;
}
}
IL_004b:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL);
}
IL_0051:
{
IL2CPP_END_FINALLY(72)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(72)
{
IL2CPP_JUMP_TBL(0x52, IL_0052)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0052:
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_13 = V_3;
return L_13;
}
}
// System.Void System.Runtime.Remoting.RemotingServices::SetMessageTargetIdentity(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_SetMessageTargetIdentity_m416FD8C081A92BCF654DFE0E309DA17F0CF05A4B (RuntimeObject* ___msg0, Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * ___ident1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_SetMessageTargetIdentity_m416FD8C081A92BCF654DFE0E309DA17F0CF05A4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___msg0;
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_2 = ___ident1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)));
InterfaceActionInvoker1< Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * >::Invoke(1 /* System.Void System.Runtime.Remoting.Messaging.IInternalMessage::set_TargetIdentity(System.Runtime.Remoting.Identity) */, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IInternalMessage_t58FBC0B8066E38849394FD87833FBE9A68E85FAE_il2cpp_TypeInfo_var)), L_2);
}
IL_0014:
{
return;
}
}
// System.Boolean System.Runtime.Remoting.RemotingServices::UpdateOutArgObject(System.Reflection.ParameterInfo,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_UpdateOutArgObject_m43E068A1FAB184AFEF32C91629393EC6556939D1 (ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * ___pi0, RuntimeObject * ___local1, RuntimeObject * ___remote2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_UpdateOutArgObject_m43E068A1FAB184AFEF32C91629393EC6556939D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeArray * V_0 = NULL;
{
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB * L_0 = ___pi0;
NullCheck(L_0);
Type_t * L_1 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_0);
NullCheck(L_1);
bool L_2 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_003f;
}
}
{
RuntimeObject * L_3 = ___local1;
NullCheck(((RuntimeArray *)CastclassClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var)));
int32_t L_4 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(((RuntimeArray *)CastclassClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_003f;
}
}
{
RuntimeObject * L_5 = ___local1;
V_0 = ((RuntimeArray *)CastclassClass((RuntimeObject*)L_5, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray * L_6 = V_0;
NullCheck(L_6);
int32_t L_7 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_6, /*hidden argument*/NULL);
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
{
goto IL_003f;
}
}
{
RuntimeObject * L_8 = ___remote2;
RuntimeArray * L_9 = V_0;
RuntimeArray * L_10 = V_0;
NullCheck(L_10);
int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434(((RuntimeArray *)CastclassClass((RuntimeObject*)L_8, RuntimeArray_il2cpp_TypeInfo_var)), L_9, L_11, /*hidden argument*/NULL);
return (bool)1;
}
IL_003f:
{
return (bool)0;
}
}
// System.String System.Runtime.Remoting.RemotingServices::GetNormalizedUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929 (String_t* ___uri0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingServices_GetNormalizedUri_m9EBCDC8AB59643787C063439921748C448B52929_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___uri0;
NullCheck(L_0);
bool L_1 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_0, _stringLiteral42099B4AF021E53FD8FD4E056C2568D7C2E3FFA8, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0015;
}
}
{
String_t* L_2 = ___uri0;
NullCheck(L_2);
String_t* L_3 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_2, 1, /*hidden argument*/NULL);
return L_3;
}
IL_0015:
{
String_t* L_4 = ___uri0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * RealProxy_get_ObjectIdentity_m550B81C1A6D5324F3B3C8C0411327A10561BD212_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, const RuntimeMethod* method)
{
{
Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * L_0 = __this->get__objectIdentity_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * LocalDataStoreHolder_get_Store_m2C6F36680CF6788220C9A3F029576541763FB8B5_inline (LocalDataStoreHolder_tE0636E08496405406FD63190AC51EEB2EE51E304 * __this, const RuntimeMethod* method)
{
{
LocalDataStore_t6C2EF76DEFF7A28E1786284FA24CE62EAFC83BEE * L_0 = __this->get_m_Store_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Context_tE86AB6B3D9759C8E715184808579EFE761683724 * ServerIdentity_get_Context_m579EBEF4C5604D4B210C639E6D8DAF100B403015_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method)
{
{
Context_tE86AB6B3D9759C8E715184808579EFE761683724 * L_0 = __this->get__context_10();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_LeaseTime_m8D9AE2DE5C5AA4E239538DE8DDCF579F8BECACD1mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseTime_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_RenewOnCallTime_m2F618D2FF8A8C0A11020F3EF35DC25EABB206218mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__renewOnCallTime_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_SponsorshipTimeout_m66EDBFD928382D170E1D62BA9FC8044B96723738mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__sponsorshipTimeout_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * ServerIdentity_get_Lease_m070A18792C841F4A2CF9D611F20113F172966F62_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method)
{
{
Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * L_0 = __this->get__lease_11();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_get_LeaseManagerPollTime_m861201FED8057DE679D3ED3C707660554F6D30D5mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var);
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_0 = ((LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_t90BD644562BA5F39A24BE12586EAAC8179AE4A4B_il2cpp_TypeInfo_var))->get__leaseManagerPollTime_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Lease_get_CurrentState_mEA64B32B0420975A794DCD40AC6ADB6C955652C2_inline (Lease_t33787DBF803EE2586CBFDC46E3528D17F14AD3A3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__currentState_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__key_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_1();
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 void TimeSpan__ctor_mEB013EB288370617E8D465D75BE383C4058DB5A5_inline (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, int64_t ___ticks0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___ticks0;
__this->set__ticks_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ExecutionContext_set_LogicalCallContext_m325371A914D0CA3A3407D2138B06E16B6DB926B6_inline (ExecutionContext_t0E11C30308A4CC964D8A2EA9132F9BDCE5362C70 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___value0, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___value0;
__this->set__logicalCallContext_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_m0A36275A970AF6E1FC5A2A67875A32C048573E00_inline (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_m509E3F1E37E82149EDB396B84A89A2E3ED1D93B4_inline (CallContextRemotingData_t40838E8CBCE35E4459B70A8F701128385E2D1347 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__logicalCallID_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_ChannelSink_mAD4AEDC6EA61AE7EF16098B7F22BEC20817FC589_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__channelSink_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MessageDictionary_set_MethodKeys_m136962DBC5488FF3AA68CA22416A34C351E95669_inline (MessageDictionary_tC2DDCAFD65B74954A76393BCE90E57F58298F5C5 * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___value0, const RuntimeMethod* method)
{
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = ___value0;
__this->set__methodKeys_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * IllogicalCallContext_get_HostContext_m142C53F446A09A12688E1932173BAD218D4A821B_inline (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_HostContext_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void IllogicalCallContext_set_HostContext_m12BBD230B82D8D2DE0E28E2E9FA6FA46F266AE7E_inline (IllogicalCallContext_t86AF2EA64B3A9BB99C979A1C2EC3578C5D7EB179 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
__this->set_m_HostContext_1(L_0);
return;
}
}
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 void Reader__ctor_m484F7B31064D62F858B1860471E05068A4194B7E_inline (Reader_t8A0F3818A710941785287CE8D7184C05480C2EA6 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___ctx0, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___ctx0;
__this->set_m_ctx_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* SerializationEntry_get_Name_m364D6CAEAD32EE66700B47B65E80C03D80596DC4_inline (SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_m_name_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * SerializationEntry_get_Value_m6E7295904D91A38BFE2C47C662E75E8063ABC048_inline (SerializationEntry_tA4CE7B0176B45BD820A7802C84479174F5EBE5EA * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_m_value_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* CADMethodCallMessage_get_Uri_m15EEB5FEBEF308CC593B7EFFD2480E2C2E393B1E_inline (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_5();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CADMethodCallMessage_get_PropertiesCount_mC293969177A5F92BFDBA4DF33985FAB6B80303A3_inline (CADMethodCallMessage_t7B9A972EAA7214F4072621D30B449A5BADC3BFF8 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__propertyCount_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* MethodCall_get_Uri_m37614C649332CE054E21D0C43F427A9B010DB14E_inline (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MethodCall_set_Uri_mD2C68895B8A44372C4D9F5DB32F3A3536762A468_inline (MethodCall_tF8FFD68F9EB80746F22EA5B9C23E9701A440E5CA * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CADMethodReturnMessage_get_PropertiesCount_mDCAC8C0CD1B4EB2D10BA2F38486790B5AE2F4B9A_inline (CADMethodReturnMessage_tC46DD1930F6C9F9EF55AAEBD5F3C638BD9FE823C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t427360000344A4FE250725A55B58FFB950AE5C6B *)__this)->get__propertyCount_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void MethodResponse_set_Uri_m6A8681536CBB05AF2F4BD8FFC7A136E8E7003CDC_inline (MethodResponse_t185820C6B3E7D56E9026084CB2CEF1387151D907 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ReturnMessage_get_Uri_m3591EF63BD17A684921801695437DD4E15367C7E_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ReturnMessage_set_Uri_mCA6CBC9645665E22ED5E5E67FDA14B72D6F5CDB9_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__uri_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodBase_t * ReturnMessage_get_MethodBase_m7D3748540C2572738F4B0AFC940DC88D5F11DD20_inline (ReturnMessage_tCB42BAB06521388D0FC8E5745FC9A74FCC4E6E03 * __this, const RuntimeMethod* method)
{
{
MethodBase_t * L_0 = __this->get__methodBase_6();
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 void MonoMethodMessage_set_LogicalCallContext_mC537D5CD5A24D556624216727BF10D33FB318A3F_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * ___value0, const RuntimeMethod* method)
{
{
LogicalCallContext_t3A9A7C02A28577F0879F6E950E46EEC595731D7E * L_0 = ___value0;
__this->set_ctx_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * MonoMethodMessage_get_AsyncResult_m329B3D6374893F99FB6B06B815B488E9A320D8CF_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * L_0 = __this->get_asyncResult_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void AsyncResult_set_CallMessage_mAD854B93251BE37936DCE2234D88E9C00E7C2E8D_inline (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * ___value0, const RuntimeMethod* method)
{
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_0 = ___value0;
__this->set_call_message_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MethodBase_t * MonoMethodMessage_get_MethodBase_mD737855945B1C91D1E0C871472A53EAE73E349E8_inline (MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * __this, const RuntimeMethod* method)
{
{
MonoMethod_t * L_0 = __this->get_method_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * AsyncResult_get_CallMessage_m2FD4E7BE9C85D209372C98075BFA603C2CCE577C_inline (AsyncResult_tCCDC69FF29D3DE32F7BD57870BBC329EFF8E58E2 * __this, const RuntimeMethod* method)
{
{
MonoMethodMessage_t0846334ADE91F66FECE638BEF57256CFF6EEA234 * L_0 = __this->get_call_message_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ClientActivatedIdentity_GetServerObject_mDDCB005FDB407F73B3970F2797B8C07E5683B4D4_inline (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ((ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 *)__this)->get__serverObject_8();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RealProxy_AttachServer_mC9D2A70E80B2050BD2653E7247B05E673A0DD6CF_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___s0, const RuntimeMethod* method)
{
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___s0;
__this->set__server_2(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void ClientActivatedIdentity_SetClientProxy_m19D6E3E55E17496B9810A34B5CAAF37B0DD575AD_inline (ClientActivatedIdentity_tD2B498BA138D899A8E9CBF8959FDFFDE84C88416 * __this, MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * ___obj0, const RuntimeMethod* method)
{
{
MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF * L_0 = ___obj0;
__this->set__targetThis_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* Identity_get_ObjectUri_m7CB73EF5E2101BC43A35E56AA506C6E659928BD9_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__objectUri_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_EnvoySink_m3C9ABB6C826A976FB6B2CD7DC4CEB343AD284D84_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__envoySink_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RuntimeFieldHandle__ctor_m0F5089DB23BC2C4CB780462950561A777E9480F1_inline (RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF * __this, intptr_t ___v0, const RuntimeMethod* method)
{
{
intptr_t L_0 = ___v0;
__this->set_value_0((intptr_t)L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ActivatedClientTypeEntry_get_ObjectType_m780E354673354C675CA62263EA9DE4CB1067EAD1_inline (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_obj_type_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ActivatedServiceTypeEntry_get_ObjectType_mD7930FD39E47012C78199EACBDBF177AD2B2DA9C_inline (ActivatedServiceTypeEntry_tB1BDD1ACD7B6480B8357F0BC2614E513D9C6C818 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_obj_type_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * WellKnownClientTypeEntry_get_ObjectType_m7B955F6C9EBB0DE2122D9167834691511775A852_inline (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_obj_type_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* WellKnownServiceTypeEntry_get_ObjectUri_m57AA90363CFBE85146EEE8BB6C92FEB574E3DF06_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_obj_uri_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * WellKnownServiceTypeEntry_get_ObjectType_m66AB374A118C20B231AB450938D67776EF7D6EED_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get_obj_type_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t WellKnownServiceTypeEntry_get_Mode_m2BF9E3CAB114FC05F1C871200E9F2BB6D88C4A71_inline (WellKnownServiceTypeEntry_t08DE2F9BF2A5B8E02E5A35F8CCEDBA24240605EE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_obj_mode_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void BinaryFormatter_set_AssemblyFormat_m7D82B2B610F97286886BAB761B98E6655056E8F7_inline (BinaryFormatter_t116398AB9D7E425E4CFF83C37824A46443A2E6D0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_m_assemblyFormat_4(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Type_t * ServerIdentity_get_ObjectType_mB93B782F357A4AFBFE6E8A7C0668F5D0CB7FDAC2_inline (ServerIdentity_t93C5C5C4D608C5E714F0C5061B9BFC17B3B567D2 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = __this->get__objectType_7();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_ObjectUri_mE4630E3F65B2A6E9DA60D830975549031A9EA3B8_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__objectUri_0(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* ActivatedClientTypeEntry_get_ApplicationUrl_m2C321054A0F16A35E987049E8EABB90211B3FEAA_inline (ActivatedClientTypeEntry_t6367ED1F07EDEAE5D126B4522150495BF306EEBD * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_applicationUrl_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* WellKnownClientTypeEntry_get_ObjectUrl_m75F4EAF368F72E3EB71585945ECF1856341F3170_inline (WellKnownClientTypeEntry_tC1228B4DBC42EA6BB866007CE019B62E21DA6053 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_obj_url_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_get_ApplicationName_m86683CE3F371919C9156B5EB962F0EB12BAED806mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var);
String_t* L_0 = ((RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t6D5B0265380E8E3CCDBA8F8F2F0CFBBBF8DFA0CD_il2cpp_TypeInfo_var))->get_applicationName_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_ChannelSink_m83E9ABAA9D885C2687D9F94732BB08EFF7831118_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set__channelSink_1(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t CrossAppDomainSink_get_TargetDomainId_m3AE0C1B8D43C8B746173F5C3F669CBA4F8616E2C_inline (CrossAppDomainSink_tC1A174A06188AA3A73AFF4F8D5DE8587A94E3C73 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__domainID_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void RealProxy_SetTargetDomain_mB7310C47D68D6C382A90B1C1872A6C1ECC0165D6_inline (RealProxy_t4B0A745F7C99373132CC67FE86D13421411361EF * __this, int32_t ___domainId0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___domainId0;
__this->set__targetDomainId_3(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * ChannelServices_get_CrossContextChannel_mC44A705B5F28920BC7740D453812154206294153_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_get_CrossContextChannel_mC44A705B5F28920BC7740D453812154206294153mscorlib10_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var);
CrossContextChannel_t570CF39AB82211564E5A14CCA5B3AD97E9CBC554 * L_0 = ((ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_t9DCC65000F5F91AACF7569FDF2C94FB0F148FCB4_il2cpp_TypeInfo_var))->get__crossContextSink_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Identity_get_Disposed_m57B594F2F3A3FCCA0BFBF1AF65FE102A133DA137_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get__disposed_6();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Identity_set_Disposed_m28D1BF11148E67DEE2AC2BD5681D4909DB6CC8CD_inline (Identity_tB4E8BEFF42D505C9B24C9284934E6538F29606B6 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set__disposed_6(L_0);
return;
}
}
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 int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared_inline (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mBA2AF20A35144E0C43CD721A22EAC9FCA15D6550(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (int32_t)L_3);
return L_4;
}
}
| [
"[email protected]"
] | |
9e88a5c08b9968c6866dc633e4d6b221525dad57 | 8855f07db60411f83518a640384dbc1c1dd93ab6 | /offline_2/Rotation.h | d1033046021ab4c71d20c7daa8b7aa639002405b | [] | no_license | marufzaber/Spinnaker-Tower | e81cf6716a991e95ec3f2a239aaf06dd6a6214ec | 340a9571ea8a78aa9ed98229671a11ea24129c2d | refs/heads/master | 2021-01-23T02:35:30.084811 | 2017-03-24T00:20:08 | 2017-03-24T00:20:08 | 86,010,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 166 | h | #pragma once
class Rotation
{
public:
double angle, x,y,z;
Rotation(void);
Rotation(double angle, double x, double y, double z);
~Rotation(void);
};
| [
"[email protected]"
] | |
2570f8270439dac06e3ce5a545847e761827df6f | 5bde31d6164b5896041546e841852360c2617164 | /SM-CompetitionPlusC++/CompPlus_Scenes/General Scenes/DAGarden.h | e23f1f48394b0ffb8bce098d105a65d686574e76 | [] | no_license | CarJem/CompetitionPlusCode | 96cc9e5ee7d93ab8a89fb5f0316d3df82a26aa37 | edcd9e4a6094f37eec2fe9853edf7e907531941e | refs/heads/master | 2023-01-15T20:43:49.657277 | 2020-11-10T01:59:26 | 2020-11-10T01:59:26 | 287,567,803 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 584 | h | #pragma once
namespace CompPlus_DAGarden_Core
{
extern void OnFrame();
}
namespace CompPlus_DAGarden
{
extern void OnFrame();
extern void Init();
}
namespace CompPlus_DAGarden_Mania
{
extern void OnFrame();
extern void Init();
}
namespace CompPlus_DAGarden_Encore
{
extern void OnFrame();
extern void Init();
}
namespace CompPlus_DAGarden_Custom
{
extern void OnFrame();
extern void Init();
}
namespace CompPlus_DAGarden_Chaotix
{
extern void OnFrame();
extern void OnDraw();
extern void Reload();
extern void Init();
} | [
"[email protected]"
] | |
b7e5ab1fa4dc6431e347dfb4e9e7bc2fe1ae6a34 | 3f29772a6bc754568e77f446b90a83e0da96cede | /midi2qm/MidiLoader.h | 9e9439eab0f03d049169f838d49963cbc71774fa | [] | no_license | grimtraveller/karma | ff9ff417fe93735a53ea64349eb85832a236f41a | e2b9b23928dabb22a06bf8483560d25f799bf4ed | refs/heads/master | 2020-12-25T21:12:36.721080 | 2004-01-01T18:37:03 | 2004-01-01T18:37:03 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 633 | h | /*
* Converts midi-files and fxb-banks into the format used by the Karma synth
*
* $Id: MidiLoader.h,v 1.2 2004/01/01 16:06:19 Fredrik Ehnbom Exp $
* Author : Fredrik Ehnbom
*
* All rights reserved. Reproduction, modification, use or disclosure
* to third parties without express authority is forbidden.
* Copyright © Outbreak, Sweden, 2003, 2004.
*
*/
#include <stdio.h>
struct MidiEvent {
MidiEvent *next;
long time;
char data[3];
};
class MidiLoader {
public:
MidiEvent *event;
int eventNum;
int timeformat;
MidiLoader(FILE *in);
~MidiLoader();
void readTrack(FILE *fp);
void addEvent(MidiEvent *e);
}; | [
"[email protected]"
] | |
d6c1a2d5f902f820ff1321102f0debe7577ce7f2 | ba8ca69abfc64407b60416ab64f930fcbfb4cf30 | /buffer.cpp | 11420c6d126ef6dac176ebcfa8784030f70290f4 | [] | no_license | windseeeker/windnet-game | ed48cf84c68a54eb1de09564fd0963cf51455144 | a5eda47321501049236e8a9d516ee2538236011a | refs/heads/master | 2021-01-01T16:19:18.189523 | 2014-03-20T04:02:05 | 2014-03-20T04:02:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 893 | cpp | #include "buffer.h"
#include <assert.h>
#include <memory.h>
#include <iostream>
namespace Windnet {
Buffer::Buffer()
:m_read(0)
,m_write(0) {
}
void Buffer::reset() {
m_write = m_read = 0;
}
void Buffer::copyIn(const char *buf, int size) { // just to move write pos
if (buf != 0) {
memcpy(m_buffer + m_write, buf, size);
}
m_write += size;
}
int Buffer::add(char *buf, int size) {
if (m_write + size >= MAX_BUFFER_SIZE) {
if (m_read == 0) {
//no space to hold the data
std::cerr << "No space to hold buffer data\n";
return -1;
}
//try move data
memmove(m_buffer, m_buffer + m_read, readAvailable());
m_write -= m_read;
m_read = 0;
}
if (m_write + size >= MAX_BUFFER_SIZE) {
//no space to hold the data
std::cerr << "No space to hold buffer data\n";
return -1;
}
memcpy(m_buffer + m_write, buf, size);
m_write += size;
return m_write;
}
}
| [
"[email protected]"
] | |
c58f4e1e849dbf20c2fbdd9e83947a2fabc1c4ed | db0a0c040de90b87df05bbd1b5e5a9594c5009b0 | /src/view/subsurface.hpp | c905236592941ee38e1b9972f44911497f8a8ea7 | [
"MIT"
] | permissive | epsilon-0/wayfire | a403c4e769a377b0066e0b32ef8860ac041a9e17 | a1f575701ab3ba41006a38c0a01f39d31fdf2dbb | refs/heads/master | 2023-06-26T08:55:04.925426 | 2023-02-14T11:55:29 | 2023-02-14T11:55:29 | 249,974,159 | 0 | 0 | MIT | 2020-03-25T12:36:13 | 2020-03-25T12:36:13 | null | UTF-8 | C++ | false | false | 1,575 | hpp | #pragma once
#include "wayfire/util.hpp"
#include <memory>
#include <wayfire/scene.hpp>
#include <wayfire/nonstd/wlroots-full.hpp>
namespace wf
{
/**
* A subsurface root node. It applies a translation to its children equal to the offset of the subsurface.
*/
class wlr_subsurface_root_node_t : public wf::scene::floating_inner_node_t
{
public:
wlr_subsurface_root_node_t(wlr_subsurface *subsurface);
wf::pointf_t to_local(const wf::pointf_t& point) override;
wf::pointf_t to_global(const wf::pointf_t& point) override;
std::string stringify() const override;
void gen_render_instances(std::vector<scene::render_instance_uptr>& instances,
scene::damage_callback damage, wf::output_t *output) override;
wf::geometry_t get_bounding_box() override;
wf::point_t get_offset();
private:
wlr_subsurface *subsurface;
wf::wl_listener_wrapper on_subsurface_destroy;
};
/**
* A class which manages a wlr_subsurface. Its lifetime is tied to the wlr_subsurface object.
*
* This class is responsible for managing the subsurface's state and enabling/disabling it when the subsurface
* is mapped and unmapped. In addition, it should clean up the scenegraph when the subsurface is destroyed.
*/
class wlr_subsurface_controller_t
{
public:
wlr_subsurface_controller_t(wlr_subsurface *sub);
std::shared_ptr<wlr_subsurface_root_node_t> get_subsurface_root();
private:
wlr_subsurface *sub;
wl_listener_wrapper on_map, on_unmap, on_destroy;
std::shared_ptr<wlr_subsurface_root_node_t> subsurface_root_node;
};
}
| [
"[email protected]"
] | |
8237354ef59824a528c13aeac27fd5fabfd71e3b | b62ceb90bf28536c6aecd114253308a0b68c05cb | /src/main.cpp | ddf87d1e74262c9f8c73e0fa8da42bb1a3f2fc38 | [] | no_license | Folleas/Logic-Gate-Simulator | a6f08863c54fba11f2984ed155fbbd871fbb3024 | 2dd66c26c07ff858db80b655ae6558244ff85218 | refs/heads/master | 2023-04-16T00:44:36.118061 | 2021-01-17T14:23:10 | 2021-01-17T14:23:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 721 | cpp | /*
** EPITECH PROJECT, 2020
** OOP
** File description:
** main
*/
#include "Circuit/NanoTekSpice.hpp"
#include "Components/Input.hpp"
#include "Components/Output.hpp"
#include "Components/And.hpp"
#include "Circuit/Pin.hpp"
#include "Circuit/Circuit.hpp"
#include "Shell/Shell.hpp"
#include "Parser/Parser.hpp"
#include "Components/Chipset.hpp"
#include "Components/Factory.hpp"
int main(int ac, char **av)
{
if (ac < 2) {
std::cout << "Error: no such arguments.\n";
return (84);
} else {
Shell sh(av[1]);
sh.readComponent();
sh.checkArguments(av);
sh.checkCommands("simulate");
sh.checkCommands("display");
sh.runShell();
}
return (0);
} | [
"[email protected]"
] | |
1ef56a1db30ba8c736bedd4adb530415f08d8aee | a758bad12d1d024c95224f1eb6d0f68fba77df80 | /server/DrawOperation/DrawCircle.cc | dbdfcfbc772203307a421e5960ea8e8cf22dd462 | [] | no_license | KingsLanding/OnlineWhiteBoard | 091f728576649cb9e8823e3a7d9bc33678bdd617 | 69a0d072a0f2d402e59a685d5b3136069fa31d7f | refs/heads/master | 2021-01-24T17:20:27.370145 | 2013-06-13T11:55:41 | 2013-06-13T11:55:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,061 | cc | /*************************************************************************
** File Name: DrawCircle.cc
** Author: vanvick
** Mail: [email protected]
** Created Time: Wed Apr 10 16:46:51 2013
**Copyright [2013] <Copyright vanvick> [legal/copyright]
************************************************************************/
#include<opencv/highgui.h>
#include<opencv2/core/core.hpp>
#include "../message.pb.h"
#include "./DrawCircle.h"
#include "./DrawClass.h"
namespace Kingslanding {
namespace OnlineWhiteBoard {
namespace Server {
namespace DrawOperation {
DrawCircle::DrawCircle() {
color_= 0;
thinkness_ = 0;
xa_ = 0;
ya_ = 0;
r_ = 0;
}
void DrawCircle::set(int color, int thinkness, int xa, int ya, int r) {
color_ = color;
thinkness_ = thinkness;
xa_ = xa;
ya_ = ya;
r_ = r;
}
void DrawCircle::Draw(cv::Mat& m) {
cv::Point center = cv::Point(xa_, ya_);
cv::Scalar c = SetColor(color_);
cv::circle(m, center, r_, c, thinkness_);
}
} // DrawOperation
} // Server
} // OnlineWhiteBoard
} // Kingslanding
| [
"[email protected]"
] | |
83005379d2b9397ee541f8a30a1da6937a832e29 | 4ec84d397a741bef5d390a638046086577461900 | /game/model/chess/actions/chess_game_action_move_outof_board.h | 9bce24a8355c2c64468df05ce144d18a0c3d5ee6 | [] | no_license | luchengbiao/xqs_game | 186934d41b10a085650bf45bc0a496fb52d44582 | ce447bb923188a3ae13710033bcb074529a0d2e4 | refs/heads/master | 2020-04-05T06:17:55.699468 | 2019-03-21T10:40:26 | 2019-03-21T10:40:26 | 156,632,557 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 436 | h | #ifndef __GAME_MODEL_CHESS_ACTIONS_CHESS_GAME_ACTION_MOVE_OUTOF_BOARD_H__
#define __GAME_MODEL_CHESS_ACTIONS_CHESS_GAME_ACTION_MOVE_OUTOF_BOARD_H__
#include "chess_game_action.h"
#include "game/model/base/action/game_action_move_base.h"
GAME_NAMESPACE_BEGIN
class ChessActionMoveOutOfBoard : public GameActionMoveBase<ChessGameAction>
{
DECLARE_CHESS_GAME_ACTION_RUNTIME_INFO(ChessActionMoveOutOfBoard)
};
GAME_NAMESPACE_END
#endif | [
"[email protected]"
] | |
3a9b5a19bcf2c7ff30c96606b33dadb3e1a18a6e | f0bcf9abfbabf371ae6baf1a4d2702ee12bf4a57 | /wheeldesign.h | 721ef4a2b6f409419ef9081103697c5d8c3e3a2e | [] | no_license | CyberSys/track | 4ba35669838e1c35f1b07f535532f0e66c435282 | 299fea07be893bbca9d44603d9632f3437abf332 | refs/heads/master | 2020-08-14T05:13:30.407111 | 2010-01-25T12:54:03 | 2010-01-25T12:54:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | h | #ifndef __WHEELDESIGN_H__
#define __WHEELDESIGN_H__
#include <ode/ode.h>
#include "design.h"
#include "wheel.h"
class WheelDesign : public Design {
protected:
dReal R;
public:
virtual WheelID create(dWorldID world, dSpaceID space);
void setRadius(dReal _rad) { R = _rad; };
dReal getRadius() { return R; };
};
typedef WheelDesign *WheelDesignID;
#endif // __WHEELDESIGN_H__
| [
"[email protected]"
] | |
65e11c4c90524337ca366028be70b8671b9fd079 | e913a4f71fd3997ca06df223f5eaf1f05f257313 | /sorting shell.cpp | 9b25e067a519c5b72165f30093c162cc14b306ac | [] | no_license | cyan-chatter/Basic-DS | 2381e7f06d74897590efbb6309858fa2508a01b1 | 840d68e2cd719e4cea46d0245856d0d360c8725e | refs/heads/master | 2022-10-11T11:57:19.871968 | 2020-06-15T14:06:58 | 2020-06-15T14:06:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 498 | cpp | #include <stdio.h>
#include<stdlib.h>
void swap(int *x,int *y)
{
int temp=*x;
*x=*y;
*y=temp;
}
void ShellSort(int A[],int n)
{
int gap,i,j,temp;
for(gap=n/2;gap>=1;gap/=2)
{
for(i=gap;i<n;i++)
{
temp=A[i];
j=i-gap;
while(j>=0 && A[j]>temp)
{
A[j+gap]=A[j];
j=j-gap;
}
A[j+gap]=temp;
}
}
}
int main()
{
int A[]={11,13,7,12,16,9,24,5,10,3},n=10,i;
ShellSort(A,n);
for(i=0;i<10;i++)
printf("%d ",A[i]);
printf("\n");
return 0;
}
| [
"[email protected]"
] | |
c8e86892a856f0cf1981a22addc251dbd862b795 | c7ec332f7e51fc9224ef79ca7dde75bcc317a973 | /src/IO/TransformBase/WriteTransformToFile/Code.cxx | ea3cde38565136555f2a83c1fa56b9061f7fa01e | [
"Apache-2.0"
] | permissive | wilson-ben/ITKExamples | 2c6e4886f53f150ccdd3d976dbf8d126a89ed28d | 17d6c6ffb0b0178d5f584cdec5c863b42c63590d | refs/heads/master | 2020-06-09T20:05:01.483170 | 2019-06-10T00:23:40 | 2019-06-10T15:57:43 | 193,497,909 | 0 | 0 | null | 2019-06-24T12:07:29 | 2019-06-24T12:07:29 | null | UTF-8 | C++ | false | false | 1,607 | cxx | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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.txt
*
* 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 "itkVersion.h"
#include "itkRigid2DTransform.h"
#include "itkTransformFileWriter.h"
int main(int argc, char *argv[])
{
std::string fileName;
if(argc == 1) // No arguments were provided
{
fileName = "test.tfm";
}
else
{
fileName = argv[1];
}
using TransformType = itk::Rigid2DTransform< float >;
TransformType::Pointer transform = TransformType::New();
#if (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR >= 5) || ITK_VERSION_MAJOR > 4
itk::TransformFileWriterTemplate<float>::Pointer writer =
itk::TransformFileWriterTemplate<float>::New();
#else
itk::TransformFileWriter::Pointer writer = itk::TransformFileWriter::New();
#endif
writer->SetInput(transform);
writer->SetFileName(fileName);
writer->Update();
return EXIT_SUCCESS;
}
| [
"[email protected]"
] | |
6cc1c31648f2bf1d95cf9bcf388b40a478ef5dfc | 9463c71701c9690ccb367ea56cdfc735ea7019f6 | /Tildas/Intermediate_Velocity_Predictor_2ND_X.cpp | e7fc0d72d67e3061687de61d9a007c75ebdc1d12 | [] | no_license | huahbo/Working_Turbulent | 7c5eba237e3341e4055ea1e7927d02b729901d4a | 97999ca2a969dbaa6e9aabce28c5f46ef7190a87 | refs/heads/master | 2021-01-18T14:31:24.121296 | 2014-09-12T13:03:46 | 2014-09-12T13:03:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,578 | cpp | /*******************************************
* Author: Michail Georgiou
* Last Modified: Time-stamp: <2014-09-05 16:46:01 mike_georgiou>
*
*
Intermediate_Velocity_X_Proj1_Implicit.cpp -- This function computes
the velocity_x_tilda implicitly over the y-direction. More
specifically, it solves u+d/dy(du/dy) = rhs, where rhs is given from
eq.30 of the Lessani-Papalexandris paper. Of course, the d/dy(du/dy)
term of the Residual at time n is treated differently depending on
the implicit schemes that is used
*
* Written on Wednesday, 28 May 2014.
********************************************/
#include"Intermediate_Velocity.h"
#include <iostream>
using namespace std;
void Intermediate_Velocity_Predictor_2ND_X(double***velocity_x_tilda,
double*** residual_x,
double*** residual_x_old,
double*** velocity_x,
double*** flux_x,
double*** flux_y,
double*** flux_z,
double*** rho_new,
double*** rho,
double*** pressure,
double*** eddy_viscosity,
double Reynolds,
double source,
double implicit_scheme,
double dx, double* dy,
double dz,
double dt,
int ldx, int ldy, int ldz)
{
//Allocating memory for the three vectors that will be used by the
//tridiagonal solver
double *lower_diagonal, *central_diagonal, *upper_diagonal, *rhs,
*result, *auxiliary;
lower_diagonal = new double [ldy+1];
central_diagonal = new double [ldy+1];
upper_diagonal = new double [ldy+1];
rhs = new double [ldy+1];
result = new double [ldy+1];
auxiliary = new double [ldy+1];
for (int k=0; k<ldz; k++){
for (int i=0; i<ldx; i++){
for (int j=0; j<ldy; j++){
double explicit_term=0.;
Velocity_Residual_2ND_X(residual_x,
velocity_x,
flux_x, flux_y, flux_z,
eddy_viscosity,
Reynolds,
source,
dx, dy, dz,
i, j, k,
&explicit_term);
double residual_sum=
1.5*residual_x[k][j][i] - 0.5*residual_x_old[k][j][i];
// introducing this term in order to fix the issue with the
// pressure gradient in the tangential direction of the wall
double pressure_gradient =(pressure[k][j][i+1]-pressure[k][j][i-1])/(2.*dx);
// computing the inputs of the vectors that the tridiagonal
//solver will get
double coefficients[3];
Coefficient_Calculator( coefficients,
rho_new,
eddy_viscosity,
Reynolds,
dy, dt,
implicit_scheme,
i, j, k);
/////////////////////////////////////////////////
//Define the implicit methodology that I will use
explicit_term *=(1.-implicit_scheme);
/////////////////////////////////////////////////
// Filling the vectors. Be cautious in the introduction of
//the boundary conditions
if (j==0)
{
lower_diagonal[j+1] = 0.;
central_diagonal[j+1] = coefficients[1]+ 1.
-coefficients[0];
upper_diagonal[j+1] = coefficients[2];
rhs[j+1] =
dt/rho_new[k][j][i]
*(rho[k][j][i]*velocity_x[k][j][i]/dt
+explicit_term+residual_sum
-2.*pressure_gradient);
}
else if (j==ldy-1)
{
lower_diagonal[j+1] = coefficients[0];
central_diagonal[j+1] = coefficients[1]+ 1.
-coefficients[2];
upper_diagonal[j+1] = 0.;
rhs[j+1] =
dt/rho_new[k][j][i]
*(rho[k][j][i]*velocity_x[k][j][i]/dt
+explicit_term+residual_sum
-2.*pressure_gradient);
}
else
{
lower_diagonal[j+1] = coefficients[0];
central_diagonal[j+1] = coefficients[1]+ 1.;
upper_diagonal[j+1] = coefficients[2];
rhs[j+1] =
dt/rho_new[k][j][i]
*(rho[k][j][i]*velocity_x[k][j][i]/dt
+explicit_term+residual_sum);
}
}
// Solving the tridiagonal system
int flag=0;
tridag(lower_diagonal,central_diagonal,upper_diagonal,
rhs, result, ldy, auxiliary, flag, i, k);
for (int vj = 0; vj < ldy; vj++)
{
velocity_x_tilda[k][vj][i] = result[vj+1];
}
}
}
//deallocating the memory for the vectors that will be used by the
//tridiagonal solver
delete[] lower_diagonal;
delete[] central_diagonal;
delete[] upper_diagonal;
delete[] rhs ;
delete[] result;
delete[] auxiliary;
}
| [
"[email protected]"
] | |
f8742a32bb9e35f1d1d603a61bcff935e9612dda | b062c033ea7ec8a8cce934e72b217d3904791bd5 | /LeetCode/101. Symmetric Tree.cpp | dbaf91412d0278ca9c9848a0d9adf46d354d9bb0 | [] | no_license | NavidMahbub/Competitive-Programming | 2c6f48b37abdedacbae73fc08d62daee67b87f8d | a6ac91a2cbca2baf29fd73d859e110b2de5acaad | refs/heads/master | 2023-03-24T21:15:34.083239 | 2021-03-01T06:31:05 | 2021-03-01T06:31:05 | 339,458,493 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 955 | cpp | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
* };
*/
class Solution {
public:
bool isSymmetric(TreeNode* root) {
if(root==NULL) return true; //Tree is empty
return isSymmetricTest(root->left,root->right);
}
bool isSymmetricTest(TreeNode* p , TreeNode* q){
if(p == NULL && q == NULL)
return true;
else if(p == NULL || q == NULL)
return false;
else if(p->val!=q->val)
return false;
return isSymmetricTest(p->left,q->right) && isSymmetricTest(p->right,q->left);
}
}; | [
"[email protected]"
] | |
a571f27fd97eaaa0e784d661007737d4689a8e66 | 07c3e4c4f82056e76285c81f14ea0fbb263ed906 | /Re-Abyss/app/components/Actor/Enemy/Schield/ComponentCache.hpp | 052375c2efd12e138fdfa0a792d5d97f1c6b9d18 | [] | no_license | tyanmahou/Re-Abyss | f030841ca395c6b7ca6f9debe4d0de8a8c0036b5 | bd36687ddabad0627941dbe9b299b3c715114240 | refs/heads/master | 2023-08-02T22:23:43.867123 | 2023-08-02T14:20:26 | 2023-08-02T14:20:26 | 199,132,051 | 9 | 1 | null | 2021-11-22T20:46:39 | 2019-07-27T07:28:34 | C++ | UTF-8 | C++ | false | false | 681 | hpp | #pragma once
#include <abyss/modules/Actor/base/ActorObj.hpp>
#include <abyss/components/Actor/Common/Body.hpp>
#include <abyss/components/Common/MotionCtrl.hpp>
#include <abyss/components/Actor/Enemy/Schield/FaceCtrl.hpp>
#include <abyss/views/Actor/Enemy/Schield/Motion.hpp>
namespace abyss::Actor::Enemy::Schield
{
class ComponentCache
{
protected:
Body* m_body;
FaceCtrl* m_face;
MotionCtrl* m_motion;
public:
void onCache(ActorObj* pActor)
{
m_body = pActor->find<Body>().get();
m_face = pActor->find<FaceCtrl>().get();
m_motion = pActor->find<MotionCtrl>().get();
}
};
} | [
"[email protected]"
] | |
771665f2ef6c3ab9bbf09a36093b7eac8cf66da1 | 89d2087816be31d25d0f147384bd02016598d139 | /SpellCasters Dungeon/EarthStone.hpp | 1d1fa5fef174ac224910bd06ef3f2d8e9473e8ba | [] | no_license | mveregge23/Cpp-Projects | fc38dd734c56b1649c6e79e4f3f1b9cbd387ddec | ac5ea877ce83ede92bc34eba094e726b165ba5a6 | refs/heads/master | 2021-02-16T19:52:10.147581 | 2020-04-02T18:52:54 | 2020-04-02T18:52:54 | 245,040,151 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 484 | hpp | // Program name: EarthStone.hpp
// Date: 12/8/19
// Author: Max Veregge
// Description: EarthStone.hpp contains a specification for the derived
// EarthStone class. EarthStone inherits all of its data members and
// functions from the parent SpellStone class, but defines its own
// constructor to uniquely initialize the data members.
#ifndef EARTHSTONE_HPP
#define EARTHSTONE_HPP
#include "SpellStone.hpp"
class EarthStone : public SpellStone
{
public:
EarthStone();
};
#endif | [
"[email protected]"
] | |
8ba150b2140ac1d6f1bc5a0e21cb5c379db29423 | 852b95d17bf467410e309a374eb99547a99dd7af | /src/implementation/ikan.cpp | a86c7631b7120a0aa23368ad12cce4265d82480b | [] | no_license | priagungs/arkavquarium-cpp | 93f6e1ec2b6abe5b3b7358d03fdfecd53027b3a1 | 5a8be209caafadce6eb1a11fa33a7fa187ad3160 | refs/heads/master | 2020-03-08T12:40:53.244012 | 2018-04-11T14:49:06 | 2018-04-11T14:49:06 | 128,133,896 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639 | cpp | #include "ikan.hpp"
#include <iostream>
using namespace std;
ikan::ikan() {
hunger = 10; //BERAPAAAA? EDIT LAGI INI
tahap = 0;
foodCounter = 0;
mati = false;
}
ikan::ikan(int h, int t, int f, bool m) {
hunger = h;
tahap = t;
foodCounter = 0;
mati = false;
}
//SetterGetter
int ikan::getHunger() {return hunger;}
int ikan::getTahap() {return tahap;}
int ikan::getfoodCounter() {return foodCounter;}
bool ikan::isMati() {return mati;}
void ikan::setHunger(int N) {hunger = N;}
void ikan::setTahap(int N) {tahap =N:}
void ikan::setFoodCounter(int N) {foodCounter = N;}
void ikan::setMati(bool B) {mati = B;} | [
"[email protected]"
] | |
0782b58a649b94e21a8567d2327eec5f4249349c | 623cecd98c2202126273b0df9cd5a536a229cd00 | /CapENT2/CapENT2.h | 23880a5b40d1c8da373cf526af3c9997bab77990 | [] | no_license | tatsu-kuro/CapENT | c0128f7b55a7813d9649b68ea81d54ff8646bad3 | f60ca0f77028554fb067a597340a494177a6d3c7 | refs/heads/master | 2022-11-06T03:52:15.526503 | 2020-06-22T12:06:55 | 2020-06-22T12:06:55 | 274,124,640 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 679 | h | // CapENT2.h : PROJECT_NAME アプリケーションのメイン ヘッダー ファイルです。
//
#pragma once
#ifndef __AFXWIN_H__
#error "PCH に対してこのファイルをインクルードする前に 'stdafx.h' をインクルードしてください"
#endif
#include "resource.h" // メイン シンボル
#define Vertxt "CapENT(64Bit) Version2.9 - 2019/11/1"
// CCapENT2App:
// このクラスの実装については、CapENT2.cpp を参照してください。
//
class CCapENT2App : public CWinApp
{
public:
CCapENT2App();
// オーバーライド
public:
virtual BOOL InitInstance();
// 実装
DECLARE_MESSAGE_MAP()
};
extern CCapENT2App theApp; | [
"[email protected]"
] | |
bb9f5bf9932f2f9e4b41a78cf6f793d9e0f9076f | 6fe22836ea731f5c1d05c43ca29e55b811c2847c | /IOCPchatting/IOCPServer.h | 25d1fba9bdd31f4e781c146d3c7d76de81b671f2 | [] | no_license | bli423/IOCPchatting | 3089bbf432286d484578e4e2e0b2c10e27cb43d1 | 9ef7ca6e3ae37443a2e5c53eb3023eac6e2aebd2 | refs/heads/master | 2020-04-01T07:25:18.763070 | 2018-11-07T14:39:06 | 2018-11-07T14:39:06 | 152,989,257 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,461 | h | #pragma once
#ifndef IOCPServer_H
#define IOCPServer_H
#pragma comment (lib,"ws2_32.lib")
#include <iostream>
#include <process.h>
#include <winsock2.h>
#include <queue>
#include <mutex>
#include <unordered_map>
#include "Packet.h"
#define PORT 9999
#define BACKLOG 20
class IOCPServer {
public:
IOCPServer(IOCPCallback& _callback);
~IOCPServer();
void Run();
bool Init();
static unsigned int __stdcall acceptThread(void* p_this);
void acceptRun();
static unsigned int __stdcall m_WorkThread(void *p_this);
UINT WINAPI work();
static unsigned int __stdcall m_SendThread(void *p_this);
void sendWork();
static unsigned int __stdcall m_DelaySendThread(void *p_this);
void delaySendWork();
void sendData(Packet& packet);
void sendData(SOCKET* _targetList, int _listSize, char* _data, int _dataSize);
void sendData(SOCKET _target, char* _data, int _dataSize);
int getSendQueueSize();
int getBufferFilledQueSize();
int getCount();
void setCount();
private:
HANDLE m_IOCP;
SOCKET m_ServerSocket;
SOCKADDR_IN m_ServerAddr;
IOCPCallback &m_Callback;
// 패킷을 전송하기전 대기하는 큐
std::queue<Packet*> m_SendQue;
std::mutex m_Mutex_SendQue;
std::condition_variable m_CV_SendQue;
std::queue<Packet*> m_DelaySendQue;
std::mutex m_Mutex_DelaySendQue;
std::condition_variable m_CV_DelaySendQue;
std::mutex syn;
std::mutex readError;
int c;
int count[8];
};
#endif | [
"[email protected]"
] | |
e4ba1d19d311de2678938809b6a58ef64dcbc758 | bd893ed31f5a50d5be969625f8c6c233734b60ac | /sprout/algorithm/fit/shuffle_result.hpp | 82c6712dce3dcbf24e293e8ce618d0ccedb41c39 | [
"BSL-1.0"
] | permissive | kennethho/Sprout | 021fb3b7583fcf05e59c6c2916292073cd210981 | dad087cd69627897da31a531c9da989c661866cc | refs/heads/master | 2021-01-22T00:50:54.516815 | 2013-12-12T14:38:33 | 2013-12-12T14:38:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,136 | hpp | /*=============================================================================
Copyright (c) 2011-2013 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
#ifndef SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
#define SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
#include <sprout/config.hpp>
#include <sprout/tuple/tuple/tuple.hpp>
#include <sprout/tuple/tuple/get.hpp>
#include <sprout/container/traits.hpp>
#include <sprout/container/functions.hpp>
#include <sprout/utility/forward.hpp>
#include <sprout/algorithm/fixed/shuffle_result.hpp>
#include <sprout/algorithm/fit/results.hpp>
#include <sprout/sub_array/sub_array.hpp>
#include <sprout/sub_array/sub.hpp>
namespace sprout {
namespace fit {
namespace detail {
template<typename Container, typename UniformRandomNumberGenerator, typename Shuffled>
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
typename sprout::fit::results::algorithm<Container>::type,
typename std::decay<UniformRandomNumberGenerator>::type
>
shuffle_result_impl_1(
Shuffled const& shuffled,
typename sprout::container_traits<Container>::difference_type offset
)
{
typedef sprout::tuples::tuple<
typename sprout::fit::results::algorithm<Container>::type,
typename std::decay<UniformRandomNumberGenerator>::type
> result_type;
return result_type(
sprout::sub_copy(
sprout::get_internal(sprout::tuples::get<0>(shuffled)),
offset,
offset + sprout::size(sprout::tuples::get<0>(shuffled))
),
sprout::tuples::get<1>(shuffled)
);
}
template<typename Container, typename UniformRandomNumberGenerator>
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
typename sprout::fit::results::algorithm<Container>::type,
typename std::decay<UniformRandomNumberGenerator>::type
>
shuffle_result_impl(
Container const& cont, UniformRandomNumberGenerator&& g,
typename sprout::container_traits<Container>::difference_type offset
)
{
return sprout::fit::detail::shuffle_result_impl_1<Container, UniformRandomNumberGenerator>(
sprout::fixed::shuffle_result(cont, sprout::forward<UniformRandomNumberGenerator>(g)),
offset
);
}
} // namespace detail
//
// shuffle_result
//
template<typename Container, typename UniformRandomNumberGenerator>
inline SPROUT_CONSTEXPR sprout::tuples::tuple<
typename sprout::fit::results::algorithm<Container>::type,
typename std::decay<UniformRandomNumberGenerator>::type
>
shuffle_result(Container const& cont, UniformRandomNumberGenerator&& g) {
return sprout::fit::detail::shuffle_result_impl(
cont, sprout::forward<UniformRandomNumberGenerator>(g),
sprout::internal_begin_offset(cont)
);
}
} // namespace fit
} // namespace sprout
#endif // #ifndef SPROUT_ALGORITHM_FIT_SHUFFLE_RESULT_HPP
| [
"[email protected]"
] | |
d0b0f8f6d128d0ea81d5765270317dbe8e2cd007 | 09813c9978577c8d4f7e7261c820dfda7ab8dbd1 | /Main.cpp | 41f39f53a775bff1ed2b83b74875ad737a0b130b | [] | no_license | edwinlowxh/Hex | 6d39f100b2d641694be6b4f0d217a00505758a11 | 5e62772b19460785dc7ea4d003a4bc5d66ef9be6 | refs/heads/main | 2023-07-18T22:12:21.951938 | 2021-09-13T03:44:21 | 2021-09-13T03:44:21 | 405,434,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,351 | cpp | #include "HexBoard.h"
#include <iostream>
#include <vector>
#include <stack>
#include <algorithm>
#include <ctime>
#include <cstdlib>
#include <unistd.h>
#include <windows.h>
using namespace std;
int main() {
int size, i, j;
char player_choice;
player p;
player c;
//Get the board size
cout << "Size of Hex board: ";
cin >> size;
HexBoard hexBoard(size);
//Get the human player choice
cout << "Choose player(R/B): " << endl;
cout << "R(North-South) / B(East-West)" << endl;
cin >> player_choice;
if (player_choice == 'R'){
c = B;
p = R;
}
else{
c = R;
p = B;
}
//Random starting player
srand(time(0));
if (false){
cout << "Computer starts." << endl;
hexBoard.computer(c);
hexBoard.printHexBoard();
}
else{
cout << "You start." << endl;
}
bool won = false;
while(!won){
cout << "Move(i , j): ";
cin >> i >> j;
//Check if player move is legal
while (!hexBoard.isLegal(i, j)){
cout << "Move(i , j): ";
cin >> i >> j;
}
hexBoard.playerMove(p, i, j);
hexBoard.printHexBoard();
if (hexBoard.win(p)){
cout << "You Won" << endl;
break;
}
if (hexBoard.computer(c) == c){
hexBoard.printHexBoard();
cout << "Computer Won" << endl;
break;
}
hexBoard.printHexBoard();
}
return 0;
}
| [
"[email protected]"
] | |
9040716cf6996a09b0c3b6dac54436c1a3884211 | b8314a7629c75946688a8fcd5583af12679fad32 | /tree.h | 908a6c09c80d63674c57529abb2c470c37a0dcca | [] | no_license | andrewjkerr/Species-Tree | 5e49bd9be9cea41678d291c13d25c424b46d8fbb | 40f07f202e674d3d49847026f59f9048c557f74b | refs/heads/master | 2021-01-23T07:20:52.291712 | 2013-05-02T21:26:24 | 2013-05-02T21:26:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 538 | h | /*
* Author: hasseo
* COP3530 Project #3
* Due Date: Friday March 15, 2013
* ----
* This project does some crazy stuff with XML and something about slime molds...
* ----
* tree.h WAS CREATED IN VERSION 1.1.
* tree.h WAS LAST UPDATED IN VERSION 1.1.
*/
#ifndef TREE_H
#define TREE_H
#include "node.h"
#include <vector>
#include <stack>
using namespace std;
class tree{
public:
tree(node* root);
node* search(const char* searchTerm);
void addNode(node* node);
node* root;
vector<node* > nodeVector;
private:
};
#endif
| [
"[email protected]"
] | |
627ba88197076e5888f39bcd4d3a5e3181ef270d | 1f40abf77c33ebb9f276f34421ad98e198427186 | /tools/output/stubs/Lua/LuaMathExtra_stub.cpp | 73c6610d968003e68210aa19793aa89fdba11b62 | [] | no_license | fzn7/rts | ff0f1f17bc01fe247ea9e6b761738f390ece112e | b63d3f8a72329ace0058fa821f8dd9a2ece1300d | refs/heads/master | 2021-09-04T14:09:26.159157 | 2018-01-19T09:25:56 | 2018-01-19T09:25:56 | 103,816,815 | 0 | 2 | null | 2018-05-22T10:37:40 | 2017-09-17T09:17:14 | C++ | UTF-8 | C++ | false | false | 1,889 | cpp | #include <iostream>
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "LuaMathExtra.h"
#include "LuaInclude.h"
#include "LuaUtils.h"
#include "System/myMath.h"
#include "lib/streflop/streflop_cond.h"
static const lua_Number POWERS_OF_TEN[] = { 1.0f, 10.0f, 100.0f,
1000.0f, 10000.0f, 100000.0f,
1000000.0f, 10000000.0f };
/******************************************************************************/
/******************************************************************************/
bool
LuaMathExtra::PushEntries(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
/******************************************************************************/
/******************************************************************************/
int
LuaMathExtra::hypot(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::diag(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::clamp(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::sgn(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::mix(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::round(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::erf(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
int
LuaMathExtra::smoothstep(lua_State* L)
{
//stub method
std::cout << _FUNCTION_ << std::endl;
}
/******************************************************************************/
/******************************************************************************/
| [
"[email protected]"
] | |
c1a22e29742e624f52444b069a48bb622b1b7e74 | bacb98f977ff5908eb3ed36a4aa46c9ffcd1311c | /eu0069.h | 710143c1396851157d181dcc9db3b0555e4f7840 | [] | no_license | nrey/eulerOld | c0f5177bc9a3df4e1118670af166ea0bc2b001ab | a83e7d5dcae0cb56e930c100f7cb1f9cb864c07b | refs/heads/master | 2021-01-22T12:07:33.608340 | 2012-09-28T06:08:57 | 2012-09-28T06:08:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | h | #ifndef eu0069_h
#define eu0069_h
#include"euler.h"
class eu0069 : public euler{
public:
eu0069(){};
~eu0069(){};
void solucion();
void printsolution();
};
#endif | [
"melquiades@vueltiao.(none)"
] | melquiades@vueltiao.(none) |
cd8495bc87eb9ad9a01510810ead3cad81185086 | f36cd2870a5f523d1710608304fac2957438a7c8 | /Data Structures Projects (C++)/P3 BinaryTree/BinaryTree.h | cef658fda9d0e73edf81a379c126f9bf5bbdd477 | [] | no_license | jmaraffi24/Project-Experience | f94ced1c4efa8b0824de61868331c24cadff2c0d | 1e062cf15a5719382d4fd5a20af26f9247d32e3c | refs/heads/master | 2020-06-30T04:01:07.469964 | 2019-08-05T22:49:06 | 2019-08-05T22:49:06 | 200,718,315 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 597 | h | #ifndef BINARYTREE_H
#define BINARYTREE_H
#include "ItemType.h"
#include<iostream>
class BinaryTree {
public:
struct Node {
ItemType key;
Node * left;
Node * right;
};
BinaryTree();
~BinaryTree();
void insert(ItemType &key);
void deleteItem(ItemType &key);
void retrieve(ItemType &item, bool &found) const;
void preOrder() const;
void inOrder() const;
void postOrder() const;
int getLength() const;
void getSameLengthLevelNonsiblings(Itemtype &key); //bonus only
private:
Node * root;
int length;
};
#endif
| [
"[email protected]"
] | |
2d2f24b0bee8e05ad047167f5510dfc43eaaa3a4 | 3256f9eafd798d8bfbe1d6448a3ef522bc6bc95e | /Lecture/class7/1.cpp | 376e6f20e2894386a650d25e0aa46c47f773afc2 | [] | no_license | prayaglehana/Coding-Problems | b28fda44385473abacf478aa981f3c398aefe42d | 45e3f2331368701d7bdb5c26dbd2f3dc756eb13b | refs/heads/master | 2020-07-05T08:46:46.432954 | 2019-08-15T20:53:39 | 2019-08-15T20:53:39 | 202,594,116 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,848 | cpp | #include<iostream>
using namespace std;
class Node{
public:
int data;
Node *next;
Node(int data){
this->data=data;
next=NULL;
}
}*head=NULL;
void insertNewNode(int x){
if(head==NULL){
head = new Node(x);
}
else {
Node *last=head;
while(last->next!=NULL){
last=last->next;
}
Node *n=new Node(x);
last->next=n;
}
}
void printLL(Node *head){
while(head!=NULL){
cout<<head->data<<"->";
head=head->next;
}
}
void deletAt(int P){
if(P==0){
Node *t=head;
head=t->next;
t->next=NULL;
delete t;
}
else {
int p=0;
Node *h=head;
while(p<P){
if(h==NULL) return ;
h=h->next;
++p;
}
Node *t=h;
}
}
void reverseLL(Node *h){
Node * t= h->next;
if(t==NULL) {head=h;return;}
reverseLL(t);
t->next=h;
h->next=NULL;
}
int countNode(Node *h){
int count_=0;
while(h!=NULL){
++count_;
h=h->next;
}
return count_;
}
Node * recReverse(Node *h){
if(h==NULL || h->next ==NULL){
return h;
}
Node* chotahead=recReverse(h->next);
h->next->next=h;
h->next=NULL;
return chotahead;
}
void reverLLIT(Node *h){
int nodes=countNode(h);
Node * t=h;
for(int p=2;p<nodes;++p){
t->next=t;
t=t->next;
}
head=t;
h->nex.t=NULL;
}
int main(){
//int *a={1,23,4};
insertNewNode(3);
insertNewNode(4);
insertNewNode(1);
insertNewNode(9);
insertNewNode(2);
printLL(head);
reverseLL(head);
cout<<endl;
printLL(head);
cout<<endl;
cout<<countNode(head)<<" a ";
head=recReverse(head);
cout<<endl;
printLL(head);
cout<<endl;
return 0;}
| [
"[email protected]"
] | |
2df30cb5b2ab360bcc465c423105c941390d481e | 09ac9fa2b0bf77e4b0c31ec20a907513510c1293 | /001-High-Low.cpp | 7f0e8cf4648c10ec964ded4910bd369df686d5d3 | [] | no_license | joshualemmon/Misc-Programming-Challenges | aa64bd14eb860a2a52a3fab992cbee4ba984be27 | 302acd4fb40d7be4d630dadaee2f88affccd3632 | refs/heads/master | 2021-01-10T09:20:30.676753 | 2016-01-25T14:32:08 | 2016-01-25T14:32:08 | 49,588,558 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,227 | cpp | //001 High/Low Guessing Game
#include <cstdio>
#include <stdlib.h>
#include <iostream>
#include <string>
#include <time.h>
using namespace std;
int genNum();
void guess(int i, int score, int total);
void start();
int main()
{
start();
return 0;
}
void start()
{
srand(time(NULL));
int startNum = genNum();
printf("Starting number is %i\n", startNum);
guess(startNum, 0, 0);
}
void guess(int i, int score, int total)
{
printf("Enter a guess: ");
string userGuess;
cin >> userGuess;
int num = genNum();
bool correct = (num>=i && userGuess == "higher") || (num < i && userGuess == "lower");
if (correct)
{
printf("Correct. Number was %i and you guessed %s \n", num, userGuess.c_str());
score+=1, total+=1;
}
else
{
printf("Incorrect. Number was %i and you guessed %s \n", num, userGuess.c_str());
total+=1;
}
printf("Continue? (y/n) \n");
char input;
cin >> input;
if((input == 'y' || input == 'Y') && correct)
{
guess(num, score, total);
}
else if ((input == 'y' || input == 'Y') && !correct)
{
guess(num, score, total);
}
else
{
cout << score << endl << total << endl;
printf("Your score was %i/%i \n", score, total);
exit(1);
}
}
int genNum(){return rand()%100 + 1;} | [
"[email protected]"
] | |
257be5964e1d168efa71705a8e0f42e7422dfb8b | 759641082ae619ca5e277adc97e2e36c4bb485fd | /modules/test/src/test.cpp | 7d12e31150caee7ed936af2ce397a6e135e03a07 | [] | no_license | eglrp/NaviX | c5199e92275474fef4d1b745f83f2d530b3ef3c5 | 1181786d9037235d2e64997d8d1c6f1d918bd34b | refs/heads/master | 2020-04-06T18:07:02.488906 | 2018-05-30T01:36:38 | 2018-05-30T01:36:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,237 | cpp | #include <ros/ros.h>
#include <vector>
#include <algorithm>
#include <sensor_msgs/LaserScan.h>
const double limit = 0.3;
double rad2ang(double rad)
{
return rad*360.0/3.14;
}
double relu_acc(const double acc, const double limit, double x)
{
/*
* acc : same like k in liner fuction y=kx+b
* limit: y=kx+b which y = 0
*/
double y = 0;
if(x < limit)
{
y = 0;
}
else
{
double b = limit * acc;
y = acc * x - b;
if(y <= 0) y = 0;
if(y >= 1) y = 1;
}
return y;
}
void laserCB(const sensor_msgs::LaserScan::ConstPtr& laser)
{
double output = 0;
std::vector<float>::const_iterator obstacle = std::min_element(laser->ranges.begin(), laser->ranges.end());
int index = std::distance(laser->ranges.begin(), obstacle);
double angle = laser->angle_min + index * laser->angle_increment;
output = relu_acc(5.0, 0.3, *obstacle);
printf("cost:%6.2f angle:%6.2f range:%6.2f\r\n", output, rad2ang(angle), laser->ranges[index]);
fflush(stdout);
}
int main(int argc, char** argv)
{
ros::init(argc, argv, "test");
ros::NodeHandle n;
ros::Subscriber sub = n.subscribe<sensor_msgs::LaserScan>("/scan", 20, laserCB);
ros::spin();
return(0);
}
| [
"[email protected]"
] | |
54c400f26f792254120a9edb76714f92919ad92f | 094b6da11e1a45b2b9f165fa61e7b031874c5694 | /branch/IntrinsicHandling/Open64IRInterface/SymTab.cpp | d7bb4790f5d064f2bd6159f53b37fe6c8d70d97b | [] | no_license | BackupTheBerlios/useoa-open64-svn | 962752dc5c67ada16cf9c6190aae3e409ee6bd37 | 7d8807c92e05ce7a7484e8cf2f558da6ba317673 | refs/heads/master | 2016-09-05T15:53:59.201772 | 2010-05-13T04:10:51 | 2010-05-13T04:10:51 | 40,747,187 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,962 | cpp | // -*-Mode: C++;-*-
// $Header: /home/derivs2/mstrout/CVSRepository/UseNewOA-Open64/Open64IRInterface/SymTab.cpp,v 1.2 2006/03/16 03:48:55 mstrout Exp $
// * BeginCopyright *********************************************************
// *********************************************************** EndCopyright *
//***************************************************************************
//
// File:
// $Source: /home/derivs2/mstrout/CVSRepository/UseNewOA-Open64/Open64IRInterface/SymTab.cpp,v $
//
// Purpose:
// [The purpose of this file]
//
// Description:
// [The set of functions, macros, etc. defined in the file]
//
//***************************************************************************
//************************** System Include Files ***************************
//************************** Open64 Include Files ***************************
#include "Open64BasicTypes.h"
//*************************** User Include Files ****************************
#include "Open64IRInterface/SymTab.h"
#include "Open64IRInterface/stab_attr.h"
#include "Open64IRInterface/wn_attr.h"
#include "Open64IRInterface/diagnostics.h"
//************************** Forward Declarations ***************************
//***************************************************************************
// FIXME
// Create a new symbol name
static const char* cat(const char* str, UINT num)
{
// 39 bytes hold a 128-bit uint in base 10. [log(2^128)]
#define SYMBUF_SZ (32 + 39 + 1)
static char buf[SYMBUF_SZ];
snprintf(buf, SYMBUF_SZ, "%s%d", str, num);
return buf;
#undef SYMBUF_SZ
}
//***************************************************************************
//
//***************************************************************************
// IsVarRefTranslatableToXAIF: Returns whether 'wn' a variable
// reference that can be translated into XAIF. 'wn' must be an
// expression; IOW it cannot be a store (=statement).
bool
IsVarRefTranslatableToXAIF(const WN* wn)
{
// FIXME: IsScalarRef should perhaps be is_translatable_to_xaif
OPERATOR opr = WN_operator(wn);
if (!OPERATOR_is_expression(opr)) { return false; }
switch (opr) {
// FIXME
// ILOADX, ISTOREX
// ILDBITS, ISTBITS
// MLOAD, MSTORE: memref
// OPR_IDNAME:
case OPR_LDA:
case OPR_LDMA:
return true; // FIXME: can this be used in some evil way?
case OPR_LDID:
case OPR_LDBITS: { // symref
TY_IDX baseobj_ty = ST_type(WN_st(wn));
TY_IDX refobj_ty = WN_Tree_Type(wn);
return (IsScalarRef(baseobj_ty, refobj_ty));
}
case OPR_ILOAD: { // memref
TY_IDX baseobj_ty = TY_pointed(WN_load_addr_ty(wn));
TY_IDX refobj_ty = WN_Tree_Type(wn);
return (IsScalarRef(baseobj_ty, refobj_ty));
}
case OPR_ARRAY:
case OPR_ARRSECTION: // FIXME: can we do arrsection?
case OPR_ARRAYEXP:
return true;
} // switch
return false;
}
bool
IsScalarRef(TY_IDX baseobj_ty, TY_IDX refobj_ty)
{
if (TY_IsNonScalar(refobj_ty)) {
// This is a reference to a non-scalar or a non-scalar within a
// non-scalar (e.g. a record or a record within a record)
return false;
} else if (TY_Is_Scalar(refobj_ty)) {
// Test whether 'baseobj_ty' is assignable to 'refobj_ty'. If
// not, we have a non-scalar reference (e.g. a field within a
// structure; an element within an array).
return (WN2F_Can_Assign_Types(baseobj_ty, refobj_ty));
} else {
return false;
}
}
bool
IsNonScalarRef(TY_IDX baseobj_ty, TY_IDX refobj_ty)
{
return (!IsScalarRef(baseobj_ty, refobj_ty));
}
// NOTE: for store OPERATORs, only the LHS is checked
bool
IsNonScalarRef(const WN* wn)
{
// FIXME: redefine to be !IsVarRefTranslatableToXAIF
OPERATOR opr = WN_operator(wn);
switch (opr) {
// FIXME
// ILOADX, ISTOREX
// ILDBITS, ISTBITS
// MLOAD, MSTORE: memref
case OPR_LDA: // FIXME:
case OPR_LDMA: // FIXME:
break; // can this be used to access records?
case OPR_LDID:
case OPR_LDBITS:
case OPR_STID:
case OPR_STBITS: { // symref
// For stores, only check LHS (kid1)
TY_IDX baseobj_ty = WN_GetBaseObjType(wn);
TY_IDX refobj_ty = WN_GetRefObjType(wn);
return (IsNonScalarRef(baseobj_ty, refobj_ty));
}
case OPR_ILOAD:
case OPR_ISTORE: { // memref
// For stores, only check LHS (kid1)
TY_IDX baseobj_ty = WN_GetBaseObjType(wn);
TY_IDX refobj_ty = WN_GetRefObjType(wn);
return (IsNonScalarRef(baseobj_ty, refobj_ty));
}
case OPR_ARRAY:
case OPR_ARRSECTION: {
// Arrays:
// Kid 0 is an LDA or LDID which represents the base of the array
// being referenced or defined. Kids 1..n are dimensions; Kids
// n+1..2n are the index expressions.
WN* base = WN_kid0(wn);
ASSERT_FATAL(WN_operator(base) == OPR_LDA || WN_operator(base) == OPR_LDID,
(DIAG_A_STRING, "Error!"));
return true;
}
case OPR_ARRAYEXP: // FIXME
return true;
} // switch
return false;
}
| [
"utke@eac892ec-190f-0410-9fdf-bfd8caa68912"
] | utke@eac892ec-190f-0410-9fdf-bfd8caa68912 |
80e58d4a03a1dd05c6f75019cb8c1228f7f7ec3b | feb84a38f82c36da00b6bdbff01f77bb039d366d | /FIEAGameEngine/Source/Library.shared/ActionList.h | 832c0b7a1665150aecaeaa4cd0c91e5143783d1c | [] | no_license | PranksterGD/DataDrivenGameEngine | 3d0910099702ac651f00ad46edd009b8d8121615 | b02c2fd3cc9e8f0517a3836ea62576ba1b35d771 | refs/heads/master | 2021-03-13T04:18:07.611314 | 2017-05-16T22:06:27 | 2017-05-16T22:06:27 | 91,508,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,412 | h | #pragma once
#include <cstdint>
#include <string>
#include "Attributed.h"
#include "WorldState.h"
#include "Factory.h"
#include "Action.h"
namespace FieaGameEngine
{
class ActionList : public Action
{
RTTI_DECLARATIONS(ActionList, Action)
public:
/**Constructor for the ActionList.
* @param: name- The name of the ActionList, defaulted to an empty string is no name is specified.*/
ActionList(std::string name = "");
/**Copy constructor for the ActionList.
* @param otherActionList- The other ActionList that is to be copied from.*/
ActionList(const ActionList& otherActionList);
/**Move constructor for the ActionList.
* @param otherActionList- The other ActionList that is to be moved from.*/
ActionList(ActionList&& otherActionList);
/**Assignment operator for the ActionList.
* @param otherActionList- The other ActionList that is to be assigned to.
* @return- A reference to the other ActionList after assignment.*/
ActionList& operator=(ActionList&& otherActionList);
/**Move assignment operator for the ActionList.
* @param otherActionList - The other ActionList that is to be moved to.
* @return- A reference to the ActionList after moving.*/
ActionList& operator=(const ActionList& otherActionList);
/**Function that updates the ActionList and all elements within it.
* @param worldState- A reference to the worldState of the game. */
virtual void Update(WorldState& worldState);
/**Function that returns a datum containing all the actions held within the action list.
/* @return- A datum containing all the actions held within the action list.*/
Datum& Actions();
/**Function that returns a datum containing all the actions held within the action list.
/* @return- A constant datum containing all the actions held within the action list.*/
const Datum& Actions() const;
/**Destructor of the ActionList that is defaulted. */
virtual ~ActionList() = default;
/**Function that creates a new action.
* @param className- The type of action to be created.
* @param instanceName- The name of the action to be created.
* @return - An action pointer pointing to the newly created action.*/
Action* CreateAction(const std::string& className, const std::string& instanceName);
virtual Scope* Copy() const override;
protected:
void InitalizeSignatures();
void FixExternals();
};
ConcreteActionFactory(ActionList)
} | [
"[email protected]"
] | |
5f41add14ba7fd6155f6c4c18ddce0b956f4d42d | 733882805346a6e34156a88bb04e9cdc97ca8ba5 | /sc-memory/sc-memory/utils/sc_signal_handler.hpp | 47bd6556465229eb6425b94a5e825a47afdc8d3f | [
"MIT"
] | permissive | ostis-dev/sc-machine | 21e14d8293378174f9321517c2d7bc3e94f8495c | 84c2b74b06d786bec75c1aa096e3dc95fbfdb3f7 | refs/heads/master | 2021-11-28T01:51:40.819230 | 2021-10-13T10:39:44 | 2021-10-13T10:39:44 | 3,524,603 | 13 | 17 | NOASSERTION | 2023-02-21T09:08:55 | 2012-02-23T11:04:25 | C++ | UTF-8 | C++ | false | false | 619 | hpp | /*
* This source file is part of an OSTIS project. For the latest info, see http://ostis.net
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#include "../sc_defines.hpp"
#include <functional>
namespace utils
{
/* This class used to handle system signals such as
* Ctrl + C, Ctrl + Break and etc.
*/
class ScSignalHandler
{
public:
using HandlerDelegate = std::function<void()>;
_SC_EXTERN static void Initialize();
// handler for Ctcl+C and Ctrl + Break
_SC_EXTERN static HandlerDelegate m_onTerminate;
};
} // namespace utils
| [
"[email protected]"
] | |
4993ae1c1d047c15861fa65e526717d07daefe78 | 91370b8a678ce7baed25e3c6d607468812a4f4cf | /Workshop2_home/Kingdom.cpp | afd25ef4c4062c4fe8d8d74829a5d2ca39c26147 | [] | no_license | sonechca/OOP244 | ec2bfce2ae8a6130d1b862497952356d28520a2e | a4d4bb280abee0fec47ee02ae927f4f893e59739 | refs/heads/master | 2022-02-08T08:44:10.149131 | 2019-08-17T23:00:08 | 2019-08-17T23:00:08 | 198,145,770 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,163 | cpp | /***********************************************************
// OOP244 Workshop 2: Dynamic Memory
// File: Kingdom.cpp
// Date: May 23, 2019
// Author: Robert Robson
// Name: Mintae Kim
// Reason: Workshop 2 Home
// Student#: 141915181
// E-mail: [email protected]
***********************************************************/
#include <iostream>
#include "Kingdom.h"
using namespace std;
namespace sict {
//This function display Kindom name and Population.
void display(const Kingdom& m) {
cout << m.m_name << ", population " << m.m_population << endl;
}
void display(const Kingdom k[], int size){
int total = 0;
cout << "------------------------------" << endl << "Kingdoms of SICT" << endl << "------------------------------"<< endl;
for(int i = 0; i < size; i++){
cout << i+1 <<". "<< k[i].m_name << ", population " << k[i].m_population << endl;
total += k[i].m_population;
}
cout << "------------------------------" << endl;
cout << "Total population of SICT: " << total << endl;
cout << "------------------------------" << endl;
}
}
| [
"[email protected]"
] | |
1e0a1f4dff453c3d255e0c40d0dc1b19a539876e | 50d97e5a13c2184f2e1a076a3972a90cf2f4a8cf | /src/PolyLineProcessor.cpp | d743cdf5f0b47939e4156da52f86192bcaef2ab6 | [] | no_license | MaorG/cin2 | 51bc01a11e11bcc2c458f9ce2670c828e7a4f1dc | 159f634e69be54694444303f198020bd97256484 | refs/heads/master | 2021-01-17T12:30:29.701004 | 2014-12-29T14:50:11 | 2014-12-29T14:50:11 | 26,770,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,115 | cpp | #include "PolyLineProcessor.h"
#include <cinder/PolyLine.h>
#include <cinder/path2d.h>
#include <cinder/BSpline.h>
#include <math.h>
#include <stdio.h>
using namespace ci;
PolyLineProcessor::PolyLineProcessor()
{
}
PolyLineProcessor::~PolyLineProcessor()
{
}
void PolyLineProcessor::chainPolyLines(PolyLineEntity* firstEntity, PolyLineEntity* secondEntity)
{
PolyLine2f * first = firstEntity->getObject();
PolyLine2f * second = secondEntity->getObject();
if (first->size() <= 1) {
firstEntity->concat(secondEntity);
return;
}
if (second->size() <= 0) {
return;
}
float gaps[4];
gaps[0] = (*(first->begin()) - *(second->begin())).length();
gaps[1] = (*(first->begin()) - *(second->end() - 1)).length();
gaps[2] = (*(first->end() - 1) - *(second->begin())).length();
gaps[3] = (*(first->end() - 1) - *(second->end() - 1)).length();
int minGapIndex = 0;
float minGap = gaps[0];
for (int i = 1; i<4; i++) {
if (gaps[i] < minGap) {
minGap = gaps[i];
minGapIndex = i;
}
}
bool reverseFirst = (minGapIndex == 0 || minGapIndex == 1);
bool reverseSecond = (minGapIndex == 1 || minGapIndex == 3);
if (reverseFirst) {
reverse(firstEntity);
}
if (reverseSecond) {
reverse(secondEntity);
}
firstEntity->concat(secondEntity);
//if (reverseFirst) {
// reverse(firstEntity);
//}
//if (reverseSecond) {
// reverse(secondEntity);
//}
}
void PolyLineProcessor::reverse(PolyLineEntity* polyLineEntity)
{
PolyLine2f * polyLine = polyLineEntity->getObject();
if (polyLine->size() < 2) {
return;
}
PolyLine2f * reversePolyLine = new PolyLine2f();
std::vector<Vec2f> points = polyLine->getPoints();
for (int i = points.size() - 1; i>=0; i--) {
reversePolyLine->push_back(points.at(i));
}
polyLineEntity->setObject(reversePolyLine);
//delete polyLine;
}
PolyLineEntity * PolyLineProcessor::prepareForNN(PolyLineEntity* polyLineEntity, bool relative, int segments)
{
PolyLineEntity * proecessedPolyLineEntity = new PolyLineEntity();
PolyLine2f * polyLine = polyLineEntity->getObject();
PolyLine2f * processedPolyLine;// = new PolyLine<Vec2f>();
if (relative) {
PolyLine2f * tempPolyLine;
tempPolyLine = uniformResample(polyLine, 2 * segments);
processedPolyLine = uniformResample(tempPolyLine, segments);
delete tempPolyLine;
}
else{
processedPolyLine = uniformResampleByLength(polyLine, 0.05f);
}
proecessedPolyLineEntity->setObject(processedPolyLine);
return proecessedPolyLineEntity;
}
Vec2f PolyLineProcessor::getFarthestFromCenter(PolyLineEntity* polyLineEntity)
{
Vec2f farthest = Vec2f(0.0, 0.0);
PolyLine2f * polyLine = polyLineEntity->getObject();
if (polyLine->size() == 0) {
return farthest;
}
Vec2f CoG = getCenterOfGravity(polyLineEntity);
float maxDist = 0;
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end(); ++it) {
if ((*it - CoG).length() > maxDist) {
maxDist = (*it - CoG).length();
farthest = *it;
}
}
return farthest;
}
Vec2f PolyLineProcessor::getCenterOfGravity(PolyLineEntity* polyLineEntity)
{
Vec2f CoG = Vec2f(0.0, 0.0);
PolyLine2f * polyLine = polyLineEntity->getObject();
if (polyLine->size() == 0) {
return CoG;
}
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end(); ++it) {
CoG += (*it);
}
CoG *= 1.0f / (float)polyLine->size();
return CoG;
}
float PolyLineProcessor::getStartAngle(PolyLineEntity* polyLineEntity)
{
PolyLine2f * polyLine = polyLineEntity->getObject();
if (polyLine->size() < 3) {
return 0;
}
float angle = getAngleBetweenVectors(Vec2f(1.0, 0.0), *(polyLine->begin() + 1) - *(polyLine->begin()));
return angle;
}
bool PolyLineProcessor::isPolylineClosed(PolyLineEntity* polyLineEntity)
{
PolyLine2f * polyLine = polyLineEntity->getObject();
if (polyLine->size() < 3) {
return false;
}
float segmentLength = (*(polyLine->begin() + 1) - *(polyLine->begin())).length();
segmentLength += (*(polyLine->end() - 1) - *(polyLine->end() - 2)).length();
segmentLength *= 0.5f;
float gap = (*(polyLine->begin()) - *(polyLine->end() - 1)).length();
if (gap < 1.5*segmentLength) {
return true;
}
else {
return false;
}
}
float PolyLineProcessor::getAngleBetweenVectors(Vec2f first, Vec2f second)
{
float angle = 0;
float normalize = first.length()*second.length();
if (normalize != 0) {
float dot = first.dot(second);
float det = first.cross(second);
angle = atan2(det, dot);
}
return angle;
}
float PolyLineProcessor::normalizeValue(float value, float oldMin, float oldMax, float newMin, float newMax)
{
float midValue = (value - oldMin) / (oldMax - oldMin);
float newValue = (midValue)* (newMax - newMin) + newMin;
return newValue;
}
PolyLineEntity * PolyLineProcessor::process2(PolyLineEntity* polyLineEntity)
{
PolyLineEntity * proecessedPolyLineEntity = new PolyLineEntity();
PolyLine2f * polyLine = polyLineEntity->getObject();
PolyLine2f * processedPolyLine = new PolyLine<Vec2f>();
processedPolyLine = toAngles(polyLine);
proecessedPolyLineEntity->setObject(processedPolyLine);
return proecessedPolyLineEntity;
}
std::vector<float> PolyLineProcessor::toAnglesVector(PolyLine2f* polyLine)
{
std::vector<float> angles;
if (polyLine->size() < 3) {
return angles;
}
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end() - 2; ++it) {
float angle = getAngleBetweenVectors((*it) - (*(it + 1)), (*(it + 1)) - (*(it + 2)));
angle = normalizeValue(angle, -(float)M_PI, (float)M_PI, -1.0, 1.0);
if (angle > 0) {
angle = pow(abs(angle), 1.0);
}
else {
angle = -pow(abs(angle), 1.0);
}
angles.push_back(angle);
}
return angles;
}
PolyLine2f* PolyLineProcessor::uniformResampleByLength(PolyLine2f* polyLine, float approximateSegmentLength)
{
float length = calcLength(polyLine);
if (length == 0) {
return new PolyLine2f();
}
float relativeSegmentLength = length / approximateSegmentLength;
int numberOfSegments = (int)ceil(relativeSegmentLength);
numberOfSegments = std::max(numberOfSegments, 5);
return uniformResample(polyLine, numberOfSegments);
}
PolyLine2f* PolyLineProcessor::uniformResample(PolyLine2f* polyLine, int amount)
{
if (polyLine->size() < 2) {
return new PolyLine2f();
}
double length = calcLength(polyLine);
if (length == 0) {
return new PolyLine2f();
}
std::vector<Vec2f> points = polyLine->getPoints();
int degree = points.size() - 1 < 4 ? points.size() - 1 : 4;
Path2d path = Path2d(BSpline2f(points, degree, false, true));
float splineLength = path.calcLength();
if (splineLength == 0) {
return new PolyLine2f();
}
float sampleLength = splineLength / (float)amount;
PolyLine2f* sampled = new PolyLine2f();
for (int i = 0; i <= amount; i++) {
float ratio = (float)i / (float)amount;
float time = 0;
if (ratio >= 1.0f) {
time = 1.0f;
}
else {
time = path.calcNormalizedTime(ratio);
if (time >= 1.0f) {
time = 1.0f;
}
}
Vec2f point = path.getPosition(time);
sampled->push_back(point);
}
path.clear();
points.clear();
return sampled;
/*
double accumulatedLength = 0;
PolyLine2f* polyLineCopy = new PolyLine2f(*polyLine);
while (accumulatedLength <= length) {
sampled->push_back(pointAlongPolyLine(polyLine, accumulatedLength));
accumulatedLength += sampleLength;
}
delete polyLineCopy;
return sampled;
*/
}
// todo: delete
ci::PolyLine2f* PolyLineProcessor::toAngles(ci::PolyLine2f* polyLine) {
PolyLine2f* angles = new PolyLine2f();
if (polyLine->size() < 3) {
return angles;
}
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end() - 2; ++it) {
float xVal = (float)(it - polyLine->begin()) / (float)(polyLine->size() - 2);
float angle = getAngleBetweenVectors((*it) - (*(it + 1)), (*(it + 1)) - (*(it + 2)));
float yVal = normalizeValue(angle, -(float)M_PI, (float)M_PI, 0.0, 1.0);
angles->push_back(Vec2f(xVal, yVal));
}
return angles;
}
Vec2f PolyLineProcessor::pointAlongPolyLine(PolyLine2f* polyLine, float along)
{
if (along <= 0 || polyLine->size() < 2) {
return *polyLine->begin();
}
float accumulatedDist = 0;
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end() - 1; it++) {
float dist = (Vec2f(it->x, it->y) - Vec2f((it + 1)->x, (it + 1)->y)).length();
if (accumulatedDist + dist == along) {
return (*it);
}
else if (accumulatedDist + dist > along) {
float remainder = along - accumulatedDist;
Vec2f d = Vec2f(*it - *(it+1));
float segmentLength = d.length();
if (segmentLength > 0) {
Vec2f v = *it + d * (remainder / segmentLength);
if (remainder / segmentLength > 1) {
int a = 0;
}
return v;
}
}
else {
accumulatedDist += dist;
}
}
return *(--polyLine->end());
}
float PolyLineProcessor::calcLength(PolyLine2f* polyLine)
{
float length = 0;
if (polyLine->size() < 2) {
return 0;
}
for (std::vector<Vec2f>::iterator it = polyLine->begin(); it != polyLine->end() - 1; ++it) {
float dist = (Vec2f(it->x, it->y) - Vec2f((it + 1)->x, (it + 1)->y)).length();
length += dist;
}
return length;
}
| [
"[email protected]"
] | |
0d1d309c58060c0640c44c1c37e9e264e9f29b9c | f2bd29cc215ab26a73ebb132b492171102f80933 | /ModularLib/Filters/MultiStageWaveFolderFilter.h | baee90f0fbe4b374c192891aea4b18c021c43bbd | [] | no_license | djeemie2000/SynthPlayground | f319c1491744ad42bbc3501a2ffecdc44f887391 | daffa8887d568b306fdea071ad2f5b69fbebf074 | refs/heads/master | 2021-01-17T11:01:54.643937 | 2016-03-30T11:14:49 | 2016-03-30T11:14:49 | 18,151,046 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,060 | h | #ifndef MultiStageWaveFolderFILTER_H
#define MultiStageWaveFolderFILTER_H
#include <cstdint>
#include <string>
#include <vector>
#include "AudioFilterI.h"
#include "WaveFolder2.h"
class CMultiStageWaveFolderFilter : public IAudioFilter
{
public:
CMultiStageWaveFolderFilter();
std::vector<std::string> GetInputNames() const override;
std::vector<std::string> GetOutputNames() const override;
std::vector<std::string> GetMidiInputNames() const override;
std::vector<std::string> GetMidiOutputNames() const override;
int OnProcess(const std::vector<void*>& SourceBuffers,
const std::vector<void*>& DestinationBuffers,
const std::vector<std::shared_ptr<IMidiRenderer>> MidiRenderers,
const std::vector<std::shared_ptr<IMidiHandler>> MidiHandlers,
int NumFrames,
std::uint32_t TimeStamp) override;
void SetNumStages(int NumStages);
private:
CMultiStageWaveFolder<float> m_MultiStageWaveFolder;
};
#endif // MultiStageWaveFolderFILTER_H
| [
"[email protected]"
] | |
ab6ce4a97fb837ae1ddb6bfe5eb901a29029376d | 24c6b6734234dd0c525e19c2b1402a39282ee130 | /J. Let's See!/Alter - reborn++.cc | a57512ffa00d2c5cb1d50d2fe1ce5eb3f7dd5d18 | [] | no_license | rebornplusplus/NGPC2019 | 803f1d8bb735bfb4d4c75b8ae38aca9d0274f195 | f70ccb99b18490498786e879de157cc1ba7442ca | refs/heads/master | 2020-09-17T03:57:29.577673 | 2019-11-27T10:13:30 | 2019-11-27T10:13:30 | 223,980,986 | 13 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 1,114 | cc | #include <bits/stdc++.h>
using namespace std;
int honey_bunny(int x) {
int ret = 0;
for(int i=1; i<=x; ++i) ret += x % i;
return ret;
}
void print_honey(int x) {
cout << x << ":";
for(int i=1; i<=x; ++i) cout << " " << (x % i);
cout << "\n";
}
void precal() {
static const int N = 1000;
for(int i=1; i<=N; ++i) {
if(honey_bunny(i) == honey_bunny(i-1)) {
// cout << i << " - " << honey_bunny(i) << "\n";
print_honey(i-1);
print_honey(i);
cout << "\n";
}
}
}
typedef long long ll;
const int TC_MAX = 100000;
const ll LR_MAX = 1000000000000000000LL;
int main() {
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int t, tc = 0;
assert(cin >> t);
assert(t >= 1 and t <= TC_MAX);
while(t--) {
ll fr, to;
assert(cin >> fr >> to);
// if(fr > to) swap(fr, to);
assert(fr <= to); // oh man, not this again
assert(fr >= 1 and fr <= LR_MAX);
assert(to >= 1 and to <= LR_MAX);
ll res = 0;
for(ll p2 = 1; p2 <= LR_MAX; p2 <<= 1) {
if(p2 >= fr and p2 <= to) {
res += p2;
}
}
cout << res << "\n";
}
string temp;
assert(!(cin >> temp));
return 0;
}
| [
"[email protected]"
] | |
196d08893323702667b415372f15eb2070010bfd | 3096ad776e7b552011d326a1d450828dfbf883cf | /device/display/layout.h | cd753ab68404292a51cc932dd69612c317832b32 | [
"MIT"
] | permissive | cmdc0de/libesp | 3f7b7a68c2b8a816f3129863767dafd9b8f2056a | 66aa47db98f2051f71c6352364952dfb611ff130 | refs/heads/master | 2023-08-23T07:28:27.349677 | 2023-08-05T22:01:07 | 2023-08-05T22:01:07 | 176,871,017 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,036 | h | #ifndef LIBESP_DEVICE_DISPLAY_LAYOUT_H
#define LIBESP_DEVICE_DISPLAY_LAYOUT_H
#include "../../error_type.h"
#include "../../math/bbox2d.h"
#include "color.h"
#include <memory>
#include "../../event_bus.h"
namespace libesp {
class DisplayDevice;
class RectBBox2D;
class Trait {
public:
class TraitUpdateContext {
public:
TraitUpdateContext(const uint32_t &traitUpdates, const Point2Ds *positionUpdate) : TraitUpdates(traitUpdates), PositionUpdate(positionUpdate) {}
const Point2Ds &getPositionUpdate() const {return *PositionUpdate;}
private:
uint32_t TraitUpdates;
const Point2Ds *PositionUpdate;
};
enum TRAIT_UPDATES {
POSITIONAL_UPDATES = (1<<0)
};
public:
Trait() {}
virtual ~Trait(){}
ErrorType updateTrait(uint32_t TraitUpdates, const TraitUpdateContext &tuc);
protected:
virtual ErrorType doUpdateTrait(const TraitUpdateContext &tuc)=0;
};
class BVolumeTrait : public Trait {
public:
static const uint32_t UPDATES_I_CARE_ABOUT = POSITIONAL_UPDATES;
public:
BVolumeTrait(BoundingVolume2D *bv) : BVolume(bv) {}
const BoundingVolume2D *getBoundingVolume() const {return BVolume;}
BoundingVolume2D *getBoundingVolume() {return BVolume;}
template<typename bvType>
const bvType *getBoundingVolumeAs(const bvType* t) const {
return dynamic_cast<bvType*>(BVolume);
}
void draw(DisplayDevice *d, const RGBColor &c, bool bFill) const { BVolume->draw(d, c, bFill);}
const Point2Ds &getCenter() const {return BVolume->getCenter();}
virtual ~BVolumeTrait() {}
protected:
virtual ErrorType doUpdateTrait(const TraitUpdateContext &tuc) {
ErrorType et;
BVolume->updateWorldCoordinates(tuc.getPositionUpdate());
return et;
}
private:
BoundingVolume2D *BVolume;
};
class Pickable2D : public BVolumeTrait {
public:
static const uint32_t UPDATES_I_CARE_ABOUT = POSITIONAL_UPDATES;
public:
Pickable2D(BoundingVolume2D *bv) : BVolumeTrait(bv) {}
virtual ~Pickable2D() {}
};
class Widget {
public:
enum TRAITS {
PICKABLE2D = 0
, BVTrait
, TOTAL_TRAITS
};
public:
Widget(const uint16_t &widgetID, const char *name);
Widget(const Widget &r);
void setWorldCoordinates(const Point2Ds &pt);
const Point2Ds &getWorldCoordinates() const {return StartingPoint;}
uint16_t getWidgetID() {return WidgetID;}
void draw(DisplayDevice *d) const;
bool pick(const Point2Ds &pickPt) const;
const char *getName() const {return Name;}
void setName(const char *n) {Name=n;}
int16_t getNameLength() const {return NameLen;}
void addTrait(TRAITS t, std::shared_ptr<Trait> &trait);
Pickable2D *getPickable();
const Pickable2D *getPickable() const;
BVolumeTrait *getBVTrait();
const BVolumeTrait *getBVTrait() const;
virtual ~Widget();
void reset();
void hide() {Hidden = true;}
void unHide() {Hidden = false;}
bool isHidden() {return Hidden;}
protected:
virtual ErrorType onDraw(DisplayDevice *d) const=0;
virtual void onReset()=0;
private:
uint16_t WidgetID;
Point2Ds StartingPoint;
const char *Name;
int16_t NameLen;
std::shared_ptr<Trait> Traits[TOTAL_TRAITS];
bool Hidden;
};
class Label : public Widget {
public:
static const char *LOGTAG;
static const uint16_t MAX_LABEL_LEN = 32;
public:
Label(const uint16_t &widgetID, const char *name, RectBBox2D *bv, const RGBColor &outLine, const RGBColor &textColor, const RGBColor &bgColor, bool fill);
const char *getDisplayText() const {return &DisplayText[0];}
void setDisplayText(const char *p);
protected:
virtual ErrorType onDraw(DisplayDevice *d) const override;
virtual void onReset() override;
private:
char DisplayText[MAX_LABEL_LEN];
RGBColor OutLineColor, TextColor, TextBGColor;
bool Fill;
};
class Button : public Widget {
public:
static const char *LOGTAG;
Button(const char *name, const uint16_t &wID, BoundingVolume2D *bv, const RGBColor ¬Selected, const RGBColor &seleted);
Button(const Button &r);
bool isSelected() {return ButtonSelected;}
void setSelected(bool t) {ButtonSelected=t;}
virtual ~Button() {}
protected:
virtual ErrorType onDraw(DisplayDevice *d) const override;
virtual void onReset() override;
private:
RGBColor NotSelected;
RGBColor Selected;
bool ButtonSelected;
};
class CountDownTimer : public Widget {
public:
static const int MS_PER_SEC = 1000;
enum STATE {
STOPPED = 0
, RUNNING = 1
, TIMER_DONE = 2
, PAUSE = 3
};
public:
static const char *LOGTAG;
CountDownTimer(BoundingVolume2D *bv, const char *name, const uint16_t &wID, uint16_t numSec);
void setTime(uint16_t t) {NumSeconds = (t*MS_PER_SEC);SecondsLeft=NumSeconds;}
int64_t getTimerMS() {return NumSeconds;}
void incrementTime(int16_t s) {NumSeconds+=(s*MS_PER_SEC);SecondsLeft=NumSeconds;}
void startTimer();
void setTimerMS(int64_t t) {NumSeconds = t;SecondsLeft=NumSeconds;}
void stopTimer();
void pause();
void unPause();
bool isDone();
void update();
void showMS(bool b) {ShowMS = b;}
bool showMS() const {return ShowMS;}
virtual ~CountDownTimer() {}
protected:
virtual ErrorType onDraw(DisplayDevice *d) const override;
virtual void onReset() override;
private:
int64_t NumSeconds;
int64_t StartTime;
int64_t SecondsLeft;
STATE State;
bool ShowMS;
};
class Layout {
public:
Layout(uint16_t w, uint16_t h, bool bShowScrollIfNeeded);
void add(const Widget *w);
void draw(DisplayDevice *d);
Widget *pick(const Point2Ds &pickPt);
void reset();
virtual ~Layout() {}
protected:
virtual void onAdd(const Widget *w)=0;
virtual void onDraw(DisplayDevice *d)=0;
virtual Widget *onPick(const Point2Ds &pickPt)=0;
virtual void onReset()=0;
private:
uint16_t Width;
uint16_t Height;
bool ShowScrollIfNeeded;
Point2Ds ScrollOffSet;
};
class StaticGridLayout : public Layout {
public:
StaticGridLayout(Widget **Widgets, uint8_t numWidgets, uint16_t w, uint16_t h, bool bShowScrollIfNeeded);
virtual ~StaticGridLayout();
protected:
virtual void onAdd(const Widget *w) {/*do nothing*/}
virtual void onDraw(DisplayDevice *d);
virtual Widget *onPick(const Point2Ds &pickPt);
virtual void onReset();
private:
Widget **Widgets;
uint8_t NumWidgets;
};
}
#endif
| [
"[email protected]"
] | |
8b51b5d6aa9205e213e260e6306ba7aaf9b19a8a | 1f344020098132337eb4867e9fd2b770a3df73fc | /Fractional Knapsack/main.cpp | 59fde7c571f1f5e14d2bf1a24ff885a92bc6ac42 | [] | no_license | manik114/My-All-Programs | cde5ed37f0559a3e75665012aa1bc78f850f0e3d | 1708aeff6fa696158d95e4c49e9d55b180c9f71b | refs/heads/master | 2021-08-07T03:05:44.944964 | 2017-11-07T10:58:41 | 2017-11-07T10:58:41 | 109,823,371 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,031 | cpp | #include <bits/stdc++.h>
using namespace std;
class package
{
int profit,weight;
public:
package(int profit,int weight)
{
this->profit=profit;
this->weight=weight;
}
friend bool cmp(package a,package b);
friend double knapSack(int w,package obj[],int n);
};
bool cmp (package a,package b)
{
return (a.profit/a.weight > b.profit/b.weight);
}
double knapSack(int w,package obj[],int n)
{
sort(obj,obj+n,cmp);
double currentWeight = 0.0;
double currentProfit = 0.0;
for(int i=0;i<n;++i)
{
if(currentWeight+obj[i].weight<w)
{
currentWeight+=obj[i].weight;
currentProfit+=obj[i].profit;
}
else
{
auto tmp = w-currentWeight;
currentProfit+=obj[i].profit*(tmp/obj[i].weight);
break;
}
}
return currentProfit;
}
int main()
{
package obj[]={{60,10},{100,20},{120,30}};
int W=50;
cout<<knapSack(W,obj,3);
return 0;
}
| [
"[email protected]"
] | |
93b3103f4f85e0be8a2aaa728460071b40dc5c11 | 2c97fc62eab1f78c4a5d1a83826a75209ebb6d39 | /绍兴一中集训/7.7做题/[Usaco2005 Dec]Cleaning Shifts 清理牛棚.cpp | 581205dd1a0821e476171fb3190dfeb38231d47d | [] | no_license | GaisaiYuno/My-OI-Code-1 | f32932f1004e593ffee0b0e97cffd25d9e2851bf | c57ec4e2aaa1d770ee9490a42710d1cf71a153f2 | refs/heads/master | 2020-12-31T23:13:46.913582 | 2020-02-08T01:09:46 | 2020-02-08T01:09:46 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,825 | cpp | //https://www.luogu.org/recordnew/show/20335265
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 100000
#define INF 0x3f3f3f3f3f3f3f3f
using namespace std;
int n,l0,r0;
struct tim{
int t1;
int t2;
int v;
friend bool operator < (tim p,tim q){
return p.t2<q.t2;
}
}a[maxn+5];
//dp[x]表示覆盖[l0,x]的最小代价
//dp[r[i]]=min(dp[j])+c[i],l[i]-1<=j<=r[i]
struct segment_tree{
struct node{
int l;
int r;
long long v;
}tree[maxn*4+5];
void push_up(int pos){
tree[pos].v=min(tree[pos<<1].v,tree[pos<<1|1].v);
}
void build(int l,int r,int pos){
tree[pos].l=l;
tree[pos].r=r;
tree[pos].v=INF;
if(l==r) return;
int mid=(l+r)>>1;
build(l,mid,pos<<1);
build(mid+1,r,pos<<1|1);
push_up(pos);
}
void update(int tpos,long long v,int pos){
if(tree[pos].l==tree[pos].r){
tree[pos].v=v;
return;
}
int mid=(tree[pos].l+tree[pos].r)>>1;
if(tpos<=mid) update(tpos,v,pos<<1);
else update(tpos,v,pos<<1|1);
push_up(pos);
}
long long query(int L,int R,int pos){
if(L<=tree[pos].l&&R>=tree[pos].r){
return tree[pos].v;
}
int mid=(tree[pos].l+tree[pos].r)>>1;
long long ans=INF;
if(L<=mid) ans=min(query(L,R,pos<<1),ans);
if(R>mid) ans=min(query(L,R,pos<<1|1),ans);
return ans;
}
}T;
long long dp[maxn+5];
int main(){
scanf("%d %d %d",&n,&l0,&r0);
for(int i=1;i<=n;i++){
scanf("%d %d %d",&a[i].t1,&a[i].t2,&a[i].v);
a[i].t1=max(a[i].t1,l0);
a[i].t2=min(a[i].t2,r0);
}
T.build(l0,r0,1);
sort(a+1,a+1+n);
memset(dp,0x3f,sizeof(dp));
dp[l0]=0;
T.update(l0,0,1);
for(int i=1;i<=n;i++){
dp[a[i].t2]=min(dp[a[i].t2],T.query(a[i].t1-1,a[i].t2,1)+a[i].v);//记得取min,一个点可能被多个区间更新
T.update(a[i].t2,dp[a[i].t2],1);
}
if(dp[r0]>=INF) printf("-1\n");
else printf("%lld\n",dp[r0]);
}
| [
"[email protected]"
] | |
b9d9280d4fd0fa8e22df76dbe780e9c07e700d2b | d9580ef5b06b9236e067e233bc7bf307a43df9f9 | /Week_01/189.旋转数组.cpp | 300ff33e1fac1fefaff97491d3d8799c80ee24d6 | [] | no_license | yuanm21/algorithm016 | 7b058c7047fce8eecf144d9925dc7c420a6ead00 | c357a79c45b475870cf67a3297213d14db046bd3 | refs/heads/master | 2023-01-27T17:48:48.120286 | 2020-11-30T15:21:04 | 2020-11-30T15:21:04 | 295,092,013 | 0 | 0 | null | 2020-09-13T06:25:43 | 2020-09-13T06:25:43 | null | UTF-8 | C++ | false | false | 735 | cpp | /*
* @lc app=leetcode.cn id=189 lang=cpp
*
* [189] 旋转数组
*/
// 1. 暴力 否掉,边界判断太麻烦
// 2. 双指针 也就是双索引 交换 不对
// 3. 三次反转
// @lc code=start
class Solution {
public:
void rotate(vector<int>& nums, int k) {
if (k > nums.size())
{
k = k % nums.size();
}
reverse(nums, 0, nums.size() - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.size() - 1);
}
void reverse(vector<int>& nums, int a, int b)
{
while (a < b) {
int tmp = nums[b];
nums[b] = nums[a];
nums[a] = tmp;
a++;
b--;
}
}
};
// @lc code=end
| [
"[email protected]"
] | |
df173f5eb029bb292d4a387bdc4a3c01c517474b | ffebf339862e2b886fff897c826053eea0cc3718 | /main.cpp | d1fe9197d64de4210072c7f5df0198b417b52016 | [] | no_license | LoganScholz-PING/platformIO_HelloServo | 46a4564739211ac80a692c9e06a38797eef3f654 | 583f180023121a229fb523f1a1a7f0c1c1ec0bde | refs/heads/main | 2023-05-01T04:36:01.725924 | 2021-05-05T17:19:11 | 2021-05-05T17:19:11 | 358,392,839 | 0 | 0 | null | 2021-05-05T17:19:11 | 2021-04-15T21:07:20 | C++ | UTF-8 | C++ | false | false | 10,631 | cpp | /********************************************************************************************
*
* ***DEFINITION OF SERIAL DATA PACKETS:***
* SEND:
* '<1>' - btnMTRSTART_Click()
* Start motor infinitiely spinning until commanded to stop
* '<2>' - btnMTRSTOP_Click()
* Stop motor (and also stop any PWM)
* '<3>' - btnMTRDIRCCW_Click()
* Change motor direction to CCW
* '<4>' - btnMTRDIRCW_Click()
* Change motor direction to CW
* '<5>' - btnSingleRotation_Click()
* Perform a single motor rotation
* '<6>' - btnPulsePerSec_Click()
* Perform a one pulse per second motor test
* '<7>' - btn400Pulse_Click()
* Pulse the motor pulse pin 800 times (800 pulses = 1 complete revolution)
* '<8xxx>' - btnRotateDeg_Click()
* Turn the motor xxx degrees (if xxx is not a valid number from 0-999 this
* command will be ignored)
* '<9>' - btnLoadCellCalib_Click()
* Perform load cell calibration (determine calibration as well as zero factors)
* '<0>' - btnLoadCellTare_Click()
* Tare the load cell to 0
* '<a>' - btnLoadCellRead_Click()
* Read the current load cell value and print to serial window
*
******************************************************************************************/
#include <Arduino.h>
#include <LS7366.h>
#include <Servo.h>
#include "ServoMotorControl.h"
#include "LoadCell.h"
#include "Heartbeat.h"
#include "EEPROM_Arduino.h"
/* === START PROGRAM SPECIFIC DEFINES === */
#define SOP '<' // denotes start of serial data packet
#define EOP '>' // denotes end of serial data packet
#define pinOPTICALSTOP 13 // PB7
#define DEBUG_PIN 42 // PL7
boolean DEBUG = false;
/* === END PROGRAM SPECIFIC DEFINES === */
/* === START PROGRAM FLOW CONTROL VARIABLES === */
char ctrlChar;
char serialData[10]; // serial receive buffer
byte index; // serialData indexer
boolean started = false; // serial data flow control
boolean ended = false; // serial data flow control
int START_MOTOR_TEST = 1;
int STOP_MOTOR_TEST = 0;
long quad;
double start_counts = 0; // for tracking motor movement
double total_counts = 0; // for tracking motor movement
boolean motor_moving = false; // for tracking if motor is moving
boolean optical_stop_chk = false; // samples the digital state of the optical stop
boolean optical_stop_hit = false; // true for 10ms when rising edge detected
boolean prev_opt_reading = false; // state control variable for determining rising edge
long opt_debounce_time = 0; // 10ms debounce timer that starts upon detection of rising edge
TimeSlice StatusSlice(2000); // heartbeat object
long _heartbeat_interval = 4000; // 4 second heartbeat
long _load_update_interval = 50; // read torque load every 50ms
unsigned long hb_timer = 0;
/* === END PROGRAM FLOW CONTROL VARIABLES === */
/* === START ServoMotorControl.cpp EXTERNS === */
extern boolean _motor_enable;
/* === END ServoMotorControl.cpp EXTERNS === */
void checkSerial()
{
// if serial is available, receive the
// serial data packet (it better be formatted
// correctly!!)
while (Serial.available() > 0)
{
char inChar = Serial.read();
// check if we receive the start character
// (SOP) of a serial packet
if (inChar == SOP)
{
index = 0;
serialData[index] = '\0'; // null character
started = true;
ended = false;
}
// check if we receive the end character
// (EOP) of a serial packet
else if (inChar == EOP)
{
ended = true;
break;
}
else
{
if (index < 79)
{
serialData[index] = inChar;
++index;
serialData[index] = '\0';
}
}
}
if (started && ended)
{
// packet start and end control characters
// received, begin packet processing
switch (serialData[0])
{
case '1':
// starts motor free spinning
runMotorTest(START_MOTOR_TEST);
break;
case '2':
// disables the motor and stops PWM
runMotorTest(STOP_MOTOR_TEST);
break;
case '3':
// change motor direction spin to counter-clockwise
servoMotorDirection(MOTOR_CCW);
if (DEBUG)
{
Serial.println("Motor Direction CCW");
}
break;
case '4':
// change motor direction spin to clockwise
servoMotorDirection(MOTOR_CW);
if (DEBUG)
{
Serial.println("Motor Direction CW");
}
break;
case '5':
// note that this function will block for 1 second
// to calculate quadrature counts / 360 degree
// rotation
servoMotorOneRevolution();
break;
case '6':
// unused
if (DEBUG)
{
Serial.println("Serial cmd 6 is unused!");
}
break;
case '7':
// the function below is blocking
servoMotor800Pulses();
break;
case '8':
{ // you have to scope the case statement if you created a variable
// move motor a certain amount as instructed
// atoi() is a C++ built in function to
// convert a char* array into an integer
// (it even understands negatives!)
int deg = atoi(&serialData[1]);
start_counts = (double)servoMotorReadQuadratureCount();
total_counts = servoMotorMoveDegrees(deg);
motor_moving = true; // maybe move this to the servoMotorMoveDegrees() function
break;
}
case '9':
// Calibrate Load Cell
loadcellDetermineCalibrationFactor();
break;
case '0':
// Tare Load Cell
loadcellTare();
break;
case 'a':
// Read Load Cell
loadcellReadCurrentValue();
break;
case 'b':
// read first 80 bytes of EEPROM to serial
REPORT_EEPROM_CONTENTS();
break;
case 'c':
// zero out the contents of the first 80 bytes of EEPROM
ZERO_EEPROM_CONTENTS();
break;
case 'd':
// read only contents of EEPROM we care about
ReadEEPROM(true);
break;
default:
// we received a packet where serialData[0]
// is unrecognized
Serial.print("ERROR Invalid or uninterpretable command received on serial: ");
Serial.println(serialData[0]);
break;
}
// packet processing completed, reset packet
// parameters to get ready for next packet
started = false;
ended = false;
index = 0;
serialData[index] = '\0';
}
} // end void checkSerial()
// TODO?: THIS SHOULD BE HOOKED TO AN INTERRUPT?
void checkOpticalStop()
{
// pinOPTICALSTOP is HIGH if beam is broken
//optical_stop_chk = digitalRead(pinOPTICALSTOP); // slow
optical_stop_chk = (_SFR_IO8(0X03) & B10000000); // more performant
// if statement checks for rising edge condition
// on optical_stop_chk (with a 10ms debounce)
if ((optical_stop_chk) &&
(prev_opt_reading != optical_stop_chk) &&
(millis() - opt_debounce_time >= 10))
{
optical_stop_hit = true;
if (DEBUG)
{
Serial.println("*OPTICAL STOP HIT*");
}
opt_debounce_time = millis();
}
// reset the boolean that tracks optical beam state after
// 10ms (when optical endstop beam is broken this discrete
// will stay true for 10ms)
if (optical_stop_hit && (millis() - opt_debounce_time >= 10))
{
optical_stop_hit = false;
//Serial.println("*OPTICAL STOP BOOLEAN RESET*");
}
// if motor is enabled and the optical stop is hit
// turn off the motor
if (_motor_enable && optical_stop_hit)
{
servoMotorEnable(MOTOR_DISABLED);
if (DEBUG)
{
Serial.println("*STOP MOTOR DUE TO OPTICAL STOP*");
}
}
prev_opt_reading = optical_stop_chk;
} // void checkOpticalStop()
void ifMovingCheckCountFeedback()
{
quad = servoMotorReadQuadratureCount();
if ( (abs(quad-start_counts) >= abs(total_counts)) )
{
servoMotorEnable(MOTOR_DISABLED);
motor_moving = false;
if (DEBUG)
{
Serial.println("Main loop has stopped motor movement");
Serial.print("total_counts: "); Serial.println(total_counts);
Serial.print("start_counts: "); Serial.println(start_counts);
Serial.print("End counts (quad): "); Serial.println(abs(quad));
Serial.print("Count delta: "); Serial.println(abs(quad-start_counts));
}
}
} // end void ifMovingCheckCountFeedback()
void updateEnvironment()
{
//char* cp; // for tracking state machine current state, not implemented
//double pos = servoMotorReadRotationAngle(); // doesn't work yet
float tq = loadcellReadCurrentValue();
Serial.print("{,");
Serial.print(":T="); Serial.print(tq);
//Serial.print(":A="); Serial.print(pos);
Serial.print(":MTR="); Serial.print(motor_moving);
Serial.println(",}");
}
void setup()
{
Serial.begin(9600);
delay(250); // let serial settle itself
servoMotorSetup();
// need to do setupEEPROM() before loadcellSetup()
// because loadcellSetup() retrieves data from EEPROM
// like scale_zero_bias and scale_calibration_factor
setupEEPROM();
loadcellSetup();
pinMode(pinOPTICALSTOP, INPUT);
pinMode(DEBUG_PIN, INPUT_PULLUP);
// initialize heartbeat to 4 seconds
StatusSlice.Interval(_heartbeat_interval);
} // end void setup()
void loop()
{
// DEBUG_PIN is INPUT_PULLUP (defaults HIGH aka TRUE)
// If DEBUG_PIN is grounded (LOW aka FALSE) we want
// the debug output to show in the serial window (DEBUG = TRUE)
// Since we want to check this every iteration of the main loop,
// we'll make this operation as performant as possible.
// DEBUG_PIN is pin 42, which is Register "PORTL", bit 7 (0 indexed)
// _SFR_MEM8(0x109) returns all 8 bits of register PORTL
// (note 0x109 is Port L's "PINL" register memory address)
DEBUG = !(_SFR_MEM8(0x109) & B10000000);
checkSerial();
checkOpticalStop();
if (motor_moving)
{
ifMovingCheckCountFeedback();
}
hb_timer = millis();
if (StatusSlice.Triggered(hb_timer))
{
updateEnvironment(); // output heartbeat to serial
}
} // end void loop() | [
"[email protected]"
] | |
368345daa7345bbafdaba5bcbffa1c07e4660e0a | 59544e1476f7c358867ea64101d978d0461180ff | /heightfield_generation/heightfield_generation/math/ray2.h | e858119a2ac2ce612e1b9af87fa03604fdb698be | [] | no_license | ivan-reshetnyak/mountains | 8cdb06d31d2aca3171cceb64629632691e815480 | 37386653fc95563d12c619b1f2230bd37425aa2b | refs/heads/master | 2021-06-01T17:22:25.351788 | 2016-10-06T18:08:05 | 2016-10-06T18:08:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,209 | h | /* Reshetnyak Ivan */
#ifndef __vec2d_h_
#define __vec2d_h_
#include "vec2.h"
template<class type>
/* 2D ray representation type */
class ray2D
{
public:
vec2D<type>
Org, /* Origin */
Dir; /* Direction */
/* Class constructor.
* ARGUMENTS:
* - ray origin and direction.
* const vec2D<type> &Org, &Dir.
*/
ray2D( const vec2D<type> &Org, const vec2D<type> &Dir ) : Org(Org), Dir(Dir)
{
} /* End of 'ray2D' constructor */
/* 2 rays intersection check function.
* ARGUMENTS:
* - right-hand ray:
* const ray2D &rhs;
* - intersection point (OUTPUT)
* vec2D &Intr;
* - flag if rays should be intersected as lines:
* bool Line = false.
* RETURNS:
* (bool) if rays intersect.
*/
bool Intersect( const ray2D &rhs, vec2D<type> &Intr, bool Line = false, bool Approx = false )
{
type t1, t2;
if (Approx)
if (vec2::NearEqual(this->Dir, rhs.Dir) ||
vec2::NearEqual(this->Dir, -rhs.Dir))
return false;
if (Dir.X != 0)
{
double tt = (rhs.Dir.X * Dir.Y / Dir.X - rhs.Dir.Y);
if (tt == 0)
return false;
t2 = ((rhs.Org.Y - Org.Y) - ((rhs.Org.X - Org.X) * (Dir.Y / Dir.X))) / (type)tt;
if (!Line && (t2 < 0 || t2 > 1))
return false;
t1 = (rhs.Org.X - Org.X + t2 * rhs.Dir.X) / Dir.X;
if (Line || (t1 >= 0 && t1 <= 1))
{
Intr = Org + (Dir * t1);
return true;
}
}
else if (rhs.Dir.X != 0)
{
double tt = (Dir.X * rhs.Dir.Y / rhs.Dir.X - Dir.Y);
if (tt == 0)
return false;
t1 = ((Org.Y - rhs.Org.Y) - ((Org.X - rhs.Org.X) * (rhs.Dir.Y / rhs.Dir.X))) / (type)tt;
if (!Line && (t1 < 0 || t1 > 1))
return false;
t2 = (Org.X - rhs.Org.X + t1 * Dir.X) / rhs.Dir.X;
if (Line || (t2 >= 0 && t2 <= 1))
{
Intr = Org + (Dir * t1);
return true;
}
}
return false;
} /* End of 'Intersect' function */
}; /* End of 'ray2D' class */
#endif /* __vec2d_h_ */
/* END OF 'ray2.h' FILE */
| [
"[email protected]"
] | |
b2c113c4bb0e4d4812cd7b4b661b7e8e86da531c | a1a8b69b2a24fd86e4d260c8c5d4a039b7c06286 | /build/iOS/Debug/include/Fuse.Navigation.RouterPageRoute.h | b45764c9ace8861a47391636031e199828646482 | [] | no_license | epireve/hikr-tute | df0af11d1cfbdf6e874372b019d30ab0541c09b7 | 545501fba7044b4cc927baea2edec0674769e22c | refs/heads/master | 2021-09-02T13:54:05.359975 | 2018-01-03T01:21:31 | 2018-01-03T01:21:31 | 115,536,756 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,839 | h | // This file was generated based on /usr/local/share/uno/Packages/Fuse.Navigation/1.4.2/RouterPage.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Object.h
namespace g{namespace Fuse{namespace Navigation{struct Route;}}}
namespace g{namespace Fuse{namespace Navigation{struct RouterPage;}}}
namespace g{namespace Fuse{namespace Navigation{struct RouterPageRoute;}}}
namespace g{
namespace Fuse{
namespace Navigation{
// internal sealed class RouterPageRoute :130
// {
uType* RouterPageRoute_typeof();
void RouterPageRoute__ctor__fn(RouterPageRoute* __this, ::g::Fuse::Navigation::RouterPage* routerPage, RouterPageRoute* sub);
void RouterPageRoute__Append_fn(RouterPageRoute* __this, RouterPageRoute* subRoute, RouterPageRoute** __retval);
void RouterPageRoute__Format_fn(RouterPageRoute* __this, uString** __retval);
void RouterPageRoute__New1_fn(::g::Fuse::Navigation::RouterPage* routerPage, RouterPageRoute* sub, RouterPageRoute** __retval);
void RouterPageRoute__SubDepth_fn(RouterPageRoute* __this, int* count, RouterPageRoute** __retval);
void RouterPageRoute__ToRoute_fn(RouterPageRoute* __this, ::g::Fuse::Navigation::Route** __retval);
void RouterPageRoute__Up_fn(RouterPageRoute* __this, RouterPageRoute** __retval);
struct RouterPageRoute : uObject
{
uStrong< ::g::Fuse::Navigation::RouterPage* RouterPage;
uStrong<RouterPageRoute* SubRoute;
void ctor_(::g::Fuse::Navigation::RouterPage* routerPage, RouterPageRoute* sub);
RouterPageRoute* Append(RouterPageRoute* subRoute);
uString* Format();
RouterPageRoute* SubDepth(int count);
::g::Fuse::Navigation::Route* ToRoute();
RouterPageRoute* Up();
static RouterPageRoute* New1(::g::Fuse::Navigation::RouterPage* routerPage, RouterPageRoute* sub);
};
// }
}}} // ::g::Fuse::Navigation
| [
"[email protected]"
] | |
7a7b6d7c41a346a5aaa5a3f3ddd4a1e4872b0fc8 | 07d1480ec994f5f2390545d1443763f8658875b7 | /src/solutions/untexturedobjects/gl/texcoord.h | 6c8e394c11d58802c99dfdea8cbe34f7defb609a | [
"Unlicense"
] | permissive | grahamsellers/apitest | ce0a75210f72a0987bae32fb909f2de175b08852 | 2e683c4e5e674604a9a70dc373c0ccdd7da65eaf | refs/heads/master | 2021-01-17T23:13:19.780145 | 2014-06-19T16:58:46 | 2014-06-19T16:58:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,266 | h | #pragma once
#include "solutions/untexturedobjectssoln.h"
// --------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------
class UntexturedObjectsGLTexCoord : public UntexturedObjectsSolution
{
public:
UntexturedObjectsGLTexCoord();
virtual ~UntexturedObjectsGLTexCoord() { }
virtual bool Init(const std::vector<UntexturedObjectsProblem::Vertex>& _vertices,
const std::vector<UntexturedObjectsProblem::Index>& _indices,
size_t _objectCount) override;
virtual void Render(const std::vector<Matrix>& _transforms);
virtual void Shutdown();
virtual std::string GetName() const { return "GLTexCoord"; }
virtual bool SupportsApi(EGfxApi _api) const override { return IsOpenGL(_api); }
private:
GLuint m_ib;
GLuint m_vb;
GLuint m_prog;
struct UniformLocations {
GLuint ViewProjection;
UniformLocations() { memset(this, 0, sizeof(*this)); }
} mUniformLocation;
};
| [
"[email protected]"
] | |
0de1ac43357f4709a6f53f9ffb47923ad7ea0b9c | 98641c8825d8f01888aef5396a14b8583cef657d | /PrintMatrix/PrintMatrix/main.cpp | 3ceb5a4ba2c000802a981196e7ca0e14f86e9feb | [] | no_license | EvilPluto/Algorithm | b52c781aa62dfd9c0a521af1bd97c938b69611c3 | 1cac79299c672613874af02670bb3fd19ab2f18a | refs/heads/master | 2021-01-23T04:34:19.057906 | 2017-04-30T01:31:20 | 2017-04-30T01:31:20 | 86,210,729 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | cpp | //
// main.cpp
// PrintMatrix
//
// Created by 修海锟 on 2017/3/6.
// Copyright © 2017年 修海锟. All rights reserved.
//
#include <iostream>
int main(int argc, const char * argv[]) {
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
| [
"[email protected]"
] | |
78ffb61f6660f8e964e9a04f93a54c94b724cfaf | eb1ebe2675578ce6db2f4b85a8efbfd88a0a3f73 | /sbpl_dynamic_env_3D/sbpl_dynamic_planner_3D/src/pathVisualizer (copy).cpp | aa8be1d6778390b6337d9406203f16674d8adc8c | [] | no_license | venkatrn/SBPL_3D_Planners | f635a067242a198013876d4cba124c92c402568c | 859ed6732ab9c6c98cf6b449d9a2ebb944a119cd | refs/heads/master | 2021-01-25T07:40:14.942440 | 2012-08-07T15:52:57 | 2012-08-07T15:52:57 | 5,329,963 | 5 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 13,521 | cpp | #include "ros/ros.h"
#include "std_msgs/String.h"
#include "visualization_msgs/Marker.h"
#include <sbpl/headers.h>
#include <vector>
#include <time.h>
#include <tf/tf.h>
#define ENABLE_TIME 0
using namespace std;
/**
* This node takes in a (x,y,z,yaw,time) path from "sol.txt" and publishes a quadrotor mesh for RVIZ
* Also, reads dynamic obstacle trajectories from dynObs0000.dob and publishes quadrotor meshes for each dynamic obstacle. //TODO:Meshes for more interesting dynamic obstacles ?
*/
// TODO: Paths to sol and dynObs files are hard-coded. Modify to provide more flexibility.
vector <vector<double> > robotTraj;
vector<vector<vector <double> > > dynObsTrajs;
vector<double> dynObsRad;
const int INF = 10000;
// Env parameters
int mapX,mapY,mapZ;
double spatial_resolution, temporal_resolution; // Spatial resolution is assumed to be uniform in x,y and z directions.
double center_x,center_y,center_z;
// Dyn Obs parameters
double pr2_rad = 0.6;
double quad_rad = 0.3;
bool getPoint(FILE* ptr, vector<double>& point){
if(fscanf(ptr,"%lf %lf %lf %lf %lf",&point[0], &point[1], &point[2], &point[3], &point[4])==EOF)
return false;
return true;
}
bool skipLines(FILE* ptr, int n){ // Skips n lines in a file
char sTemp[1000];
for(int i=0;i<n;i++){
if(fgets(sTemp,1000,ptr)==NULL)
return false;
}
return true;
}
bool renderWorld(ros::NodeHandle node_handle){
// Read world file (in the format of .exp file) and add cubes at positions where there is '1' in the world file.
char sTemp[1000];
int temp;
FILE* ptr;
ptr = fopen("./tests/test0000.exp","r");
if(ptr == NULL){
SBPL_ERROR("Cannot open .tests/test0000.dob file");
return 0;
}
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%d",&mapX)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%d",&mapY)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%d",&mapZ)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
skipLines(ptr,5);
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%lf",&spatial_resolution)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(fscanf(ptr,"%lf",&temporal_resolution)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
skipLines(ptr,7);
center_x = mapX*spatial_resolution/2;
center_y = mapY*spatial_resolution/2;
center_z = mapZ*spatial_resolution/2;
ros::Publisher world_pub = node_handle.advertise<visualization_msgs::Marker>("/base_link/visualization_marker", 10000, true);
visualization_msgs::Marker marker;
marker.header.frame_id = "/base_link";
marker.header.stamp = ros::Time();
marker.ns = "world";
marker.id = 0;
marker.type = visualization_msgs::Marker::CUBE_LIST;
marker.action = visualization_msgs::Marker::ADD;
geometry_msgs::Point p;
//for(int z=0;z<mapZ;z++){
for(int y=0;y<mapY;y++){
for(int x=0;x<mapX;x++){
if(fscanf(ptr,"%d",&temp)==EOF){
SBPL_ERROR("Error reading world file");
return 0;
}
if(temp==1){
p.x = x*spatial_resolution-center_x+spatial_resolution/2;
p.y = y*spatial_resolution-center_y+spatial_resolution/2;
p.z = spatial_resolution*mapZ/2;
//p.z = z*spatial_resolution;
marker.points.push_back(p);
}
}
//}
}
marker.pose.orientation.x = 0.0;
marker.pose.orientation.y = 0.0;
marker.pose.orientation.z = 0.0;
marker.pose.orientation.w = 1.0;
marker.scale.x = spatial_resolution;
marker.scale.y = spatial_resolution;
marker.scale.z = spatial_resolution*mapZ;
marker.color.a = 1.0;
marker.color.r = 0.0;
marker.color.g = 0.0;
marker.color.b = 0.0;
world_pub.publish(marker);
fclose(ptr);
return true;
}
bool readRobotTraj(){
FILE* ptr;
ptr = fopen("./sol.txt","r");
if(ptr == NULL){
SBPL_ERROR("Cannot open ../sol.txt file");
return 0;
}
vector<double> point;
point.resize(5); //Every point in the trajectory is of the form (x,y,z,yaw,time)
while(getPoint(ptr,point)){
robotTraj.push_back(point);
}
if(robotTraj.size()==0){ //Return true if there is atleast one valid point in the trajectory
fclose(ptr);
return false;
}
fclose(ptr);
return true;
}
bool readDynObsTrajs(){
FILE* ptr;
ptr = fopen("./tests/dynObs0000.dob","r");
if(ptr == NULL){
SBPL_ERROR("Cannot open .tests/dynObs0000.dob file");
return 0;
}
//I am assuming that the format of the file complies with that of a dynObs file.
char sTemp[1000];
int numDynObs,numPoints;
vector<double> point;
point.resize(5); //Every point in the trajectory is of the form (x,y,z,time,std_dev)
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
if(fscanf(ptr,"%d",&numDynObs)==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
dynObsTrajs.resize(numDynObs);
dynObsRad.resize(numDynObs);
for(int j=0;j<numDynObs;j++){
// Skip the next 5 lines (Stuff not needed here)
if(skipLines(ptr,2)==0){
SBPL_ERROR("skip5 Error reading DynObs file");
return 0;
}
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
if(fscanf(ptr,"%lf",&dynObsRad[j])==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
if(skipLines(ptr,4)==0){
SBPL_ERROR("skip5 Error reading DynObs file");
return 0;
}
if(fscanf(ptr,"%s",sTemp)==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
if(fscanf(ptr,"%d",&numPoints)==EOF){
SBPL_ERROR("Error reading DynObs file");
return 0;
}
ROS_INFO("Got %d\n",numPoints);
dynObsTrajs[j].resize(numPoints);
for(int i=0;i<numPoints;i++){
dynObsTrajs[j][i].resize(5);
if(getPoint(ptr,point)){
dynObsTrajs[j].push_back(point);
}
else{
SBPL_ERROR("DynObs file has incorrect format");
return 0;
}
}
// Skip next line
if(skipLines(ptr,1)==0){
SBPL_ERROR("skip1 Error reading DynObs file");
return 0;
}
}
fclose(ptr);
return true;
}
void interp(vector<double> start,vector<double> end, int interp_factor, int index,vector <double>&newPoint){
if(interp_factor==0){
SBPL_ERROR("Must have non-zero interpolation factor\n");
exit(1);
}
for(int i=0;i<5;i++){
newPoint[i] = start[i]+(end[i]-start[i])*index/interp_factor;
}
}
bool interpTrajs(vector< vector <double> >& robotTraj, vector<vector<vector <double> > > dynObsTrajs){
vector< vector <double> > newRobotTraj;
vector<vector<vector <double> > > newDynObsTrajs;
int interp_factor = 30;
newRobotTraj.resize(robotTraj.size()*interp_factor);
for(int i=0;i<(int)robotTraj.size()-1;i++){
for(int j=0;j<interp_factor;j++){
newRobotTraj[i*interp_factor+j].resize(5);
interp(robotTraj[i],robotTraj[i+1], interp_factor, j,newRobotTraj[i*interp_factor+j]);
}
}
interp_factor = 300; //10 times the interp factor for robot because time resolution is 10 times lesser for the trajectories here
newDynObsTrajs.resize(dynObsTrajs.size());
for(int k=0;k<(int)dynObsTrajs.size();k++){
for(int i=0;i<(int)dynObsTrajs[k].size()-1;i++){
newDynObsTrajs[k].resize(dynObsTrajs[k].size()*interp_factor);
for(int j=0;j<interp_factor;j++){
newDynObsTrajs[k][i*interp_factor+j].resize(5);
interp(dynObsTrajs[k][i],dynObsTrajs[k][i+1], interp_factor, j,newDynObsTrajs[k][i*interp_factor+j]);
}
}
}
robotTraj.clear();
dynObsTrajs.clear();
robotTraj = newRobotTraj;
dynObsTrajs = newDynObsTrajs;
return true;
}
bool entityToMove(vector<int>& ptrs, int& robot_ptr, int& corresp_obs){
// corresp_obs is set as the index of the dynamic obstacle that has to make the next move. If the robot has to move next, corresp_obs is set to -1
// The return value is false only if all trajectories have been executed already.
double min = (double)INF;
corresp_obs = INF;
if(robot_ptr != -1){
if(robotTraj[robot_ptr][4]<min){
min = robotTraj[robot_ptr][4];
corresp_obs = -1;
}
}
for(int i=0;i<(int)ptrs.size();i++){
//ROS_INFO("ptr index: %d\n",ptrs[i]);
if(ptrs[i]==-1) // Obstacle's trajectory has run out if the index is -1
continue;
if(dynObsTrajs[i][ptrs[i]][3]<min){
min = dynObsTrajs[i][ptrs[i]][3];
corresp_obs = i;
}
}
if(corresp_obs == -1){
if(robot_ptr+1 < (int)robotTraj.size())
robot_ptr += 1; // Increment index if there are more points on the trajectory
else
robot_ptr = -1; // Set index to -1 when robot's trajectory has run out
}
else{
if(ptrs[corresp_obs]+1 < (int)dynObsTrajs[corresp_obs].size())
ptrs[corresp_obs] += 1; // Increment index if there are more points on the trajectory
else
ptrs[corresp_obs] = -1; // Set index to -1 when obstacle's trajectory has run out
}
if(corresp_obs==-1)
return robot_ptr!=-1;
return corresp_obs!=INF;
}
int main(int argc, char **argv){
ros::init(argc, argv, "pathVisualizer");
ros::NodeHandle n;
ros::Publisher vis_pub = n.advertise<visualization_msgs::Marker>("/base_link/visualization_marker", 10000, true);
ros::Rate loop_rate(1500);
renderWorld(n);
// Read robot trajectory
if(!readRobotTraj()){
SBPL_ERROR("A valid trajectory could not be read from ../sol.txt");
exit(1);
}
int numPoints = robotTraj.size();
ROS_INFO("Number of points in the robot trajectory: %d\n",numPoints);
if(!readDynObsTrajs()){
SBPL_ERROR("There was an error reading the DynObs file");
exit(1);
}
// Read dynamic obstacle trajectories
int numDynObs = dynObsTrajs.size();
ROS_INFO("Number of dynamic obstacles: %d\n",numDynObs);
//Interpolate Trajetcories
interpTrajs(robotTraj, dynObsTrajs);
vector<int> current_indices;
current_indices.resize(numDynObs);
int robot_index = 0;
int entity_index = INF; // This holds the index of the entity that has to be moved next
#if ENABLE_TIME == 1
double clock_now;
vector<double> current_times;
double robot_current_time = 0;
current_times.resize(numDynObs);
#endif
//for(int i=0;i<numPoints;i++)
while(entityToMove(current_indices,robot_index,entity_index))
{
if(entity_index!=-1&¤t_indices[entity_index]==-1)
continue;
//ROS_INFO("Point: %lf %lf %lf\n", robotTraj[robot_index][0],robotTraj[robot_index][1],robotTraj[robot_index][2]);
visualization_msgs::Marker marker;
marker.header.frame_id = "/base_link";
marker.header.stamp = ros::Time();
marker.type = 10; // Mesh
marker.action = visualization_msgs::Marker::ADD;
if(entity_index == -1){
#if ENABLE_TIME == 1
clock_now = clock()/CLOCKS_PER_SEC;
while(robotTraj[robot_index][4] > clock_now){ //Wait till sufficient time has elapsed
clock_now = clock()/CLOCKS_PER_SEC;
}
robot_current_time = robotTraj[robot_index][4];
#endif
btQuaternion temp;
temp.setEulerZYX(robotTraj[robot_index][3],0,0);
marker.ns = "robot";
marker.id = 0;
marker.pose.position.x = robotTraj[robot_index][0]-center_x;
marker.pose.position.y = robotTraj[robot_index][1]-center_y;
marker.pose.position.z = robotTraj[robot_index][2];
marker.pose.orientation.x = temp.getX();
marker.pose.orientation.y = temp.getY();
marker.pose.orientation.z = temp.getZ();
marker.pose.orientation.w = temp.getW();
marker.color.a = 1.0;
marker.color.r = 0.0;
marker.color.g = 1.0;
marker.color.b = 0.0;
marker.scale.x = .5;
marker.scale.y = .5;
marker.scale.z = .5;
marker.mesh_resource = "package://sbpl_dynamic_planner_3D/config/quadrotor_base.dae"; // Downloaded from hector_quadrotor ros package - http://mirror.umd.edu/roswiki/tu%282d%29darmstadt%282d%29ros%282d%29pkg.html#hector_models
}
else{
#if ENABLE_TIME == 1
clock_now = clock()/CLOCKS_PER_SEC;
while(dynObsTrajs[entity_index][current_indices[entity_index]][3] > clock_now){ //Wait till sufficient time has elapsed
clock_now = clock()/CLOCKS_PER_SEC;
}
current_times[entity_index] = dynObsTrajs[entity_index][current_indices[entity_index]][3];
#endif
marker.ns = entity_index;
marker.id = 0;
marker.pose.position.x = dynObsTrajs[entity_index][current_indices[entity_index]][0]-center_x;
marker.pose.position.y = dynObsTrajs[entity_index][current_indices[entity_index]][1]-center_y;
marker.pose.position.z = dynObsTrajs[entity_index][current_indices[entity_index]][2];
marker.pose.orientation.x = 0.0;
marker.pose.orientation.y = 0.0;
marker.pose.orientation.z = 0.0;
marker.pose.orientation.w = 1.0;
marker.mesh_use_embedded_materials = true; // Set to true so that mesh properties in the .dae file are used
if(dynObsRad[entity_index]==quad_rad){
marker.mesh_resource = "package://sbpl_dynamic_planner_3D/config/quadrotor_base.dae";
marker.scale.x = .5;
marker.scale.y = .5;
marker.scale.z = .5;
}
else{
marker.mesh_resource = "package://pr2_description/meshes/base_v0/base.dae";
//marker.mesh_resource = "package://pr2_description/meshes/torso_v0/torso_lift.dae";
marker.scale.x = 1.2;
marker.scale.y = .4;
marker.scale.z = .4;
}
}
//only if using a MESH_RESOURCE marker type:
// // Flying PR2s ? :)
vis_pub.publish( marker );
//ros::spinOnce();
#if ENABLE_TIME == 0
loop_rate.sleep();
#endif
}
return 0;
}
| [
"[email protected]"
] | |
fb5ec6fefa736aa5b037a0f4c63d531240fb21a0 | de1644ee4099a698e7f3d86f46c789fdf66d0a4d | /Code/Tools/ToolsFoundation/Reflection/ReflectedTypeStorageManager.h | 6389494236f87ae0528186267f95ad88eda26a0d | [
"CC-BY-3.0"
] | permissive | eltld/ezEngine | 5cbe56c0f033763e1c9478c39e5979ac01430ec6 | 3230235249dd2769f166872b753efd6bd8347c98 | refs/heads/master | 2021-01-12T13:22:24.959311 | 2016-03-28T20:41:35 | 2016-03-28T20:41:35 | 72,212,613 | 0 | 1 | null | 2016-10-28T14:05:10 | 2016-10-28T14:05:10 | null | UTF-8 | C++ | false | false | 2,378 | h | #pragma once
#include <ToolsFoundation/Reflection/PhantomRttiManager.h>
#include <Foundation/Containers/Set.h>
class ezReflectedTypeStorageAccessor;
/// \brief Manages all ezReflectedTypeStorageAccessor instances.
///
/// This class takes care of patching all ezReflectedTypeStorageAccessor instances when their
/// ezRTTI is modified. It also provides the mapping from ezPropertyPath to the data
/// storage index of the corresponding ezVariant in the ezReflectedTypeStorageAccessor.
class EZ_TOOLSFOUNDATION_DLL ezReflectedTypeStorageManager
{
public:
ezReflectedTypeStorageManager();
private:
struct ReflectedTypeStorageMapping
{
struct StorageInfo
{
StorageInfo() : m_uiIndex(0), m_Type(ezVariant::Type::Invalid) {}
StorageInfo(ezUInt16 uiIndex, ezVariant::Type::Enum type, const ezVariant& defaultValue)
: m_uiIndex(uiIndex), m_Type(type), m_DefaultValue(defaultValue) {}
ezUInt16 m_uiIndex;
ezEnum<ezVariant::Type> m_Type;
ezVariant m_DefaultValue;
};
/// \brief Flattens all POD type properties of the given ezRTTI into m_PathToStorageInfoTable.
///
/// The functions first adds all parent class properties and then adds its own properties.
/// POD type properties are added under the current path and non-PODs are recursed into with a new path.
void AddProperties(const ezRTTI* pType);
void AddPropertiesRecursive(const ezRTTI* pType, const char* szPath);
void UpdateInstances(ezUInt32 uiIndex, const ezAbstractProperty* pProperty);
void AddPropertyToInstances(ezUInt32 uiIndex, const ezAbstractProperty* pProperty);
ezSet<ezReflectedTypeStorageAccessor*> m_Instances;
ezHashTable<ezString, StorageInfo> m_PathToStorageInfoTable;
};
EZ_MAKE_SUBSYSTEM_STARTUP_FRIEND(ToolsFoundation, ReflectedTypeStorageManager);
friend class ezReflectedTypeStorageAccessor;
static void Startup();
static void Shutdown();
static const ReflectedTypeStorageMapping* AddStorageAccessor(ezReflectedTypeStorageAccessor* pInstance);
static void RemoveStorageAccessor(ezReflectedTypeStorageAccessor* pInstance);
static ReflectedTypeStorageMapping* GetTypeStorageMapping(const ezRTTI* pType);
static void TypeEventHandler(const ezPhantomRttiManager::Event& e);
private:
static ezMap<const ezRTTI*, ReflectedTypeStorageMapping*> m_ReflectedTypeToStorageMapping;
};
| [
"[email protected]"
] | |
3f824cd3525fc2add26bdacad23d0e998662cc5d | 81cd7bf5474c1b9ef94a0c31f749e7c9e641aebc | /Connect4_MiniMax/c4board.h | 98c49d54a373d083afe688e68213aec234da525f | [] | no_license | chishaung/CS_570-Artificial-Intelligence- | d0347a81fafe61673b812ec7a2051ed7f644ee68 | 9be761b9ab230b972c4e233a9df2806eea5ca1ef | refs/heads/master | 2020-05-30T11:15:15.433165 | 2015-03-07T00:17:17 | 2015-03-07T00:17:17 | 31,794,983 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,369 | h | #include <iostream>
#include "rand.h"
#include <algorithm>
#define INFINITY 99999
typedef unsigned long long int Bit64;
using namespace std;
// input/output:
// .......
// .......
// .......
// .......
// .......
// .......
//
// ...O...
// ..XX...
// -
// -- is the end of game signal
//
class Board {
private:
static const int height = 6;
static const int width = 7;
private:
string name; // name of player
char board[height][width]; // full board
int top[width]; // location of first empty cell in column
char moveChar; // character for next play
int x, o; // number of x's and number of o's
// methods
private:
char cleanChar(char c);
public:
Board(string nameArg);
bool read();
bool check();
void print(char *spacing="");
bool moveOK(int c);
bool isBoardFull();
int pickRandomMove();
int PlayBestMove(int depth);
int PickBestMove(int depth);
void placeMove(int c);
void playRandomMove();
char isWinner();
bool isWinner(char c);
Bit64 toBitstring(char piece);
int check_2(char player) ;
int check_3(char player) ;
int evaluating(int, int);
int Search_Min(int depth, int, int, int, int);
int Search_Max(int depth, int, int, int, int);
int checkboard();
int Distance();
};
| [
"[email protected]"
] | |
f98d7ac7c8f68aa8c8f06b9d72781d7f4924dce5 | 7a05ca8c82e2aa10cb7a9338b80b30f31dfa1b1e | /hphp/php7/cfg.h | f44c8b4d9912d6eea03970e47165a0b5adccd366 | [
"PHP-3.01",
"Zend-2.0",
"BSD-3-Clause"
] | permissive | djdagovs/hhvm | 608adb6f11ac8929c578a80fa7a15e48f8194ac7 | e4ac8082f9c8449653e169a35eef7d3251c0ffe2 | refs/heads/master | 2021-01-22T17:34:29.326916 | 2017-09-04T17:52:50 | 2017-09-04T18:11:49 | 102,397,347 | 1 | 0 | null | 2017-09-04T19:56:56 | 2017-09-04T19:56:55 | null | UTF-8 | C++ | false | false | 12,834 | h | /*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef incl_HPHP_PHP7_CFG_H
#define incl_HPHP_PHP7_CFG_H
#include "hphp/php7/bytecode.h"
#include <folly/Unit.h>
#include <memory>
#include <vector>
namespace HPHP { namespace php7 {
struct Region;
/* A basic block of bytecode
*
* Each block has a sequence of non-exit instructions followed by a sequence of
* exit instructions. Each block is also assigned an ID but this is mostly
* ignored--blocks are usually identified by their pointer until they are
* output to HHAS. Nevertheless, when output, no two blocks should have the
* same numeric ID in one function
*/
struct Block {
#define EXIT(name) void emit(bc::name) = delete;
#define EXIT_LAST EXIT
EXIT_OPS
#undef EXIT
#undef EXIT_LAST
void emit(ExitOp op) = delete;
/* Add an normal instruction to the end of this block.
*
* If the block already has at least one exit instruction, no more regular
* instructions can be added */
void emit(Bytecode bc) {
assert(!exited);
code.push_back(std::move(bc));
}
/* Add an exit instruction to the end of this block */
void exit(ExitOp op) {
exited = true;
exits.push_back(std::move(op));
}
/* Find blocks that this block has exits to */
std::vector<Block*> exitTargets() const;
/* identifies this block in its function */
uint64_t id;
// code associated with this block
std::vector<Bytecode> code;
std::vector<ExitOp> exits;
Region* region;
bool exited{false};
};
/* A region is a way of keeping bytecode contiguous in the output unit and to
* mark protected regions. Regions come in three flavors: fault-protected
* regions (those with an associated fault funclet), exception-protected (with
* an associated catch label), and vanilla (nothing special).
*
* All regions correspond to:
* - a function body (vanilla)
* - the body of a try (protected)
* - the body of a catch (vanilla)
* - a fault funclet (vanilla)
*
* A catch's region must have the same immediate parent as the try's region
*
* In addition, regions must nest completely: i.e. if two regions share any
* bytecode, one must contain the other completely.
*
* It's up to the compiler to ensure that all blocks in a region are dominated
* by a single block (i.e. they can be made into one contiguous chunk of code)
*/
struct Region {
enum Kind {
Entry,
Protected,
Catch,
};
explicit Region(Kind kind, Region* parent = nullptr)
: kind(kind)
, parent(parent) {}
Kind kind;
Region* parent;
Block* handler{nullptr};
std::vector<std::unique_ptr<Region>> children;
void addChild(std::unique_ptr<Region> child) {
child->parent = this;
children.push_back(std::move(child));
}
bool containsBlock(const Block* blk) const {
auto region = blk->region;
while (region) {
if (region == this) {
return true;
}
region = region->parent;
}
return false;
}
};
struct CFGVisitor {
virtual ~CFGVisitor() = default;
virtual void beginTry() = 0;
virtual void beginCatch() = 0;
virtual void endRegion() = 0;
virtual void block(Block* blk) = 0;
};
/* A CFG represents a collection of blocks with a single entry and one or more
* exits. Not all blocks in the CFG are guaranteed to be live code.
*
* Each CFG has a fallthrough exit that we can add code to by compising it with
* other CFGs or instructions using `then` or one of its variants. We can use
* this to sequence bytecodes or even multiple CFGs in a linear order:
*
* CFG graph;
* graph.then(Int{2});
* graph.then(Int{5});
* graph.then(Add{});
* graph.then(Print{});
* graph.then(PopC{});
* // graph.entry now has code that prints 7
*
* CFG return;
* return.then(Int{42});
* return.thenReturn(Flavor::Cell);
* // return now has code that returns 42;
*
* graph.then(std::move(return)); // code that prints 7, then returns 42
*
* Each CFG tracks a continuation block which represents the point where new
* code should be added afterwards. For code that has no definite place where
* control goes afterwards (e.g. return statements, throws, etc.) there is no
* continuation: trying to append code to these CFGs is a no-op.
*
* The API for this class is designed to be used as a fluent API: each call
* designed to modify a CFG does the modification and returns an
* rvalue-reference to `this`: this lets us either chain the call with another,
* move the result, or just modify the graph in place. E.g. we can write:
*
* return CFG()
* .then(Int{2})
* .then(Int{4});
*
* Branches can be inserted in the way you expect:
*
* CFG condition = ...;
* return condition
* .branchNZ( ... another CFG here ...)
* .then( ... else case here ...);
*
* There's four kinds of exits from a CFG: the fallthrough (continuation),
* returns, throws, breaks/continues, and jumps to a named label. Named labels
* can be used both by the compiler to assist in building CFGs and to compile
* gotos. Each CFG tracks the labels it defines and the linkages to missing
* labels (or to returns, etc.) Internal labels should be stripped out before
* other CFGs are joined with the CFG where they are defined. More on this can
* be found along with the methods used to define and strip labels.
*
* Normal exits (return, break, continue, etc.) are also treated as links since
* we sometimes need to intercept these in order to compile finally or breaks.
*
* A CFG can be wrapped up and made ready to output as assembly just by making
* all the links to exits into actual exit instructions. Note that this should
* only be done before inserting the CFG into a unit since it means composing
* the CFG further will probably have unexpected results.
*/
struct CFG {
struct ReturnTarget {
bool operator==(const ReturnTarget& other) const {
return other.flavor == flavor;
}
Flavor flavor;
};
enum LoopTarget {
Break,
Continue
};
struct LabelTarget {
bool operator==(const LabelTarget& other) const {
return other.name == name;
}
std::string name;
};
using LinkTarget = boost::variant<
ReturnTarget,
LoopTarget,
LabelTarget
>;
/* Construct an empty CFG */
CFG()
: m_entry(makeBlock())
, m_continuation(m_entry) {}
/* Construct a CFG that contains only the given instruction */
explicit CFG(Bytecode bc);
/* Construct a CFG that contains the given bytecodes */
/* implicit */ CFG(std::initializer_list<Bytecode> list);
/* Construct a CFG that contains only an unresolved link to the given exit */
/* implicit */ CFG(LinkTarget target);
CFG(CFG&&) = default;
CFG(const CFG&) = delete;
CFG& operator=(CFG&&) = default;
CFG& operator=(const CFG&) = delete;
~CFG() = default;
/* Add a block to this CFG */
Block* makeBlock();
Block* entry() const { return m_entry; }
/* Construct a CFG in one go using internal labels. This function is designed
* to write aseembler-style code fluently.
*
* As an example:
* CFG::Labeled(
* "entry", {
* Int{0},
* SetL{"x"},
* PopC{}
* },
* "check", CFG({
* CGetL{"x"},
* Int{10},
* Lt{},
* }).branchNZ("body")
* .then("end"),
* "body", CFG({
* IncDecL{"x", PostInc},
* Print{},
* PopC{}
* }).then("check"),
* "end", CFG())
*
* Each block falls through to the next and all the labels are stripped at
* the end.
*/
template <typename ...Blocks>
static CFG Labeled(Blocks... more) {
std::unordered_map<std::string, Block*> labels;
auto cfg = CFG::makeLabeled(labels, std::move(more)...);
for(const auto& label : labels) {
cfg.link(label.first, label.second);
cfg.strip(label.first);
}
return cfg;
}
/* sequences a (CFG/instruction) into this CFG */
CFG&& then(CFG cfg);
CFG&& then(Bytecode bc);
/* Inserts a jump to the given block address. The given block address should
* either already be part of this CFG or about to be merged in */
CFG&& thenJmp(Block* block);
/* Add a branch to the given CFG into this CFG */
CFG&& branchZ(CFG cfg);
CFG&& branchNZ(CFG cfg);
/* These variants insert a jump (possibly conditional) to the given label.
* These are available as a convenience when writing code using CFG::Labeled
*/
CFG&& then(const std::string& label);
CFG&& branchZ(const std::string& label);
CFG&& branchNZ(const std::string& label);
CFG&& continueFrom(Block* block);
CFG&& switchUnbounded(std::vector<CFG> exits);
/* sequences a link into this CFG */
CFG&& then(LinkTarget target);
CFG&& thenThrow();
CFG&& thenReturn(Flavor flavor);
CFG&& thenContinue();
CFG&& thenBreak();
CFG&& thenLabel(const std::string& name);
/* replace the given label and strip it out */
CFG&& replace(const std::string& label, CFG cfg);
/* Finalize all exits and raise errors if:
* - any continue or break hasn't been matched with a loop
* - any label is still unresolved
*
* This must be called on a CFG before inserting it into a unit, and no
* sooner
*/
CFG&& makeExitsReal();
/* rewrite breaks and continues to resolve to these CFGs */
CFG&& linkLoop(CFG breakTarget, CFG continueTarget);
/* add a catch region with the given handler */
CFG&& addExnHandler(CFG catchHandler);
CFG&& addFinallyGuard(CFG guard);
CFG&& inRegion(std::unique_ptr<Region> region);
void visit(CFGVisitor&& visitor) const;
void visit(CFGVisitor& visitor) const {
visit(std::move(visitor)); // we don't take ownership
}
private:
/* replaces named labels with the given block */
CFG&& link(const std::string& name, Block* dest);
/* strip out the given label */
CFG&& strip(const std::string& name);
/* Combines two CFGs into one, re-labelling blocks as needed and resolving
* links */
void merge(CFG cfg);
/* probably not what you want: actually emits an exit op instead of creating
* a linkage to the eventual exit */
CFG&& thenExitRaw(ExitOp op);
/* A pending link
*
* Where a link is needed, a trampoline block is added to the CFG and a jump
* to this trampoline is added.
*
* When the link is resolved, code is added to the trampoline to jump to the
* real destination.
*
* This means the trampoline should always be a block that is *not* yet
* exited.
*/
struct Linkage {
Block* trampoline;
LinkTarget target;
};
template <class Function>
void resolveLinks(Function&& f) {
std::vector<Linkage> stillUnresolved;
for (auto& link : m_unresolvedLinks) {
if (Block* blk = f(link)) {
link.trampoline->exit(bc::Jmp{blk});
} else {
stillUnresolved.push_back(std::move(link));
}
}
m_unresolvedLinks = std::move(stillUnresolved);
}
/* A template to implement CFG::Labeled. Consumes one label and CFG and
* sequences it into the resulting CFG; then adds the label to the set
*/
template <typename ...Rest>
static CFG makeLabeled(
std::unordered_map<std::string, Block*>& labels,
const std::string& name,
CFG block, Rest... more) {
auto cfg = block.then(CFG::makeLabeled(labels, std::move(more)...));
labels.insert({name, cfg.m_entry});
return cfg;
}
static CFG makeLabeled(std::unordered_map<std::string, Block*>& labels) {
return {};
}
CFG&& self() {
return std::move(*this);
}
public:
uint64_t m_maxId{0};
std::vector<std::unique_ptr<Block>> m_blocks;
std::vector<std::unique_ptr<Region>> m_topRegions;
std::unordered_map<std::string, Block*> m_labels;
std::vector<Linkage> m_unresolvedLinks;
Block* m_entry;
Block* m_continuation;
};
}} // namespace HPHP::php7
#endif // incl_HPHP_PHP7_CFG_H
| [
"[email protected]"
] | |
76205b0869387d5f2646e6b2b3db268db0fe8eb4 | 3e6da13329b52b1eec7ebb872523ffcec6b9114c | /L08/H8.3/Program.cpp | ec62800181cef7ae6cd44065e349acd144d73946 | [] | no_license | GreenStaradtil/AU-E19-E1OPRG | 45d0d90e184564313a973b71822b73774ce9b888 | 47eed6970c86e0c054655e11fc56c6e69ebb605d | refs/heads/master | 2022-03-11T03:36:30.180320 | 2019-11-20T01:02:03 | 2019-11-20T01:02:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 577 | cpp | #include <stdio.h>
typedef struct {
int age;
int height;
float weight;
} Person ;
int main(void)
{
Person kid = { 10, 145, 35.5 };
Person adult = { 25, 180, 77.4 };
Person elderly = { 80, 166, 48.9 };
printf_s("--- Kid ---\nAge: %d\nHeight: \%d cm\nWeight: %.2f kg\n\n", kid.age, kid.height, kid.weight);
printf_s("--- Adult ---\nAge: %d\nHeight: \%d cm\nWeight: %.2f kg\n\n", adult.age, adult.height, adult.weight);
printf_s("--- Elderly ---\nAge: %d\nHeight: \%d cm\nWeight: %.2f kg\n\n", elderly.age, elderly.height, elderly.weight);
} | [
"[email protected]"
] | |
ddddfdffb7702610425ac5f37049b21440ef281b | cf07f9454974e14597e6b01df11cf7ee94a08b4c | /Jacob/Code/GinRummySim.cpp | 844ecab961f6934174578faf791f9b18914029cc | [] | no_license | jsarvis/cop-ginrummy | 4d9b7c3b02fc4590538987b9a2f40a9e6d255adc | f3f68cf70a802d3aa932e518f35f1d19a4cd61cc | refs/heads/master | 2016-09-06T03:38:48.989270 | 2015-04-02T22:22:20 | 2015-04-02T22:22:20 | 33,334,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 742 | cpp | #include "GinRummy.h"
using namespace SimModels;
int main() {
// Construct new conversation
try
{
GinRummy simulator;
// Output state of the simulator
simulator.Insert();
// Initialize simulator
simulator.Initialize();
// Output state of the simulator
simulator.Insert();
// begin simulator
simulator.Simulate();
// Output state of the simulator
simulator.Insert();
// Output simulator postsimulation report
simulator.WrapUp();
}
catch ( AppError e )
{
cout << "\nSimulation Error Detected!\n------------\n";
cout << "Description : " << e.getMsg() << "\n";
cout << "Origin : " << e.getOrigin() << "\n\n";
}
return 0;
}//main
| [
"[email protected]"
] | |
2d9c17b1941891f70ef8aa58c1d1b4b6458aece8 | 999e3892ff400cbb8ecb9551d733b1516ddde557 | /VerkaufsAutomat/src/KassenZustand/WarteAufMuenze.cpp | 789cc9730da4474ff3630bb60910f253d180cec4 | [] | no_license | mgretler/VerkaufsAutomat | 84a0a553575e247cc7c0a9eba3d63d56132666d6 | 553b01afdc2b2eb6d5d919bacd7b406106ebdee8 | refs/heads/master | 2016-09-05T19:22:27.323116 | 2013-12-15T16:40:18 | 2013-12-15T16:40:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 503 | cpp | /*
* WarteAufMuenze.cpp
*
* Created on: 15.12.2013
* Author: Markus
*/
#include "WarteAufMuenze.h"
#include <iostream>
WarteAufMuenze *WarteAufMuenze::pInstance = NULL;
WarteAufMuenze::~WarteAufMuenze() {
// TODO Auto-generated destructor stub
}
WarteAufMuenze::WarteAufMuenze() {
// TODO Auto-generated constructor stub
}
WarteAufMuenze* WarteAufMuenze::GetInstance() {
if (pInstance == NULL) {
pInstance = new WarteAufMuenze();
}
return pInstance;
}
| [
"[email protected]"
] | |
26417cbdf44499e891a1f765075395e789e04a50 | 42331d7cf453cebb450bb1291b07e57e98c54016 | /cpp/include/cudf/detail/is_element_valid.hpp | f9f42bdae1dcfe8126b7a5236ada49439b596d4d | [
"Apache-2.0"
] | permissive | madsbk/cudf | c9fcd4026f6e0ace9c7a7ea89807780f288aa167 | acd7fdc3228b2fcc0f8ac98b53223bc113713deb | refs/heads/branch-22.08 | 2023-08-13T02:59:00.023098 | 2022-07-04T10:45:13 | 2022-07-04T10:45:13 | 185,614,031 | 0 | 0 | Apache-2.0 | 2022-07-17T23:38:20 | 2019-05-08T13:43:01 | C++ | UTF-8 | C++ | false | false | 1,530 | hpp | /*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <cudf/column/column_view.hpp>
#include <cudf/utilities/default_stream.hpp>
#include <rmm/cuda_stream_view.hpp>
namespace cudf {
namespace detail {
/**
* @brief Return validity of a row
*
* Retrieves the validity (NULL or non-NULL) of the specified row from device memory.
*
* @note Synchronizes `stream`.
*
* @throw cudf::logic_error if `element_index < 0 or >= col_view.size()`
*
* @param col_view The column to retrieve the validity from.
* @param element_index The index of the row to retrieve.
* @param stream The stream to use for copying the validity to the host.
* @return Host boolean that indicates the validity of the row.
*/
bool is_element_valid_sync(column_view const& col_view,
size_type element_index,
rmm::cuda_stream_view stream = cudf::default_stream_value);
} // namespace detail
} // namespace cudf
| [
"[email protected]"
] | |
b3d87502caf0104a53efac5d7a3f30f771f89e7c | 51635684d03e47ebad12b8872ff469b83f36aa52 | /kernel/sys/readlink.cpp | b52e986d275ba4ccaa58abcf2a9dda5f3f3da3e8 | [
"Zlib",
"LicenseRef-scancode-public-domain"
] | permissive | zhmu/ananas | 8fb48ddfe3582f85ff39184fc7a3c58725fe731a | 30850c1639f03bccbfb2f2b03361792cc8fae52e | refs/heads/master | 2022-06-25T10:44:46.256604 | 2022-06-12T17:04:40 | 2022-06-12T17:04:40 | 30,108,381 | 59 | 8 | Zlib | 2021-09-26T17:30:30 | 2015-01-31T09:44:33 | C | UTF-8 | C++ | false | false | 1,048 | cpp | /*-
* SPDX-License-Identifier: Zlib
*
* Copyright (c) 2009-2018 Rink Springer <[email protected]>
* For conditions of distribution and use, see LICENSE file
*/
#include "kernel/types.h"
#include <ananas/errno.h>
#include <ananas/flags.h>
#include "kernel/fd.h"
#include "kernel/process.h"
#include "kernel/result.h"
#include "kernel/vfs/core.h"
#include "kernel/vm.h"
#include "syscall.h"
Result sys_readlink(const char* path, char* buf, const size_t buflen)
{
auto& proc = process::GetCurrent();
DEntry* cwd = proc.p_cwd;
// Attempt to map the buffer write-only
void* buffer;
if (auto result = syscall_map_buffer(buf, buflen, vm::flag::Write, &buffer);
result.IsFailure())
return result;
// Open the link
struct VFS_FILE file;
if (auto result = vfs_open(&proc, path, cwd, O_RDONLY, VFS_LOOKUP_FLAG_NO_FOLLOW, &file);
result.IsFailure())
return result;
// And copy the contents
auto result = vfs_read(&file, buf, buflen);
vfs_close(&proc, &file);
return result;
}
| [
"[email protected]"
] | |
84a8213a984378b2a2981c8065e83ad78946885b | d96a0bef3739db3ea71d5f85324fb290c57b74a4 | /Contests/Codechef/MAY18/Mpfr_double.cpp | 28dca1c9e854291850b22f03911798fbaac8fb0e | [] | no_license | sankar96/Competitive_Programming | 386b1aa0c9799399878f8190afee8b332da88da0 | 59bef7009a2e971714dddf679ca78a0b478f9bc4 | refs/heads/master | 2020-03-11T08:01:24.880550 | 2018-12-10T07:27:11 | 2018-12-10T07:27:11 | 129,872,751 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,208 | cpp | #include <chrono>
#include <ctime>
#include <iostream>
#include <mpfr.h>
#include <ratio>
#define ONEMILLION 1000000
using namespace std;
void mpfr_d () {
mpfr_t a;
mpfr_init (a);
mpfr_t b;
mpfr_init (b);
mpfr_set_str (a, "0.5585648756", 0, MPFR_RNDZ);
for (int i = 0; i < ONEMILLION; i++) {
mpfr_set (a, b, MPFR_RNDZ);
}
}
void mpfr_string () {
mpfr_t a;
mpfr_init (a);
string st = "1234343.5585648756";
for (int i = 0; i < ONEMILLION; i++) {
mpfr_set_str (a, st.c_str (), 10, MPFR_RNDZ);
}
}
int main () {
std::chrono::time_point<std::chrono::system_clock> start, end;
start = std::chrono::system_clock::now ();
// std::cout << "f(42) = " << fibonacci (42) << '\n';
mpfr_d ();
end = std::chrono::system_clock::now ();
auto t1 = std::chrono::duration_cast<std::chrono::milliseconds> (end - start);
cout << t1.count () << endl;
start = std::chrono::system_clock::now ();
// std::cout << "f(42) = " << fibonacci (42) << '\n';
mpfr_string ();
end = std::chrono::system_clock::now ();
t1 = std::chrono::duration_cast<std::chrono::milliseconds> (end - start);
cout << t1.count () << endl;
} | [
"[email protected]"
] | |
702f19ed22af9cfef41e04011b11181edf042787 | 387a5bd6011a74d4c0b9078f4b9f7c33d8351571 | /505/a.cpp | 60d685f0885507d0570408f14fe121bf4a58b8e3 | [] | no_license | caithagoras/codeforces | cb6bd9046b495be5006818f2ede982b711e9efa8 | 06791e94c8e723d24ecab610c0ffa2f911190598 | refs/heads/master | 2021-01-19T22:01:35.526800 | 2015-03-17T19:36:14 | 2015-03-17T19:36:14 | 29,934,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 675 | cpp | #include <iostream>
using namespace std;
bool p(string s){
int i = 0;
int j = s.length()-1;
while (i<j) {
if (s[i] != s[j]) return false;
i++;
j--;
}
return true;
}
int main() {
string s;
cin>>s;
for (int i=0;i<=s.length();i++) {
char c;
if (s.length() % 2 == 1) {
if (i <= s.length()/2) c = s[s.length()-i-1];
else c=s[s.length()-i];
}
else {
if (i < s.length()/2) c = s[s.length()-i-1];
else if (i == s.length()/2) c = 'a';
else c = s[s.length()-i];
}
string str = s.substr(0,i) + c + s.substr(i);
if (p(str)) {
cout<<str<<endl;
return 0;
}
}
cout<<"NA"<<endl;
}
| [
"[email protected]"
] | |
4116b42d63af82bc274e87386287b1e9401645df | 33321b4733be80d98dda7b3c3618c2692dea59bb | /AfxHookSource/CampathDrawer.h | 3bf341fb0503fd79f400710bd384d36a502335ae | [] | no_license | netglowlovesyou/advancedfx | 6202862ddcf36c2858fc84295c26a973741bf7be | cb4a5cb30d3c265a26ec31f572900db4511ae05c | refs/heads/master | 2021-01-15T14:36:46.074153 | 2015-12-10T05:29:57 | 2015-12-10T05:29:57 | 47,743,872 | 1 | 0 | null | 2015-12-10T06:57:44 | 2015-12-10T06:57:43 | null | UTF-8 | C++ | false | false | 2,767 | h | #pragma once
// Copyright (c) advancedfx.org
//
// Last changes:
// 2015-08-03 dominik.matrixstorm.com
//
// First changes:
// 2010-04-22 dominik.matrixstorm.com
#include "SourceInterfaces.h"
#include "AfxShaders.h"
#include <shared/CamPath.h>
#include <d3d9.h>
#include <list>
#define CCampathDrawer_VertexFVF D3DFVF_XYZ | D3DFVF_DIFFUSE | D3DFVF_TEX0 | D3DFVF_TEXCOORDSIZE3(0) | D3DFVF_TEX1 | D3DFVF_TEXCOORDSIZE3(1) | D3DFVF_TEX2 | D3DFVF_TEXCOORDSIZE3(2)
// TODO: most line vertices can be cached if the colouring is done through the vertex shader.
class CCampathDrawer
: public ICamPathChanged
{
public:
CCampathDrawer();
~CCampathDrawer();
void Draw_set(bool value);
bool Draw_get(void);
void BeginDevice(IDirect3DDevice9 * device);
void EndDevice();
void Reset();
void OnPostRenderAllTools();
void OnSetupEngineView();
virtual void CamPathChanged(CamPath * obj);
private:
struct Vertex
{
FLOAT x, y, z; // Position of current line point
DWORD diffuse; // Diffuse color of current line point
FLOAT t0u, t0v, t0w; // Extrusion direction from current line point (-1/1), reserved
FLOAT t1u, t1v, t1w; // Unit vector pointing to previous line point
FLOAT t2u, t2v, t2w; // Unit vector pointing to next line point
};
struct TempPoint
{
double t;
Vector3 y;
TempPoint * nextPt;
};
IDirect3DDevice9 * m_Device;
bool m_Draw;
DWORD m_OldCurrentColor;
Vector3 m_OldPreviousPolyLinePoint;
IAfxPixelShader * m_PixelShader;
bool m_PolyLineStarted;
bool m_SetupEngineViewCalled;
bool m_RebuildDrawing;
IAfxVertexShader * m_VertexShader;
VMatrix m_WorldToScreenMatrix;
IDirect3DVertexBuffer9 * m_VertexBuffer;
UINT m_VertexBufferVertexCount; // c_VertexBufferVertexCount
Vertex * m_LockedVertexBuffer;
std::list<double> m_TrajectoryPoints;
void BuildPolyLinePoint(Vector3 previous, Vector3 current, DWORD currentColor, Vector3 next, Vertex * pOutVertexData);
void BuildSingleLine(Vector3 from, Vector3 to, Vertex * pOutVertexData);
void BuildSingleLine(DWORD colorFrom, DWORD colorTo, Vertex * pOutVertexData);
void AutoSingleLine(Vector3 from, DWORD colorFrom, Vector3 to, DWORD colorTo);
void AutoSingleLineFlush();
void AutoPolyLineStart();
void AutoPolyLinePoint(Vector3 previous, Vector3 current, DWORD colorCurrent, Vector3 next);
void AutoPolyLineFlush();
bool LockVertexBuffer();
void UnlockVertexBuffer();
void UnloadVertexBuffer();
/// <summary>For reducing the number of points.</summary>
void RamerDouglasPeucker(TempPoint * start, TempPoint * end, double epsilon);
double ShortestDistanceToSegment(TempPoint * pt, TempPoint * start, TempPoint * end);
};
extern CCampathDrawer g_CampathDrawer;
| [
"[email protected]"
] | |
6c545c808e627d156493c7d20be1791a6aa4f6e9 | f196ad7961e07488fd87b28a151966576f21ef16 | /Clear/kdevelop/Clear/bitboard.cpp | a4b6e8f4fc16cc54b9864c11a36827c4bd11af7e | [] | no_license | Errleng/chess-engine | b8e7991ba18fc8aa490d6b25261d5ff3a11ea886 | 2e08cf552ee97a16f59188e491b049780371aa4d | refs/heads/master | 2023-02-16T02:22:38.047165 | 2019-09-17T23:28:35 | 2019-09-17T23:28:35 | 329,190,928 | 0 | 0 | null | 2021-01-13T04:29:36 | 2021-01-13T04:13:31 | C++ | UTF-8 | C++ | false | false | 702 | cpp | #include "bitboard.h"
#include <iostream>
bool Bitboard::isEmpty() {
return value == 0;
}
void Bitboard::setBit(int square) {
value |= Utils::setMask[square];
}
void Bitboard::clearBit(int square) {
value &= Utils::clearMask[square];
}
int Bitboard::popBit() {
unsigned long long b = value ^ (value - 1);
unsigned int fold = (unsigned) ((b & 0xffffffff) ^ (b >> 32));
value &= (value - 1);
return BIT_TABLE[(fold * 0x783a9b23) >> 26];
}
int Bitboard::getBitCount() {
int count = 0;
unsigned long long tempValue = value;
while (tempValue != 0) {
tempValue &= (tempValue - 1);
++count;
}
return count;
}
| [
"[email protected]"
] | |
66fc112c221d1f32e20034815f6c57c0e5b09b4a | 2d5ee110f7397af32613b8c385b5f8930ff891af | /sim/src/main/cc/midasexamples/Risc.h | 25cca9c0bf9f891644ea79427dd8cc3ed32a0b88 | [
"LicenseRef-scancode-bsd-3-clause-jtag"
] | permissive | CSL-KU/firesim-nvdla | 2f99036dba4576c875c348b6971daacb289da72c | c71694c972469013af7c2f9ca1dface9498da73e | refs/heads/nvdla | 2022-01-30T04:35:18.950793 | 2020-03-09T18:21:08 | 2020-03-09T18:21:08 | 166,863,012 | 162 | 36 | NOASSERTION | 2022-01-16T15:40:44 | 2019-01-21T18:46:38 | Python | UTF-8 | C++ | false | false | 3,396 | h | //See LICENSE for license details.
#include "simif.h"
typedef std::vector< uint32_t > app_t;
class Risc_t: public virtual simif_t
{
public:
uint32_t expected = 4;
uint64_t timeout = 10;
Risc_t(int argc, char** argv) {}
void run() {
app_t app;
init_app(app);
target_reset();
wr(0, 0);
for (size_t addr = 0 ; addr < app.size() ; addr++) {
wr(addr, app[addr]);
}
boot();
uint64_t k = 0;
do {
tick(); k += 1;
} while (peek(io_valid) == 0 && k < timeout);
expect(k < timeout, "TIME LIMIT");
expect(io_out, expected);
}
private:
void wr(uint32_t addr, uint32_t data) {
poke(io_isWr, 1);
poke(io_boot, 0);
poke(io_wrAddr, addr);
poke(io_wrData, data);
step(1);
}
void boot() {
poke(io_isWr, 0);
poke(io_boot, 1);
step(1);
}
void tick() {
poke(io_isWr, 0);
poke(io_boot, 0);
step(1);
}
uint32_t I(uint32_t op, uint32_t rc, uint32_t ra, uint32_t rb) {
return (op << 24 | rc << 16 | ra << 8 | rb);
}
protected:
virtual void init_app(app_t& app) {
short_app(app);
}
void short_app(app_t& app) {
app.push_back(I(1, 1, 0, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 255, 1, 0));
}
void long_app(app_t& app) {
app.push_back(I(1, 1, 0, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 2));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 3));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 4));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 5));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 6));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 7));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 8));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 9));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 1, 0, 10));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(0, 1, 1, 1));
app.push_back(I(1, 2, 0, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 2));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 3));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 4));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 5));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 6));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 7));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 8));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 9));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(1, 2, 0, 10));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 2, 2, 1));
app.push_back(I(0, 255, 1, 0));
}
};
| [
"[email protected]"
] | |
ffaac4846720874479d072a1efbfcf086ec4eef5 | 2b5eb175bbae68f9dd129854c118a7390fd0fa97 | /src/System.cpp | 09fd468ca8b6d99739eca3f672be21e594838000 | [] | no_license | ChristopherNugent/particle-sim | 6bf9e9a9ccdc749a7069b9882a7a0bd642cab03b | 20df808ef05168cce07b01ade560052c72471b2e | refs/heads/master | 2021-04-27T16:43:38.012288 | 2018-11-05T20:45:01 | 2018-11-05T20:45:01 | 122,309,128 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,475 | cpp | // System.cpp
#ifndef SYSTEM
#define SYSTEM
#include "System.h"
// Randomizes the state of the passed particle according
// to the bounds of the systes
void System::randomizeParticle(Particle& p) {
double mass = MAX_MASS * randomFloat();
p.mass = mass;
for (int j = 0; j < Particle::D; ++j) {
p.pos[j] = 2 * bounds * randomFloat() - bounds;
p.vel[j] = 10 * randomFloat() - 5;
}
}
// Returns a random float between 0 and 1
double System::randomFloat() {
float r = rand();
float rMax = RAND_MAX;
return r / rMax;
}
// Calculates the center of mass based on the current state of the system
void System::updateCOMS() {
Particle c;
double totalMass = 0;
for (int i = 0; i < particles.size(); i++) {
totalMass += particles.at(i).mass;
}
for (int i = 0; i < particles.size(); i++) {
Particle p = particles[i];
for (int d = 0; d < Particle::D; d++) {
c.pos[d] += p.pos[d] * p.mass / totalMass;
}
}
for (int d = 0; d < Particle::D; d++) {
history.push_back(c.pos[d]);
}
if (history.size() > 1000) {
for (int d = 0; d < Particle::D; d++) {
history.pop_front();
}
}
com = c;
}
System::System() {
// totalMass = -1;
bounds = 300;
particles.resize(N);
}
// Initializes the system to a random state
void System::initParticles() {
srand(time(0));
history = {};
// totalMass = 0;
for (int i = 0; i < particles.size(); i++) {
randomizeParticle(particles.at(i));
}
}
// Moves the system timeStep into the future as one step
void System::update(double timeStep) {
for (int i = 0; i < particles.size(); i++) {
for (int j = i + 1; j < particles.size(); j++) {
particles[i].gravitate(particles[j], timeStep);
}
particles[i].update(timeStep, bounds);
}
updateCOMS();
}
// Adds a random particle to the system
void System::addParticle() {
Particle p;
randomizeParticle(p);
particles.push_back(p);
}
// Removes the particle at index i from the system
void System::removeParticle(int i) {
if (particles.size() < 1) {
return;
}
if (i < 0) {
particles.pop_back();
return;
}
particles.at(i) = particles.back();
particles.pop_back();
}
void System::setBounds(double nBounds) {
bounds = nBounds;
}
int System::size() const {
return particles.size();
}
// Returns the dth dimension of the position of particle i
double System::pos(int i, int d) const {
if (i < 0 || i > size() || d < 0 || d >= Particle::D) {
return 0;
}
return particles.at(i).pos[d];
}
// Returns the dth dimension of the position of the center of mass
double System::comPos(int d) const {
if (d < 0 || d >= Particle::D) {
return 0;
}
return com.pos[d];
}
// Returns the dth dimension oof the color of particle i
double System::color(int i, int d) const {
if (i < 0 || i > size() || d < 0 || d > 2) {
return 0;
}
return particles.at(i).color[d];
}
// returns the mass of particle i
double System::mass(int i) const {
if (i < 0 || i > size()) {
return 0;
}
return particles.at(i).mass;
}
double System::getBounds() const {
return bounds;
}
// Returns the particle with position closest to the past particle
int System::closestParticle(Particle p) const {
double minDistance = DBL_MAX;
int result = -1;
for (int i = 0; i < particles.size(); i++) {
double distance = p.distance(particles.at(i));
if (distance < minDistance) {
minDistance = distance;
result = i;
}
}
return result;
}
// Returns the first particle matching the passed color
int System::getByColor(const float mColor[]) const {
for (int i = 0; i < size(); i++) {
int c = 0;
while (c < 3) {
if (mColor[c] != color(i, c)) {
break;
}
if (c == 2) {
return i;
}
c++;
}
}
return -1;
}
void System::printPositions() const {
for (int i = 0; i < particles.size(); ++i) {
Particle p = particles[i];
std::cout << "Particle " << i << ": Mass = " << p.mass << ", Position = (" << p.pos[0];
for (int d = 1; d < Particle::D; d++) {
std::cout << ", " << p.pos[d];
}
std::cout << ")" << std::endl;
}
}
#endif | [
"[email protected]"
] | |
a127e240eda57a5820ca142fa64e3fbfa2bfe9ec | 32cbb0a1fc652005198d6ed5ed52e25572612057 | /core/src/eti/Cuda/Kokkos_Cuda_ViewCopyETIInst_int64_t_int_LayoutRight_Rank8.cpp | f024fe4aab213f0d6c1066f8b8645f96d89df598 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | ORNL-CEES/kokkos | 3874d42a685084f0eb7999939cd9f1da9d42a2a6 | 70d113838b7dade09218a46c1e8aae44b6dbd321 | refs/heads/hip | 2020-05-04T03:32:58.012717 | 2020-01-24T20:43:25 | 2020-01-24T20:43:25 | 178,948,568 | 1 | 1 | NOASSERTION | 2020-03-01T19:21:45 | 2019-04-01T21:19:04 | C++ | UTF-8 | C++ | false | false | 2,581 | cpp | //@HEADER
// ************************************************************************
//
// Kokkos v. 2.0
// Copyright (2014) Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Kokkos is licensed under 3-clause BSD terms of use:
//
// 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 Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "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 SANDIA CORPORATION OR THE
// 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.
//
// Questions? Contact Christian R. Trott ([email protected])
//
// ************************************************************************
//@HEADER
#define KOKKOS_IMPL_COMPILING_LIBRARY true
#include <Kokkos_Core.hpp>
namespace Kokkos {
namespace Impl {
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int********, LayoutRight, LayoutRight, Cuda,
int64_t)
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int********, LayoutRight, LayoutLeft, Cuda,
int64_t)
KOKKOS_IMPL_VIEWCOPY_ETI_INST(int********, LayoutRight, LayoutStride, Cuda,
int64_t)
KOKKOS_IMPL_VIEWFILL_ETI_INST(int********, LayoutRight, Cuda, int64_t)
} // namespace Impl
} // namespace Kokkos
| [
"[email protected]"
] | |
29a4c24b63e93ff761aaa085a5c387f48a06f9aa | 8584afff21c31c843f520bd28587a741e6ffd402 | /AtCoder/ABC/186/a.cpp | 2dcf10a67f74c932b094ae7975a5d89182cc57d6 | [] | no_license | YuanzhongLi/CompetitiveProgramming | 237e900f1c906c16cbbe3dd09104a1b7ad53862b | f9a72d507d4dda082a344eb19de22f1011dcee5a | refs/heads/master | 2021-11-20T18:35:35.412146 | 2021-08-25T11:39:32 | 2021-08-25T11:39:32 | 249,442,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,367 | cpp | #define LOCAL
#ifdef LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
using namespace std;
#define rep(i,s,n) for (int i = (ll)s; i < (ll)n; i++)
#define rrep(i,n,e) for (int i = (ll)n; i > (ll)e; i--)
#define ll long long
#define ld long double
#define pb push_back
#define eb emplace_back
#define All(x) x.begin(), x.end()
#define Range(x, i, j) x.begin() + i, x.begin() + j
// #define M_PI 3.14159265358979323846 // CF
#define deg2rad(deg) ((((double)deg)/((double)360)*2*M_PI))
#define rad2deg(rad) ((((double)rad)/(double)2/M_PI)*(double)360)
#define Find(set, element) set.find(element) != set.end()
#define Decimal(x) cout << fixed << setprecision(10) << x << endl; // print Decimal number 10 Rank
#define endl "\n"
#define Case(x) printf("Case #%d: ", x); // gcj
typedef pair<int, int> PI;
typedef pair<ll, ll> PLL;
typedef vector<int> vi;
typedef vector<vector<int>> vvi;
typedef vector<vector<vector<int>>> vvvi;
typedef vector<ll> vl;
typedef vector<vector<ll>> vvl;
typedef vector<vector<vector<ll>>> vvvl;
typedef vector<PI> vpi;
typedef vector<vector<PI>> vvpi;
typedef vector<PLL> vpl;
typedef vector<vector<PLL>> vvpl;
typedef vector<char> vch;
typedef vector<vector<char>> vvch;
constexpr ll LINF = 1001002003004005006ll;
constexpr int INF = 1002003004;
constexpr int n_max = 2e5+10;
template<class T>
inline bool chmax(T &a, T b) { if(a<b) { a=b; return true; } return false; };
template<class T>
inline bool chmin(T &a, T b) { if(a>b) { a=b; return true; } return false; };
template<class T, class U>
T POW(T x, U n) {T ret=1; while (n>0) {if (n&1) {ret*=x;} x*=x; n>>=1;} return ret;};
// debug
template <typename A, typename B>
string to_string(pair<A, B> p);
string to_string(const string &s) {return '"' + s + '"';};
string to_string(const char c) {return to_string((string) &c);};
string to_string(bool b) {return (b ? "true" : "false");};
template <size_t N>
string to_string(bitset<N> v){
string res = "";
for(size_t i = 0; i < N; i++) res += static_cast<char>('0' + v[i]);
return res;
};
template <typename A>
string to_string(A v) {
bool first = true;
string res = "{";
for(const auto &x : v) {
if(!first) res += ", ";
first = false; res += to_string(x);
}
res += "}";
return res;
};
template <typename A, typename B>
string to_string(pair<A, B> p){return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";}
void debug_out() {cerr << endl;};
template<typename Head, typename... Tail>
void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); };
void LINE_OUT() {
cout << "--------------" << endl;
};
#ifdef LOCAL
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#define LINE LINE_OUT();
#else
#define debug(...) 71
#define LINE 71;
#endif
void print() { cout << endl; }
template <class Head, class... Tail>
void print(Head&& head, Tail&&... tail) {
cout << head;
if (sizeof...(tail) != 0) cout << " ";
print(forward<Tail>(tail)...);
};
template <class T>
void print(vector<T> &vec) {
for (auto& a : vec) {
cout << a;
if (&a != &vec.back()) cout << " ";
}
cout << endl;
};
template <class T>
void print(vector<vector<T>> &df) {
for (auto& vec : df) {
print(vec);
}
};
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int N, W; cin >> N >> W;
cout << N / W << endl;
return 0;
};
| [
"[email protected]"
] | |
b1625ebe9cf3a410b23978d689a61e07350c76c3 | b7d3be4b909100b193153d6de98ef5ca784ab37d | /code/GlobalIncs/AlphaColors.cpp | 890fbf5d9017907091bbdc69cfe6fa145792f60c | [] | no_license | RandomTiger/fs2_Unity | a4e5c4ddbb38a875ce58020da5f268573365a0c2 | 570ea0945ee21a0f498d528e0d71e3757a910a25 | refs/heads/master | 2020-12-25T07:22:14.528983 | 2016-06-05T11:16:09 | 2016-06-05T11:16:09 | 60,455,973 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,370 | cpp | /*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#include "2d.h"
#include "AlphaColors.h"
// -----------------------------------------------------------------------------------
// ALPHA DEFINES/VARS
//
color Color_black, Color_grey, Color_blue, Color_bright_blue, Color_violet_gray;
color Color_green, Color_bright_green, Color_bright_white, Color_white;
color Color_red, Color_bright_red, Color_yellow, Color_bright_yellow, Color_dim_red;
color Color_ui_light_green, Color_ui_green;
color Color_ui_light_pink, Color_ui_pink;
// netplayer colors
color *Color_netplayer[12] = {
&Color_white,
&Color_bright_white,
&Color_bright_blue,
&Color_red,
&Color_bright_red,
&Color_blue,
&Color_bright_green,
&Color_bright_blue,
&Color_yellow,
&Color_bright_yellow,
&Color_ui_green,
&Color_ui_pink
};
// -----------------------------------------------------------------------------------
// ALPHA FUNCTIONS
//
// initialize all alpha colors (call at startup)
void alpha_colors_init()
{
// See the variable declarations above for color usage
gr_init_alphacolor( &Color_blue, 93, 93, 128, 255 );
gr_init_alphacolor( &Color_bright_blue, 185, 185, 255, 255 );
gr_init_alphacolor( &Color_green, 0, 120, 0, 255 );
gr_init_alphacolor( &Color_bright_green, 50, 190, 50, 255 );
gr_init_alphacolor( &Color_black, 0, 0, 0, 255 );
gr_init_alphacolor( &Color_grey, 50, 50, 50, 255 );
//gr_init_alphacolor( &Color_white, 185, 185, 185, 255 );
gr_init_alphacolor( &Color_white, 105, 105, 105, 255 );
gr_init_alphacolor( &Color_bright_white, 255, 255, 255, 255 );
gr_init_alphacolor( &Color_violet_gray, 160, 144, 160, 255 );
gr_init_alphacolor( &Color_dim_red, 80, 6, 6, 255 );
gr_init_alphacolor( &Color_red, 126, 6, 6, 255 );
gr_init_alphacolor( &Color_bright_red, 200, 0, 0, 255 );
gr_init_alphacolor( &Color_yellow, 113, 184, 124, 255 );
gr_init_alphacolor( &Color_bright_yellow, 162, 210, 162, 255 );
gr_init_alphacolor( &Color_ui_light_green, 161, 184, 161, 255 );
gr_init_alphacolor( &Color_ui_green, 190, 228, 190, 255 );
gr_init_alphacolor( &Color_ui_light_pink, 184, 161, 161, 255 );
gr_init_alphacolor( &Color_ui_pink, 228, 190, 190, 255 );
}
| [
"[email protected]"
] | |
ddad71429420f33ffdc9653c8b1632876fd3ef19 | 6236a210b8f2aa4ef1d611ee76fd0135d82ddb10 | /Myparser/mainwindow.h | 84aa8bf03eaf26fa2869176f19ff966667d73a1c | [] | no_license | linln1/MyParser | a2dc43b755a7582580c36357c4610c93bc6ed3c3 | 2e6a7036b4267b4ee27d8f1566697451e50ea122 | refs/heads/master | 2023-01-14T13:45:37.276636 | 2020-11-20T11:24:23 | 2020-11-20T11:24:23 | 311,681,953 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 416 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QJsonObject>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonValue>
#include <QJsonParseError>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H
| [
"[email protected]"
] | |
6f7652bcbd2eb118eeed18eb1f5575343580c31d | 52076d51dfa8f41e0f318caf21221f73ed737b5a | /5.Longest-Palindromic-Substring/manacher.cpp | 40902c682300a6fe409a876528a26c1991f7e4d0 | [] | no_license | kevinkwl/mLeetcode | 2371cbbced3bf29ef0948c3e6eb1f331aa663d10 | a0aa7c87aa1e95bac21467036b92c6adb5977a36 | refs/heads/master | 2020-04-07T10:03:50.381212 | 2018-10-11T11:41:23 | 2018-10-11T11:41:23 | 124,202,629 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,514 | cpp | class Solution {
public:
string longestPalindrome(string s) {
if (s.size() == 0)
return "";
string t = "^#";
for (char c: s) {
t += c;
t += '#';
}
t += "$";
vector<int> p(t.size(), 0);
int center = 1, right_bound = 1;
int best_start = 0, best_len = 1;
for (int i = 1; i < t.size(); i++) {
p[i] = i < right_bound ? min(p[2*center-i], right_bound - i) : 0;
if (i + p[i] >= right_bound) {
while (t[i+p[i]+1] == t[i-p[i]-1])
p[i]++;
}
if (i + p[i] > right_bound) {
center = i;
right_bound = i + p[i];
}
if (p[i] > best_len) {
// here, p[i] is the radius of longest parlindrome centered at i
// ele in () is the center
// case 1: t[i] = '#', #y#x(#)x#y#, p[i] = 4
// case 2: t[i] = 'x', #y#(x)#y#, p[i] = 3
// in both cases, p[i] == len of longest parlindrome in original string
//
// for the starting index, note that 'abc' -> '^#a#b#c#$', idx(a): 0 -> 2, idx(b): 1 -> 4 ...
// (i-p[i]+1) is the start index of char in the extended string
best_len = p[i];
best_start = (i - p[i] + 1) / 2 - 1;
}
}
return s.substr(best_start, best_len);
}
};
| [
"[email protected]"
] | |
ac627258e0598776b59edcd06f385d62d028a319 | 3e8184db0022f42a75821975904f14935466e21a | /linklistv2.cpp | 806b2657343bdad647d9af3db93282a56f091932 | [] | no_license | priyanka-aggarwal/c- | 899dee237ea48735464c1a1f4f1e9d2ae8365d44 | 06c92d55bde2547b53a12f8e02441eb89cd2e284 | refs/heads/master | 2020-04-27T06:12:11.264409 | 2019-03-06T08:16:10 | 2019-03-06T08:16:10 | 174,101,294 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,546 | cpp | #include<iostream>
#include<stdlib.h>
using namespace std;
class node
{
int info;
node *next;
public:
node()
{
info=0;
next=NULL;
}
node(int x=0,node *n=NULL)
{
info=x;
next=n;
}
friend class linklist;
};
class linklist
{
node *first ,*last;
public:
linklist()
{
first=last=NULL;
}
void insert_end(int );
void insert_beg(int x);
void insert_pos(int x,int pos);
int length();
void show();
int del_beg();
int del_end();
int del_pos(int pos);
};
void linklist::insert_end(int x)
{
node *n=new node(x);
if(first==NULL)
{
first=last=n;
}
else
{
last->next=n;
last=n;
}
}
void linklist::insert_beg(int x)
{
node *n=new node(x);
if(first==NULL)
first=last=n;
else
{
n->next=first;
first=n;
}
}
int linklist::length()
{
int l;
node *temp=first;
while(temp!=NULL)
{
l=l+1;
temp=temp->next;
}
return l;
}
void linklist::insert_pos(int x,int pos)
{
node *temp=first;
int l=length();
int c=1;
if(pos==1)
{
insert_beg(x);
}
else if(pos>l)
{
insert_end(x);
}
else
{
while(c<pos-1)
{
c++;
temp=temp->next;
}
node *n=new node(x);
n->next=temp->next;
temp->next=n;
}
}
void linklist::show()
{
node *temp=first;
cout<<"\n THE LIST IS :";
while(temp!=last->next)
{
cout<<(temp->info)<<"->";
temp=temp->next;
}
cout<<"null";
}
int linklist::del_beg()
{
int x;
if(first==NULL)
{
cout<<"\nList is empty";
return -1;
}
else if(first->next==NULL)
{
x=first->info;
delete first;
delete last;
return x;
}
node *temp=first;
first=first->next;
x=temp->info;
delete temp;
return x;
}
int linklist::del_pos(int pos)
{
node *temp=first;
int x;
int len=length();
if(first==NULL)
{
cout<<"Empty";
return -1;
}
else if(first->next==NULL)
{
x=temp->info;
delete temp;
first=NULL;
last=NULL;
}
else if(pos==1)
{
x=del_beg();
}
else if(pos==len)
{
x=del_end();
}
else
{
int l=1;
node *t;
while(l<pos-1)
{
temp=temp->next;
l++;
}
t=temp->next;
temp->next=temp->next->next;
x=t->info;
delete t;
}
return x;
}
int linklist::del_end()
{
node *temp=first;
int x;
if(first==NULL)
{
cout<<"\nList is empty";
return -1;
}
else if(first->next==NULL)
{
x=first->info;
delete temp;
first=NULL;
last=NULL;
}
node *t =last;
while(temp->next->next!=NULL)
temp=temp->next;
x=last->info;
last=temp;
last->next=NULL;
delete t;
return x;
}
int main()
{
linklist a;
int ch,x;
char y;
int pos;
do
{
cout<<"\n\nMAIN MENU \n1.Insert the elment in the beginning \n2.Insert the element in end";
cout<<"\n3.Insert the element in given position \n4.Delete from begining \n";
cout<<"5.Delete from end \n6.Delete from given position \n7.Show";
cout<<"\n \nEnter your choice ";
cin>>ch;
switch(ch)
{
case 1:
cout<<"\n \nEnter the element to be inserted\t";
cin>>x;
a.insert_beg(x);
break;
case 2:
cout<<"\n \nEnter the element to be inserted\t";
cin>>x;
a.insert_end(x);
break;
case 3:
cout<<"\n \nEnter the element to be inserted\t";
cin>>x;
cout<<"\nEnter the position at which element to be inserted\t";
cin>>pos;
a.insert_pos(x,pos);
break;
case 7:
cout<<"\n \nLinked list is\n";
a.show();
break;
case 4:
x=a.del_beg();
if(x==-1);
else
cout<<"\nDeleted element is"<<x;
break;
case 5:
x=a.del_end();
if(x==-1);
else
cout<<"\nDeleted element is"<<x;
break;
case 6:
cout<<"\nEnter the position";
cin>>pos;
x=a.del_pos(pos);
if(x==-1);
else
cout<<"\nDeleted element is"<<x;
break;
}
cout<<"\n \nDo you wish to continue? (Yes-Y ,No-N) ";
cin>>y;
}while(y=='Y' || y=='y');
return 0;
}
| [
"[email protected]"
] | |
862d6ee20d9f34b29aee5758ea7f91d8e61c89b2 | da1500e0d3040497614d5327d2461a22e934b4d8 | /third_party/woff2/src/woff2_dec.cc | 9d2799e035112c3940e5d27e2e72647ac29f3ced | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"BSD-3-Clause",
"GPL-1.0-or-later",
"LGPL-2.0-or-later"
] | permissive | youtube/cobalt | 34085fc93972ebe05b988b15410e99845efd1968 | acefdaaadd3ef46f10f63d1acae2259e4024d383 | refs/heads/main | 2023-09-01T13:09:47.225174 | 2023-09-01T08:54:54 | 2023-09-01T08:54:54 | 50,049,789 | 169 | 80 | BSD-3-Clause | 2023-09-14T21:50:50 | 2016-01-20T18:11:34 | null | UTF-8 | C++ | false | false | 45,318 | cc | /* Copyright 2014 Google Inc. All Rights Reserved.
Distributed under MIT license.
See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
*/
/* Library for converting WOFF2 format font files to their TTF versions. */
#include <woff2/decode.h>
#include <algorithm>
#include <complex>
#include <cstring>
#include <limits>
#include <string>
#include <vector>
#include <map>
#include <memory>
#include <stdlib.h>
#include <utility>
#include <brotli/decode.h>
#include "./buffer.h"
#include "./port.h"
#include "./round.h"
#include "./store_bytes.h"
#include "./table_tags.h"
#include "./variable_length.h"
#include "./woff2_common.h"
namespace woff2 {
namespace {
using std::string;
using std::vector;
// simple glyph flags
const int kGlyfOnCurve = 1 << 0;
const int kGlyfXShort = 1 << 1;
const int kGlyfYShort = 1 << 2;
const int kGlyfRepeat = 1 << 3;
const int kGlyfThisXIsSame = 1 << 4;
const int kGlyfThisYIsSame = 1 << 5;
// composite glyph flags
// See CompositeGlyph.java in sfntly for full definitions
const int FLAG_ARG_1_AND_2_ARE_WORDS = 1 << 0;
const int FLAG_WE_HAVE_A_SCALE = 1 << 3;
const int FLAG_MORE_COMPONENTS = 1 << 5;
const int FLAG_WE_HAVE_AN_X_AND_Y_SCALE = 1 << 6;
const int FLAG_WE_HAVE_A_TWO_BY_TWO = 1 << 7;
const int FLAG_WE_HAVE_INSTRUCTIONS = 1 << 8;
const size_t kCheckSumAdjustmentOffset = 8;
const size_t kEndPtsOfContoursOffset = 10;
const size_t kCompositeGlyphBegin = 10;
// 98% of Google Fonts have no glyph above 5k bytes
// Largest glyph ever observed was 72k bytes
const size_t kDefaultGlyphBuf = 5120;
// Over 14k test fonts the max compression ratio seen to date was ~20.
// >100 suggests you wrote a bad uncompressed size.
const float kMaxPlausibleCompressionRatio = 100.0;
// metadata for a TTC font entry
struct TtcFont {
uint32_t flavor;
uint32_t dst_offset;
uint32_t header_checksum;
std::vector<uint16_t> table_indices;
};
struct WOFF2Header {
uint32_t flavor;
uint32_t header_version;
uint16_t num_tables;
uint64_t compressed_offset;
uint32_t compressed_length;
uint32_t uncompressed_size;
std::vector<Table> tables; // num_tables unique tables
std::vector<TtcFont> ttc_fonts; // metadata to help rebuild font
};
/**
* Accumulates data we may need to reconstruct a single font. One per font
* created for a TTC.
*/
struct WOFF2FontInfo {
uint16_t num_glyphs;
uint16_t index_format;
uint16_t num_hmetrics;
std::vector<int16_t> x_mins;
std::map<uint32_t, uint32_t> table_entry_by_tag;
};
// Accumulates metadata as we rebuild the font
struct RebuildMetadata {
uint32_t header_checksum; // set by WriteHeaders
std::vector<WOFF2FontInfo> font_infos;
// checksums for tables that have been written.
// (tag, src_offset) => checksum. Need both because 0-length loca.
std::map<std::pair<uint32_t, uint32_t>, uint32_t> checksums;
};
int WithSign(int flag, int baseval) {
// Precondition: 0 <= baseval < 65536 (to avoid integer overflow)
return (flag & 1) ? baseval : -baseval;
}
bool TripletDecode(const uint8_t* flags_in, const uint8_t* in, size_t in_size,
unsigned int n_points, Point* result, size_t* in_bytes_consumed) {
int x = 0;
int y = 0;
if (PREDICT_FALSE(n_points > in_size)) {
return FONT_COMPRESSION_FAILURE();
}
unsigned int triplet_index = 0;
for (unsigned int i = 0; i < n_points; ++i) {
uint8_t flag = flags_in[i];
bool on_curve = !(flag >> 7);
flag &= 0x7f;
unsigned int n_data_bytes;
if (flag < 84) {
n_data_bytes = 1;
} else if (flag < 120) {
n_data_bytes = 2;
} else if (flag < 124) {
n_data_bytes = 3;
} else {
n_data_bytes = 4;
}
if (PREDICT_FALSE(triplet_index + n_data_bytes > in_size ||
triplet_index + n_data_bytes < triplet_index)) {
return FONT_COMPRESSION_FAILURE();
}
int dx, dy;
if (flag < 10) {
dx = 0;
dy = WithSign(flag, ((flag & 14) << 7) + in[triplet_index]);
} else if (flag < 20) {
dx = WithSign(flag, (((flag - 10) & 14) << 7) + in[triplet_index]);
dy = 0;
} else if (flag < 84) {
int b0 = flag - 20;
int b1 = in[triplet_index];
dx = WithSign(flag, 1 + (b0 & 0x30) + (b1 >> 4));
dy = WithSign(flag >> 1, 1 + ((b0 & 0x0c) << 2) + (b1 & 0x0f));
} else if (flag < 120) {
int b0 = flag - 84;
dx = WithSign(flag, 1 + ((b0 / 12) << 8) + in[triplet_index]);
dy = WithSign(flag >> 1,
1 + (((b0 % 12) >> 2) << 8) + in[triplet_index + 1]);
} else if (flag < 124) {
int b2 = in[triplet_index + 1];
dx = WithSign(flag, (in[triplet_index] << 4) + (b2 >> 4));
dy = WithSign(flag >> 1, ((b2 & 0x0f) << 8) + in[triplet_index + 2]);
} else {
dx = WithSign(flag, (in[triplet_index] << 8) + in[triplet_index + 1]);
dy = WithSign(flag >> 1,
(in[triplet_index + 2] << 8) + in[triplet_index + 3]);
}
triplet_index += n_data_bytes;
// Possible overflow but coordinate values are not security sensitive
x += dx;
y += dy;
*result++ = {x, y, on_curve};
}
*in_bytes_consumed = triplet_index;
return true;
}
// This function stores just the point data. On entry, dst points to the
// beginning of a simple glyph. Returns true on success.
bool StorePoints(unsigned int n_points, const Point* points,
unsigned int n_contours, unsigned int instruction_length,
uint8_t* dst, size_t dst_size, size_t* glyph_size) {
// I believe that n_contours < 65536, in which case this is safe. However, a
// comment and/or an assert would be good.
unsigned int flag_offset = kEndPtsOfContoursOffset + 2 * n_contours + 2 +
instruction_length;
int last_flag = -1;
int repeat_count = 0;
int last_x = 0;
int last_y = 0;
unsigned int x_bytes = 0;
unsigned int y_bytes = 0;
for (unsigned int i = 0; i < n_points; ++i) {
const Point& point = points[i];
int flag = point.on_curve ? kGlyfOnCurve : 0;
int dx = point.x - last_x;
int dy = point.y - last_y;
if (dx == 0) {
flag |= kGlyfThisXIsSame;
} else if (dx > -256 && dx < 256) {
flag |= kGlyfXShort | (dx > 0 ? kGlyfThisXIsSame : 0);
x_bytes += 1;
} else {
x_bytes += 2;
}
if (dy == 0) {
flag |= kGlyfThisYIsSame;
} else if (dy > -256 && dy < 256) {
flag |= kGlyfYShort | (dy > 0 ? kGlyfThisYIsSame : 0);
y_bytes += 1;
} else {
y_bytes += 2;
}
if (flag == last_flag && repeat_count != 255) {
dst[flag_offset - 1] |= kGlyfRepeat;
repeat_count++;
} else {
if (repeat_count != 0) {
if (PREDICT_FALSE(flag_offset >= dst_size)) {
return FONT_COMPRESSION_FAILURE();
}
dst[flag_offset++] = repeat_count;
}
if (PREDICT_FALSE(flag_offset >= dst_size)) {
return FONT_COMPRESSION_FAILURE();
}
dst[flag_offset++] = flag;
repeat_count = 0;
}
last_x = point.x;
last_y = point.y;
last_flag = flag;
}
if (repeat_count != 0) {
if (PREDICT_FALSE(flag_offset >= dst_size)) {
return FONT_COMPRESSION_FAILURE();
}
dst[flag_offset++] = repeat_count;
}
unsigned int xy_bytes = x_bytes + y_bytes;
if (PREDICT_FALSE(xy_bytes < x_bytes ||
flag_offset + xy_bytes < flag_offset ||
flag_offset + xy_bytes > dst_size)) {
return FONT_COMPRESSION_FAILURE();
}
int x_offset = flag_offset;
int y_offset = flag_offset + x_bytes;
last_x = 0;
last_y = 0;
for (unsigned int i = 0; i < n_points; ++i) {
int dx = points[i].x - last_x;
if (dx == 0) {
// pass
} else if (dx > -256 && dx < 256) {
dst[x_offset++] = abs(dx);
} else {
// will always fit for valid input, but overflow is harmless
x_offset = Store16(dst, x_offset, dx);
}
last_x += dx;
int dy = points[i].y - last_y;
if (dy == 0) {
// pass
} else if (dy > -256 && dy < 256) {
dst[y_offset++] = abs(dy);
} else {
y_offset = Store16(dst, y_offset, dy);
}
last_y += dy;
}
*glyph_size = y_offset;
return true;
}
// Compute the bounding box of the coordinates, and store into a glyf buffer.
// A precondition is that there are at least 10 bytes available.
// dst should point to the beginning of a 'glyf' record.
void ComputeBbox(unsigned int n_points, const Point* points, uint8_t* dst) {
int x_min = 0;
int y_min = 0;
int x_max = 0;
int y_max = 0;
if (n_points > 0) {
x_min = points[0].x;
x_max = points[0].x;
y_min = points[0].y;
y_max = points[0].y;
}
for (unsigned int i = 1; i < n_points; ++i) {
int x = points[i].x;
int y = points[i].y;
x_min = std::min(x, x_min);
x_max = std::max(x, x_max);
y_min = std::min(y, y_min);
y_max = std::max(y, y_max);
}
size_t offset = 2;
offset = Store16(dst, offset, x_min);
offset = Store16(dst, offset, y_min);
offset = Store16(dst, offset, x_max);
offset = Store16(dst, offset, y_max);
}
bool SizeOfComposite(Buffer composite_stream, size_t* size,
bool* have_instructions) {
size_t start_offset = composite_stream.offset();
bool we_have_instructions = false;
uint16_t flags = FLAG_MORE_COMPONENTS;
while (flags & FLAG_MORE_COMPONENTS) {
if (PREDICT_FALSE(!composite_stream.ReadU16(&flags))) {
return FONT_COMPRESSION_FAILURE();
}
we_have_instructions |= (flags & FLAG_WE_HAVE_INSTRUCTIONS) != 0;
size_t arg_size = 2; // glyph index
if (flags & FLAG_ARG_1_AND_2_ARE_WORDS) {
arg_size += 4;
} else {
arg_size += 2;
}
if (flags & FLAG_WE_HAVE_A_SCALE) {
arg_size += 2;
} else if (flags & FLAG_WE_HAVE_AN_X_AND_Y_SCALE) {
arg_size += 4;
} else if (flags & FLAG_WE_HAVE_A_TWO_BY_TWO) {
arg_size += 8;
}
if (PREDICT_FALSE(!composite_stream.Skip(arg_size))) {
return FONT_COMPRESSION_FAILURE();
}
}
*size = composite_stream.offset() - start_offset;
*have_instructions = we_have_instructions;
return true;
}
bool Pad4(WOFF2Out* out) {
uint8_t zeroes[] = {0, 0, 0};
if (PREDICT_FALSE(out->Size() + 3 < out->Size())) {
return FONT_COMPRESSION_FAILURE();
}
uint32_t pad_bytes = Round4(out->Size()) - out->Size();
if (pad_bytes > 0) {
if (PREDICT_FALSE(!out->Write(&zeroes, pad_bytes))) {
return FONT_COMPRESSION_FAILURE();
}
}
return true;
}
// Build TrueType loca table
bool StoreLoca(const std::vector<uint32_t>& loca_values, int index_format,
uint32_t* checksum, WOFF2Out* out) {
// TODO(user) figure out what index format to use based on whether max
// offset fits into uint16_t or not
const uint64_t loca_size = loca_values.size();
const uint64_t offset_size = index_format ? 4 : 2;
if (PREDICT_FALSE((loca_size << 2) >> 2 != loca_size)) {
return FONT_COMPRESSION_FAILURE();
}
std::vector<uint8_t> loca_content(loca_size * offset_size);
uint8_t* dst = &loca_content[0];
size_t offset = 0;
for (size_t i = 0; i < loca_values.size(); ++i) {
uint32_t value = loca_values[i];
if (index_format) {
offset = StoreU32(dst, offset, value);
} else {
offset = Store16(dst, offset, value >> 1);
}
}
*checksum = ComputeULongSum(&loca_content[0], loca_content.size());
if (PREDICT_FALSE(!out->Write(&loca_content[0], loca_content.size()))) {
return FONT_COMPRESSION_FAILURE();
}
return true;
}
// Reconstruct entire glyf table based on transformed original
bool ReconstructGlyf(const uint8_t* data, Table* glyf_table,
uint32_t* glyf_checksum, Table * loca_table,
uint32_t* loca_checksum, WOFF2FontInfo* info,
WOFF2Out* out) {
static const int kNumSubStreams = 7;
Buffer file(data, glyf_table->transform_length);
uint32_t version;
std::vector<std::pair<const uint8_t*, size_t> > substreams(kNumSubStreams);
const size_t glyf_start = out->Size();
if (PREDICT_FALSE(!file.ReadU32(&version))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!file.ReadU16(&info->num_glyphs) ||
!file.ReadU16(&info->index_format))) {
return FONT_COMPRESSION_FAILURE();
}
// https://dev.w3.org/webfonts/WOFF2/spec/#conform-mustRejectLoca
// dst_length here is origLength in the spec
uint32_t expected_loca_dst_length = (info->index_format ? 4 : 2)
* (static_cast<uint32_t>(info->num_glyphs) + 1);
if (PREDICT_FALSE(loca_table->dst_length != expected_loca_dst_length)) {
return FONT_COMPRESSION_FAILURE();
}
unsigned int offset = (2 + kNumSubStreams) * 4;
if (PREDICT_FALSE(offset > glyf_table->transform_length)) {
return FONT_COMPRESSION_FAILURE();
}
// Invariant from here on: data_size >= offset
for (int i = 0; i < kNumSubStreams; ++i) {
uint32_t substream_size;
if (PREDICT_FALSE(!file.ReadU32(&substream_size))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(substream_size > glyf_table->transform_length - offset)) {
return FONT_COMPRESSION_FAILURE();
}
substreams[i] = std::make_pair(data + offset, substream_size);
offset += substream_size;
}
Buffer n_contour_stream(substreams[0].first, substreams[0].second);
Buffer n_points_stream(substreams[1].first, substreams[1].second);
Buffer flag_stream(substreams[2].first, substreams[2].second);
Buffer glyph_stream(substreams[3].first, substreams[3].second);
Buffer composite_stream(substreams[4].first, substreams[4].second);
Buffer bbox_stream(substreams[5].first, substreams[5].second);
Buffer instruction_stream(substreams[6].first, substreams[6].second);
std::vector<uint32_t> loca_values(info->num_glyphs + 1);
std::vector<unsigned int> n_points_vec;
std::unique_ptr<Point[]> points;
size_t points_size = 0;
const uint8_t* bbox_bitmap = bbox_stream.buffer();
// Safe because num_glyphs is bounded
unsigned int bitmap_length = ((info->num_glyphs + 31) >> 5) << 2;
if (!bbox_stream.Skip(bitmap_length)) {
return FONT_COMPRESSION_FAILURE();
}
// Temp buffer for glyph's.
size_t glyph_buf_size = kDefaultGlyphBuf;
std::unique_ptr<uint8_t[]> glyph_buf(new uint8_t[glyph_buf_size]);
info->x_mins.resize(info->num_glyphs);
for (unsigned int i = 0; i < info->num_glyphs; ++i) {
size_t glyph_size = 0;
uint16_t n_contours = 0;
bool have_bbox = false;
if (bbox_bitmap[i >> 3] & (0x80 >> (i & 7))) {
have_bbox = true;
}
if (PREDICT_FALSE(!n_contour_stream.ReadU16(&n_contours))) {
return FONT_COMPRESSION_FAILURE();
}
if (n_contours == 0xffff) {
// composite glyph
bool have_instructions = false;
unsigned int instruction_size = 0;
if (PREDICT_FALSE(!have_bbox)) {
// composite glyphs must have an explicit bbox
return FONT_COMPRESSION_FAILURE();
}
size_t composite_size;
if (PREDICT_FALSE(!SizeOfComposite(composite_stream, &composite_size,
&have_instructions))) {
return FONT_COMPRESSION_FAILURE();
}
if (have_instructions) {
if (PREDICT_FALSE(!Read255UShort(&glyph_stream, &instruction_size))) {
return FONT_COMPRESSION_FAILURE();
}
}
size_t size_needed = 12 + composite_size + instruction_size;
if (PREDICT_FALSE(glyph_buf_size < size_needed)) {
glyph_buf.reset(new uint8_t[size_needed]);
glyph_buf_size = size_needed;
}
glyph_size = Store16(glyph_buf.get(), glyph_size, n_contours);
if (PREDICT_FALSE(!bbox_stream.Read(glyph_buf.get() + glyph_size, 8))) {
return FONT_COMPRESSION_FAILURE();
}
glyph_size += 8;
if (PREDICT_FALSE(!composite_stream.Read(glyph_buf.get() + glyph_size,
composite_size))) {
return FONT_COMPRESSION_FAILURE();
}
glyph_size += composite_size;
if (have_instructions) {
glyph_size = Store16(glyph_buf.get(), glyph_size, instruction_size);
if (PREDICT_FALSE(!instruction_stream.Read(glyph_buf.get() + glyph_size,
instruction_size))) {
return FONT_COMPRESSION_FAILURE();
}
glyph_size += instruction_size;
}
} else if (n_contours > 0) {
// simple glyph
n_points_vec.clear();
unsigned int total_n_points = 0;
unsigned int n_points_contour;
for (unsigned int j = 0; j < n_contours; ++j) {
if (PREDICT_FALSE(
!Read255UShort(&n_points_stream, &n_points_contour))) {
return FONT_COMPRESSION_FAILURE();
}
n_points_vec.push_back(n_points_contour);
if (PREDICT_FALSE(total_n_points + n_points_contour < total_n_points)) {
return FONT_COMPRESSION_FAILURE();
}
total_n_points += n_points_contour;
}
unsigned int flag_size = total_n_points;
if (PREDICT_FALSE(
flag_size > flag_stream.length() - flag_stream.offset())) {
return FONT_COMPRESSION_FAILURE();
}
const uint8_t* flags_buf = flag_stream.buffer() + flag_stream.offset();
const uint8_t* triplet_buf = glyph_stream.buffer() +
glyph_stream.offset();
size_t triplet_size = glyph_stream.length() - glyph_stream.offset();
size_t triplet_bytes_consumed = 0;
if (points_size < total_n_points) {
points_size = total_n_points;
points.reset(new Point[points_size]);
}
if (PREDICT_FALSE(!TripletDecode(flags_buf, triplet_buf, triplet_size,
total_n_points, points.get(), &triplet_bytes_consumed))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!flag_stream.Skip(flag_size))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!glyph_stream.Skip(triplet_bytes_consumed))) {
return FONT_COMPRESSION_FAILURE();
}
unsigned int instruction_size;
if (PREDICT_FALSE(!Read255UShort(&glyph_stream, &instruction_size))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(total_n_points >= (1 << 27)
|| instruction_size >= (1 << 30))) {
return FONT_COMPRESSION_FAILURE();
}
size_t size_needed = 12 + 2 * n_contours + 5 * total_n_points
+ instruction_size;
if (PREDICT_FALSE(glyph_buf_size < size_needed)) {
glyph_buf.reset(new uint8_t[size_needed]);
glyph_buf_size = size_needed;
}
glyph_size = Store16(glyph_buf.get(), glyph_size, n_contours);
if (have_bbox) {
if (PREDICT_FALSE(!bbox_stream.Read(glyph_buf.get() + glyph_size, 8))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
ComputeBbox(total_n_points, points.get(), glyph_buf.get());
}
glyph_size = kEndPtsOfContoursOffset;
int end_point = -1;
for (unsigned int contour_ix = 0; contour_ix < n_contours; ++contour_ix) {
end_point += n_points_vec[contour_ix];
if (PREDICT_FALSE(end_point >= 65536)) {
return FONT_COMPRESSION_FAILURE();
}
glyph_size = Store16(glyph_buf.get(), glyph_size, end_point);
}
glyph_size = Store16(glyph_buf.get(), glyph_size, instruction_size);
if (PREDICT_FALSE(!instruction_stream.Read(glyph_buf.get() + glyph_size,
instruction_size))) {
return FONT_COMPRESSION_FAILURE();
}
glyph_size += instruction_size;
if (PREDICT_FALSE(!StorePoints(total_n_points, points.get(), n_contours,
instruction_size, glyph_buf.get(), glyph_buf_size, &glyph_size))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
// n_contours == 0; empty glyph. Must NOT have a bbox.
if (PREDICT_FALSE(have_bbox)) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "Empty glyph has a bbox\n");
#endif
return FONT_COMPRESSION_FAILURE();
}
}
loca_values[i] = out->Size() - glyf_start;
if (PREDICT_FALSE(!out->Write(glyph_buf.get(), glyph_size))) {
return FONT_COMPRESSION_FAILURE();
}
// TODO(user) Old code aligned glyphs ... but do we actually need to?
if (PREDICT_FALSE(!Pad4(out))) {
return FONT_COMPRESSION_FAILURE();
}
*glyf_checksum += ComputeULongSum(glyph_buf.get(), glyph_size);
// We may need x_min to reconstruct 'hmtx'
if (n_contours > 0) {
Buffer x_min_buf(glyph_buf.get() + 2, 2);
if (PREDICT_FALSE(!x_min_buf.ReadS16(&info->x_mins[i]))) {
return FONT_COMPRESSION_FAILURE();
}
}
}
// glyf_table dst_offset was set by ReconstructFont
glyf_table->dst_length = out->Size() - glyf_table->dst_offset;
loca_table->dst_offset = out->Size();
// loca[n] will be equal the length of the glyph data ('glyf') table
loca_values[info->num_glyphs] = glyf_table->dst_length;
if (PREDICT_FALSE(!StoreLoca(loca_values, info->index_format, loca_checksum,
out))) {
return FONT_COMPRESSION_FAILURE();
}
loca_table->dst_length = out->Size() - loca_table->dst_offset;
return true;
}
Table* FindTable(std::vector<Table*>* tables, uint32_t tag) {
for (Table* table : *tables) {
if (table->tag == tag) {
return table;
}
}
return NULL;
}
// Get numberOfHMetrics, https://www.microsoft.com/typography/otspec/hhea.htm
bool ReadNumHMetrics(const uint8_t* data, size_t data_size,
uint16_t* num_hmetrics) {
// Skip 34 to reach 'hhea' numberOfHMetrics
Buffer buffer(data, data_size);
if (PREDICT_FALSE(!buffer.Skip(34) || !buffer.ReadU16(num_hmetrics))) {
return FONT_COMPRESSION_FAILURE();
}
return true;
}
// http://dev.w3.org/webfonts/WOFF2/spec/Overview.html#hmtx_table_format
bool ReconstructTransformedHmtx(const uint8_t* transformed_buf,
size_t transformed_size,
uint16_t num_glyphs,
uint16_t num_hmetrics,
const std::vector<int16_t>& x_mins,
uint32_t* checksum,
WOFF2Out* out) {
Buffer hmtx_buff_in(transformed_buf, transformed_size);
uint8_t hmtx_flags;
if (PREDICT_FALSE(!hmtx_buff_in.ReadU8(&hmtx_flags))) {
return FONT_COMPRESSION_FAILURE();
}
std::vector<uint16_t> advance_widths;
std::vector<int16_t> lsbs;
bool has_proportional_lsbs = (hmtx_flags & 1) == 0;
bool has_monospace_lsbs = (hmtx_flags & 2) == 0;
// Bits 2-7 are reserved and MUST be zero.
if ((hmtx_flags & 0xFC) != 0) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "Illegal hmtx flags; bits 2-7 must be 0\n");
#endif
return FONT_COMPRESSION_FAILURE();
}
// you say you transformed but there is little evidence of it
if (has_proportional_lsbs && has_monospace_lsbs) {
return FONT_COMPRESSION_FAILURE();
}
assert(x_mins.size() == num_glyphs);
// num_glyphs 0 is OK if there is no 'glyf' but cannot then xform 'hmtx'.
if (PREDICT_FALSE(num_hmetrics > num_glyphs)) {
return FONT_COMPRESSION_FAILURE();
}
// https://www.microsoft.com/typography/otspec/hmtx.htm
// "...only one entry need be in the array, but that entry is required."
if (PREDICT_FALSE(num_hmetrics < 1)) {
return FONT_COMPRESSION_FAILURE();
}
for (uint16_t i = 0; i < num_hmetrics; i++) {
uint16_t advance_width;
if (PREDICT_FALSE(!hmtx_buff_in.ReadU16(&advance_width))) {
return FONT_COMPRESSION_FAILURE();
}
advance_widths.push_back(advance_width);
}
for (uint16_t i = 0; i < num_hmetrics; i++) {
int16_t lsb;
if (has_proportional_lsbs) {
if (PREDICT_FALSE(!hmtx_buff_in.ReadS16(&lsb))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
lsb = x_mins[i];
}
lsbs.push_back(lsb);
}
for (uint16_t i = num_hmetrics; i < num_glyphs; i++) {
int16_t lsb;
if (has_monospace_lsbs) {
if (PREDICT_FALSE(!hmtx_buff_in.ReadS16(&lsb))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
lsb = x_mins[i];
}
lsbs.push_back(lsb);
}
// bake me a shiny new hmtx table
uint32_t hmtx_output_size = 2 * num_glyphs + 2 * num_hmetrics;
std::vector<uint8_t> hmtx_table(hmtx_output_size);
uint8_t* dst = &hmtx_table[0];
size_t dst_offset = 0;
for (uint32_t i = 0; i < num_glyphs; i++) {
if (i < num_hmetrics) {
Store16(advance_widths[i], &dst_offset, dst);
}
Store16(lsbs[i], &dst_offset, dst);
}
*checksum = ComputeULongSum(&hmtx_table[0], hmtx_output_size);
if (PREDICT_FALSE(!out->Write(&hmtx_table[0], hmtx_output_size))) {
return FONT_COMPRESSION_FAILURE();
}
return true;
}
bool Woff2Uncompress(uint8_t* dst_buf, size_t dst_size,
const uint8_t* src_buf, size_t src_size) {
size_t uncompressed_size = dst_size;
BrotliDecoderResult result = BrotliDecoderDecompress(
src_size, src_buf, &uncompressed_size, dst_buf);
if (PREDICT_FALSE(result != BROTLI_DECODER_RESULT_SUCCESS ||
uncompressed_size != dst_size)) {
return FONT_COMPRESSION_FAILURE();
}
return true;
}
bool ReadTableDirectory(Buffer* file, std::vector<Table>* tables,
size_t num_tables) {
uint32_t src_offset = 0;
for (size_t i = 0; i < num_tables; ++i) {
Table* table = &(*tables)[i];
uint8_t flag_byte;
if (PREDICT_FALSE(!file->ReadU8(&flag_byte))) {
return FONT_COMPRESSION_FAILURE();
}
uint32_t tag;
if ((flag_byte & 0x3f) == 0x3f) {
if (PREDICT_FALSE(!file->ReadU32(&tag))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
tag = kKnownTags[flag_byte & 0x3f];
}
uint32_t flags = 0;
uint8_t xform_version = (flag_byte >> 6) & 0x03;
// 0 means xform for glyph/loca, non-0 for others
if (tag == kGlyfTableTag || tag == kLocaTableTag) {
if (xform_version == 0) {
flags |= kWoff2FlagsTransform;
}
} else if (xform_version != 0) {
flags |= kWoff2FlagsTransform;
}
flags |= xform_version;
uint32_t dst_length;
if (PREDICT_FALSE(!ReadBase128(file, &dst_length))) {
return FONT_COMPRESSION_FAILURE();
}
uint32_t transform_length = dst_length;
if ((flags & kWoff2FlagsTransform) != 0) {
if (PREDICT_FALSE(!ReadBase128(file, &transform_length))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(tag == kLocaTableTag && transform_length)) {
return FONT_COMPRESSION_FAILURE();
}
}
if (PREDICT_FALSE(src_offset + transform_length < src_offset)) {
return FONT_COMPRESSION_FAILURE();
}
table->src_offset = src_offset;
table->src_length = transform_length;
src_offset += transform_length;
table->tag = tag;
table->flags = flags;
table->transform_length = transform_length;
table->dst_length = dst_length;
}
return true;
}
// Writes a single Offset Table entry
size_t StoreOffsetTable(uint8_t* result, size_t offset, uint32_t flavor,
uint16_t num_tables) {
offset = StoreU32(result, offset, flavor); // sfnt version
offset = Store16(result, offset, num_tables); // num_tables
unsigned max_pow2 = 0;
while (1u << (max_pow2 + 1) <= num_tables) {
max_pow2++;
}
const uint16_t output_search_range = (1u << max_pow2) << 4;
offset = Store16(result, offset, output_search_range); // searchRange
offset = Store16(result, offset, max_pow2); // entrySelector
// rangeShift
offset = Store16(result, offset, (num_tables << 4) - output_search_range);
return offset;
}
size_t StoreTableEntry(uint8_t* result, uint32_t offset, uint32_t tag) {
offset = StoreU32(result, offset, tag);
offset = StoreU32(result, offset, 0);
offset = StoreU32(result, offset, 0);
offset = StoreU32(result, offset, 0);
return offset;
}
// First table goes after all the headers, table directory, etc
uint64_t ComputeOffsetToFirstTable(const WOFF2Header& hdr) {
uint64_t offset = kSfntHeaderSize +
kSfntEntrySize * static_cast<uint64_t>(hdr.num_tables);
if (hdr.header_version) {
offset = CollectionHeaderSize(hdr.header_version, hdr.ttc_fonts.size())
+ kSfntHeaderSize * hdr.ttc_fonts.size();
for (const auto& ttc_font : hdr.ttc_fonts) {
offset += kSfntEntrySize * ttc_font.table_indices.size();
}
}
return offset;
}
std::vector<Table*> Tables(WOFF2Header* hdr, size_t font_index) {
std::vector<Table*> tables;
if (PREDICT_FALSE(hdr->header_version)) {
for (auto index : hdr->ttc_fonts[font_index].table_indices) {
tables.push_back(&hdr->tables[index]);
}
} else {
for (auto& table : hdr->tables) {
tables.push_back(&table);
}
}
return tables;
}
// Offset tables assumed to have been written in with 0's initially.
// WOFF2Header isn't const so we can use [] instead of at() (which upsets FF)
bool ReconstructFont(uint8_t* transformed_buf,
const uint32_t transformed_buf_size,
RebuildMetadata* metadata,
WOFF2Header* hdr,
size_t font_index,
WOFF2Out* out) {
size_t dest_offset = out->Size();
uint8_t table_entry[12];
WOFF2FontInfo* info = &metadata->font_infos[font_index];
std::vector<Table*> tables = Tables(hdr, font_index);
// 'glyf' without 'loca' doesn't make sense
const Table* glyf_table = FindTable(&tables, kGlyfTableTag);
const Table* loca_table = FindTable(&tables, kLocaTableTag);
if (PREDICT_FALSE(static_cast<bool>(glyf_table) !=
static_cast<bool>(loca_table))) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "Cannot have just one of glyf/loca\n");
#endif
return FONT_COMPRESSION_FAILURE();
}
if (glyf_table != NULL) {
if (PREDICT_FALSE((glyf_table->flags & kWoff2FlagsTransform)
!= (loca_table->flags & kWoff2FlagsTransform))) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "Cannot transform just one of glyf/loca\n");
#endif
return FONT_COMPRESSION_FAILURE();
}
}
uint32_t font_checksum = metadata->header_checksum;
if (hdr->header_version) {
font_checksum = hdr->ttc_fonts[font_index].header_checksum;
}
uint32_t loca_checksum = 0;
for (size_t i = 0; i < tables.size(); i++) {
Table& table = *tables[i];
std::pair<uint32_t, uint32_t> checksum_key = {table.tag, table.src_offset};
bool reused = metadata->checksums.find(checksum_key)
!= metadata->checksums.end();
if (PREDICT_FALSE(font_index == 0 && reused)) {
return FONT_COMPRESSION_FAILURE();
}
// TODO(user) a collection with optimized hmtx that reused glyf/loca
// would fail. We don't optimize hmtx for collections yet.
if (PREDICT_FALSE(static_cast<uint64_t>(table.src_offset) + table.src_length
> transformed_buf_size)) {
return FONT_COMPRESSION_FAILURE();
}
if (table.tag == kHheaTableTag) {
if (!ReadNumHMetrics(transformed_buf + table.src_offset,
table.src_length, &info->num_hmetrics)) {
return FONT_COMPRESSION_FAILURE();
}
}
uint32_t checksum = 0;
if (!reused) {
if ((table.flags & kWoff2FlagsTransform) != kWoff2FlagsTransform) {
if (table.tag == kHeadTableTag) {
if (PREDICT_FALSE(table.src_length < 12)) {
return FONT_COMPRESSION_FAILURE();
}
// checkSumAdjustment = 0
StoreU32(transformed_buf + table.src_offset, 8, 0);
}
table.dst_offset = dest_offset;
checksum = ComputeULongSum(transformed_buf + table.src_offset,
table.src_length);
if (PREDICT_FALSE(!out->Write(transformed_buf + table.src_offset,
table.src_length))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
if (table.tag == kGlyfTableTag) {
table.dst_offset = dest_offset;
Table* loca_table = FindTable(&tables, kLocaTableTag);
if (PREDICT_FALSE(!ReconstructGlyf(transformed_buf + table.src_offset,
&table, &checksum, loca_table, &loca_checksum, info, out))) {
return FONT_COMPRESSION_FAILURE();
}
} else if (table.tag == kLocaTableTag) {
// All the work was done by ReconstructGlyf. We already know checksum.
checksum = loca_checksum;
} else if (table.tag == kHmtxTableTag) {
table.dst_offset = dest_offset;
// Tables are sorted so all the info we need has been gathered.
if (PREDICT_FALSE(!ReconstructTransformedHmtx(
transformed_buf + table.src_offset, table.src_length,
info->num_glyphs, info->num_hmetrics, info->x_mins, &checksum,
out))) {
return FONT_COMPRESSION_FAILURE();
}
} else {
return FONT_COMPRESSION_FAILURE(); // transform unknown
}
}
metadata->checksums[checksum_key] = checksum;
} else {
checksum = metadata->checksums[checksum_key];
}
font_checksum += checksum;
// update the table entry with real values.
StoreU32(table_entry, 0, checksum);
StoreU32(table_entry, 4, table.dst_offset);
StoreU32(table_entry, 8, table.dst_length);
if (PREDICT_FALSE(!out->Write(table_entry,
info->table_entry_by_tag[table.tag] + 4, 12))) {
return FONT_COMPRESSION_FAILURE();
}
// We replaced 0's. Update overall checksum.
font_checksum += ComputeULongSum(table_entry, 12);
if (PREDICT_FALSE(!Pad4(out))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(static_cast<uint64_t>(table.dst_offset + table.dst_length)
> out->Size())) {
return FONT_COMPRESSION_FAILURE();
}
dest_offset = out->Size();
}
// Update 'head' checkSumAdjustment. We already set it to 0 and summed font.
Table* head_table = FindTable(&tables, kHeadTableTag);
if (head_table) {
if (PREDICT_FALSE(head_table->dst_length < 12)) {
return FONT_COMPRESSION_FAILURE();
}
uint8_t checksum_adjustment[4];
StoreU32(checksum_adjustment, 0, 0xB1B0AFBA - font_checksum);
if (PREDICT_FALSE(!out->Write(checksum_adjustment,
head_table->dst_offset + 8, 4))) {
return FONT_COMPRESSION_FAILURE();
}
}
return true;
}
bool ReadWOFF2Header(const uint8_t* data, size_t length, WOFF2Header* hdr) {
Buffer file(data, length);
uint32_t signature;
if (PREDICT_FALSE(!file.ReadU32(&signature) || signature != kWoff2Signature ||
!file.ReadU32(&hdr->flavor))) {
return FONT_COMPRESSION_FAILURE();
}
// TODO(user): Should call IsValidVersionTag() here.
uint32_t reported_length;
if (PREDICT_FALSE(
!file.ReadU32(&reported_length) || length != reported_length)) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!file.ReadU16(&hdr->num_tables) || !hdr->num_tables)) {
return FONT_COMPRESSION_FAILURE();
}
// We don't care about these fields of the header:
// uint16_t reserved
// uint32_t total_sfnt_size, we don't believe this, will compute later
if (PREDICT_FALSE(!file.Skip(6))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!file.ReadU32(&hdr->compressed_length))) {
return FONT_COMPRESSION_FAILURE();
}
// We don't care about these fields of the header:
// uint16_t major_version, minor_version
if (PREDICT_FALSE(!file.Skip(2 * 2))) {
return FONT_COMPRESSION_FAILURE();
}
uint32_t meta_offset;
uint32_t meta_length;
uint32_t meta_length_orig;
if (PREDICT_FALSE(!file.ReadU32(&meta_offset) ||
!file.ReadU32(&meta_length) ||
!file.ReadU32(&meta_length_orig))) {
return FONT_COMPRESSION_FAILURE();
}
if (meta_offset) {
if (PREDICT_FALSE(
meta_offset >= length || length - meta_offset < meta_length)) {
return FONT_COMPRESSION_FAILURE();
}
}
uint32_t priv_offset;
uint32_t priv_length;
if (PREDICT_FALSE(!file.ReadU32(&priv_offset) ||
!file.ReadU32(&priv_length))) {
return FONT_COMPRESSION_FAILURE();
}
if (priv_offset) {
if (PREDICT_FALSE(
priv_offset >= length || length - priv_offset < priv_length)) {
return FONT_COMPRESSION_FAILURE();
}
}
hdr->tables.resize(hdr->num_tables);
if (PREDICT_FALSE(!ReadTableDirectory(
&file, &hdr->tables, hdr->num_tables))) {
return FONT_COMPRESSION_FAILURE();
}
// Before we sort for output the last table end is the uncompressed size.
Table& last_table = hdr->tables.back();
hdr->uncompressed_size = last_table.src_offset + last_table.src_length;
if (PREDICT_FALSE(hdr->uncompressed_size < last_table.src_offset)) {
return FONT_COMPRESSION_FAILURE();
}
hdr->header_version = 0;
if (hdr->flavor == kTtcFontFlavor) {
if (PREDICT_FALSE(!file.ReadU32(&hdr->header_version))) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(hdr->header_version != 0x00010000
&& hdr->header_version != 0x00020000)) {
return FONT_COMPRESSION_FAILURE();
}
uint32_t num_fonts;
if (PREDICT_FALSE(!Read255UShort(&file, &num_fonts) || !num_fonts)) {
return FONT_COMPRESSION_FAILURE();
}
hdr->ttc_fonts.resize(num_fonts);
for (uint32_t i = 0; i < num_fonts; i++) {
TtcFont& ttc_font = hdr->ttc_fonts[i];
uint32_t num_tables;
if (PREDICT_FALSE(!Read255UShort(&file, &num_tables) || !num_tables)) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!file.ReadU32(&ttc_font.flavor))) {
return FONT_COMPRESSION_FAILURE();
}
ttc_font.table_indices.resize(num_tables);
unsigned int glyf_idx = 0;
unsigned int loca_idx = 0;
for (uint32_t j = 0; j < num_tables; j++) {
unsigned int table_idx;
if (PREDICT_FALSE(!Read255UShort(&file, &table_idx)) ||
table_idx >= hdr->tables.size()) {
return FONT_COMPRESSION_FAILURE();
}
ttc_font.table_indices[j] = table_idx;
const Table& table = hdr->tables[table_idx];
if (table.tag == kLocaTableTag) {
loca_idx = table_idx;
}
if (table.tag == kGlyfTableTag) {
glyf_idx = table_idx;
}
}
// if we have both glyf and loca make sure they are consecutive
// if we have just one we'll reject the font elsewhere
if (glyf_idx > 0 || loca_idx > 0) {
if (PREDICT_FALSE(glyf_idx > loca_idx || loca_idx - glyf_idx != 1)) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "TTC font %d has non-consecutive glyf/loca\n", i);
#endif
return FONT_COMPRESSION_FAILURE();
}
}
}
}
const uint64_t first_table_offset = ComputeOffsetToFirstTable(*hdr);
hdr->compressed_offset = file.offset();
if (PREDICT_FALSE(hdr->compressed_offset >
std::numeric_limits<uint32_t>::max())) {
return FONT_COMPRESSION_FAILURE();
}
uint64_t src_offset = Round4(hdr->compressed_offset + hdr->compressed_length);
uint64_t dst_offset = first_table_offset;
if (PREDICT_FALSE(src_offset > length)) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "offset fail; src_offset %" PRIu64 " length %lu "
"dst_offset %" PRIu64 "\n",
src_offset, length, dst_offset);
#endif
return FONT_COMPRESSION_FAILURE();
}
if (meta_offset) {
if (PREDICT_FALSE(src_offset != meta_offset)) {
return FONT_COMPRESSION_FAILURE();
}
src_offset = Round4(meta_offset + meta_length);
if (PREDICT_FALSE(src_offset > std::numeric_limits<uint32_t>::max())) {
return FONT_COMPRESSION_FAILURE();
}
}
if (priv_offset) {
if (PREDICT_FALSE(src_offset != priv_offset)) {
return FONT_COMPRESSION_FAILURE();
}
src_offset = Round4(priv_offset + priv_length);
if (PREDICT_FALSE(src_offset > std::numeric_limits<uint32_t>::max())) {
return FONT_COMPRESSION_FAILURE();
}
}
if (PREDICT_FALSE(src_offset != Round4(length))) {
return FONT_COMPRESSION_FAILURE();
}
return true;
}
// Write everything before the actual table data
bool WriteHeaders(const uint8_t* data, size_t length, RebuildMetadata* metadata,
WOFF2Header* hdr, WOFF2Out* out) {
std::vector<uint8_t> output(ComputeOffsetToFirstTable(*hdr), 0);
// Re-order tables in output (OTSpec) order
std::vector<Table> sorted_tables(hdr->tables);
if (hdr->header_version) {
// collection; we have to sort the table offset vector in each font
for (auto& ttc_font : hdr->ttc_fonts) {
std::map<uint32_t, uint16_t> sorted_index_by_tag;
for (auto table_index : ttc_font.table_indices) {
sorted_index_by_tag[hdr->tables[table_index].tag] = table_index;
}
uint16_t index = 0;
for (auto& i : sorted_index_by_tag) {
ttc_font.table_indices[index++] = i.second;
}
}
} else {
// non-collection; we can just sort the tables
std::sort(sorted_tables.begin(), sorted_tables.end());
}
// Start building the font
uint8_t* result = &output[0];
size_t offset = 0;
if (hdr->header_version) {
// TTC header
offset = StoreU32(result, offset, hdr->flavor); // TAG TTCTag
offset = StoreU32(result, offset, hdr->header_version); // FIXED Version
offset = StoreU32(result, offset, hdr->ttc_fonts.size()); // ULONG numFonts
// Space for ULONG OffsetTable[numFonts] (zeroed initially)
size_t offset_table = offset; // keep start of offset table for later
for (size_t i = 0; i < hdr->ttc_fonts.size(); i++) {
offset = StoreU32(result, offset, 0); // will fill real values in later
}
// space for DSIG fields for header v2
if (hdr->header_version == 0x00020000) {
offset = StoreU32(result, offset, 0); // ULONG ulDsigTag
offset = StoreU32(result, offset, 0); // ULONG ulDsigLength
offset = StoreU32(result, offset, 0); // ULONG ulDsigOffset
}
// write Offset Tables and store the location of each in TTC Header
metadata->font_infos.resize(hdr->ttc_fonts.size());
for (size_t i = 0; i < hdr->ttc_fonts.size(); i++) {
TtcFont& ttc_font = hdr->ttc_fonts[i];
// write Offset Table location into TTC Header
offset_table = StoreU32(result, offset_table, offset);
// write the actual offset table so our header doesn't lie
ttc_font.dst_offset = offset;
offset = StoreOffsetTable(result, offset, ttc_font.flavor,
ttc_font.table_indices.size());
for (const auto table_index : ttc_font.table_indices) {
uint32_t tag = hdr->tables[table_index].tag;
metadata->font_infos[i].table_entry_by_tag[tag] = offset;
offset = StoreTableEntry(result, offset, tag);
}
ttc_font.header_checksum = ComputeULongSum(&output[ttc_font.dst_offset],
offset - ttc_font.dst_offset);
}
} else {
metadata->font_infos.resize(1);
offset = StoreOffsetTable(result, offset, hdr->flavor, hdr->num_tables);
for (uint16_t i = 0; i < hdr->num_tables; ++i) {
metadata->font_infos[0].table_entry_by_tag[sorted_tables[i].tag] = offset;
offset = StoreTableEntry(result, offset, sorted_tables[i].tag);
}
}
if (PREDICT_FALSE(!out->Write(&output[0], output.size()))) {
return FONT_COMPRESSION_FAILURE();
}
metadata->header_checksum = ComputeULongSum(&output[0], output.size());
return true;
}
} // namespace
size_t ComputeWOFF2FinalSize(const uint8_t* data, size_t length) {
Buffer file(data, length);
uint32_t total_length;
if (!file.Skip(16) ||
!file.ReadU32(&total_length)) {
return 0;
}
return total_length;
}
bool ConvertWOFF2ToTTF(uint8_t *result, size_t result_length,
const uint8_t *data, size_t length) {
WOFF2MemoryOut out(result, result_length);
return ConvertWOFF2ToTTF(data, length, &out);
}
bool ConvertWOFF2ToTTF(const uint8_t* data, size_t length,
WOFF2Out* out) {
RebuildMetadata metadata;
WOFF2Header hdr;
if (!ReadWOFF2Header(data, length, &hdr)) {
return FONT_COMPRESSION_FAILURE();
}
if (!WriteHeaders(data, length, &metadata, &hdr, out)) {
return FONT_COMPRESSION_FAILURE();
}
const float compression_ratio = (float) hdr.uncompressed_size / length;
if (compression_ratio > kMaxPlausibleCompressionRatio) {
#ifdef FONT_COMPRESSION_BIN
fprintf(stderr, "Implausible compression ratio %.01f\n", compression_ratio);
#endif
return FONT_COMPRESSION_FAILURE();
}
const uint8_t* src_buf = data + hdr.compressed_offset;
std::vector<uint8_t> uncompressed_buf(hdr.uncompressed_size);
if (PREDICT_FALSE(hdr.uncompressed_size < 1)) {
return FONT_COMPRESSION_FAILURE();
}
if (PREDICT_FALSE(!Woff2Uncompress(&uncompressed_buf[0],
hdr.uncompressed_size, src_buf,
hdr.compressed_length))) {
return FONT_COMPRESSION_FAILURE();
}
for (size_t i = 0; i < metadata.font_infos.size(); i++) {
if (PREDICT_FALSE(!ReconstructFont(&uncompressed_buf[0],
hdr.uncompressed_size,
&metadata, &hdr, i, out))) {
return FONT_COMPRESSION_FAILURE();
}
}
return true;
}
} // namespace woff2
| [
"[email protected]"
] | |
59f5a536b4ff7eb65349fcda3ea1d79871780c02 | 69b4f7c49f18fc193f49275a2d32ffbcbe70471d | /SPOJ/MESSAGE.cpp | fb2cd991a082c6504851464ca99d0f86cd8d8c3c | [] | no_license | TD2106/Competitive-Programming | 05f322a14f1e7a1d62633b713f1416ab0c547b3b | 2905c9d5f36909330fc3637f5461aaba8928a154 | refs/heads/master | 2020-04-03T12:59:49.790124 | 2019-09-21T14:51:08 | 2019-09-21T14:51:08 | 155,270,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,446 | cpp | #include <bits/stdc++.h>
#define bug(x) cout << #x << " = " << x << endl
#define fr(x) freopen(x,"r",stdin)
#define fw(x) freopen(x,"w",stdout)
#define all(x) x.begin(),x.end()
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define reset(x) memset(x,0,sizeof(x))
#define up(i,l,r) for(int i=l;i<=r;i++)
#define down(i,r,l) for(int i=r;i>=l;i--)
using namespace std;
typedef long long int ll;
typedef vector<int> vi;
typedef pair<int,int> pii;
int n,m,numberOfScc=0,u,v,idx=1,Ti=0;
bool vis[1000]={0};
vector<vi> adj,reverseAdj,scc;
vi listOfNodes;
void dfs(int x){
vis[x]=1;
for(int i:adj[x]){
if(!vis[i]) dfs(i);
}
listOfNodes.pb(x);
}
void korasaju(int x,int num){
vis[x]=1;
scc[num].pb(x);
for(int i:reverseAdj[x]){
if(!vis[i]) korasaju(i,num);
}
}
int main(){
ios_base::sync_with_stdio(0);
cin>>n>>m;
adj.resize(n+1);
reverseAdj.resize(n+1);
scc.resize(n+1);
up(i,1,m){
cin>>u>>v;
adj[u].pb(v);
reverseAdj[v].pb(u);
}
up(i,1,n){
if(!vis[i]) dfs(i);
}
reverse(all(listOfNodes));
reset(vis);
for(int i:listOfNodes){
if(!vis[i]){
korasaju(i,++numberOfScc);
}
}
reset(vis);
do{
if(!vis[scc[idx][0]]){
Ti++;
dfs(scc[idx][0]);
}
idx++;
}while(idx<=numberOfScc);
cout<<Ti<<endl;
return 0;
}
| [
"[email protected]"
] | |
2e5caec5bcba54506385994f9a4c73e3bec33626 | e0654961ba79338e82a0ba03360e97ead4465285 | /include/argot/receiver/graphviz/vertex_property.hpp | 438a73baa2a9a3488ec96ef5ae2337aaa299798c | [
"BSL-1.0"
] | permissive | blockspacer/argot | 68f0e2a56fb4686989b47d0ad0f6127167ea0a9a | 97349baaf27659c9dc4d67cf8963b2e871eaedae | refs/heads/master | 2022-11-25T02:57:08.808025 | 2020-08-04T21:15:00 | 2020-08-04T21:15:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,468 | hpp | /*==============================================================================
Copyright (c) 2016, 2017, 2018 Matt Calabrese
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
==============================================================================*/
#ifndef ARGOT_RECEIVER_GRAPHVIZ_VERTEX_PROPERTY_HPP_
#define ARGOT_RECEIVER_GRAPHVIZ_VERTEX_PROPERTY_HPP_
#include <argot/receiver/graphviz/vertex_property/area.hpp>
#include <argot/receiver/graphviz/vertex_property/color.hpp>
#include <argot/receiver/graphviz/vertex_property/colorscheme.hpp>
#include <argot/receiver/graphviz/vertex_property/comment.hpp>
#include <argot/receiver/graphviz/vertex_property/distortion.hpp>
#include <argot/receiver/graphviz/vertex_property/fillcolor.hpp>
#include <argot/receiver/graphviz/vertex_property/fixedsize.hpp>
#include <argot/receiver/graphviz/vertex_property/fontcolor.hpp>
#include <argot/receiver/graphviz/vertex_property/fontname.hpp>
#include <argot/receiver/graphviz/vertex_property/fontsize.hpp>
#include <argot/receiver/graphviz/vertex_property/gradientangle.hpp>
#include <argot/receiver/graphviz/vertex_property/group.hpp>
#include <argot/receiver/graphviz/vertex_property/height.hpp>
#include <argot/receiver/graphviz/vertex_property/href.hpp>
#include <argot/receiver/graphviz/vertex_property/id.hpp>
#include <argot/receiver/graphviz/vertex_property/image.hpp>
#include <argot/receiver/graphviz/vertex_property/imagescale.hpp>
#include <argot/receiver/graphviz/vertex_property/label.hpp>
#include <argot/receiver/graphviz/vertex_property/labelloc.hpp>
#include <argot/receiver/graphviz/vertex_property/layer.hpp>
#include <argot/receiver/graphviz/vertex_property/margin.hpp>
#include <argot/receiver/graphviz/vertex_property/nojustify.hpp>
#include <argot/receiver/graphviz/vertex_property/ordering.hpp>
#include <argot/receiver/graphviz/vertex_property/orientation.hpp>
#include <argot/receiver/graphviz/vertex_property/penwidth.hpp>
#include <argot/receiver/graphviz/vertex_property/peripheries.hpp>
#include <argot/receiver/graphviz/vertex_property/pin.hpp>
#include <argot/receiver/graphviz/vertex_property/pos.hpp>
#include <argot/receiver/graphviz/vertex_property/rects.hpp>
#include <argot/receiver/graphviz/vertex_property/regular.hpp>
#include <argot/receiver/graphviz/vertex_property/root.hpp>
#include <argot/receiver/graphviz/vertex_property/samplepoints.hpp>
#include <argot/receiver/graphviz/vertex_property/shape.hpp>
#include <argot/receiver/graphviz/vertex_property/shapefile.hpp>
#include <argot/receiver/graphviz/vertex_property/showboxes.hpp>
#include <argot/receiver/graphviz/vertex_property/sides.hpp>
#include <argot/receiver/graphviz/vertex_property/skew.hpp>
#include <argot/receiver/graphviz/vertex_property/sortv.hpp>
#include <argot/receiver/graphviz/vertex_property/style.hpp>
#include <argot/receiver/graphviz/vertex_property/target.hpp>
#include <argot/receiver/graphviz/vertex_property/tooltip.hpp>
#include <argot/receiver/graphviz/vertex_property/url.hpp>
#include <argot/receiver/graphviz/vertex_property/vertices.hpp>
#include <argot/receiver/graphviz/vertex_property/width.hpp>
#include <argot/receiver/graphviz/vertex_property/xlabel.hpp>
#include <argot/receiver/graphviz/vertex_property/xlp.hpp>
#include <argot/receiver/graphviz/vertex_property/z.hpp>
#endif // ARGOT_RECEIVER_GRAPHVIZ_EDGE_PROPERTY_HPP_
| [
"[email protected]"
] | |
e4843ee8242f27be62de63e841777815bed22677 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5708921029263360_0/C++/thezodiac/p1.cpp | cb17e964041015edd8be151626fdf2dfb7087761 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,344 | cpp | #include <bits/stdc++.h>
#define fore(i,j,k) for(int i = j;i<k;i++)
#define forr(i,j,k) for(int i = j;i>k;i--)
#define LL long long
using namespace std;
int J,P,S,k;
int ans [1001][3],cnt = 0;
void rec (int jp[3][3],int ps[3][3], int js[3][3], int jps[3][3][3]){
fore(j,0,J)
fore(p,0,P)
fore(s,0,S)
if((!jps[j][p][s]) && (jp[j][p]<k) && (js[j][s]<k) && (ps[p][s]<k)){
jp[j][p] ++; js[j][s] ++; ps[p][s]++; jps[j][p][s] = 1;
rec(jp,ps,js,jps);
ans[cnt][0] = j;
ans[cnt][1] = p;
ans[cnt][2] = s;
cnt++;
break;
}
}
int main () {
ios_base :: sync_with_stdio(false);
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
int t;
cin >> t;
fore(tc,1,t+1){
cout << "case #" << tc << ": ";
cin >> J >> P >> S >> k;
cnt = 0;
int jp[3][3] = {0},js[3][3] = {0},ps[3][3] = {0},jps[3][3][3] = {0};
rec(jp,ps,js,jps);
cout << cnt << endl;
fore(i,0,cnt)
cout << ans[i][0]+1 << " " << ans[i][1]+1 << " " << ans [i][2]+1 << endl;
}
return 0;
}
/// flaw = orders are indeed not in order
| [
"[email protected]"
] | |
5afa7369f3602b102df1a638c5afa72226be6e79 | 7984224008c530d19c661b2abe52f750181756c9 | /Assignment_5/Cowboy_Platformer/Cowboy_Platformer/Entity.cpp | 193baf7c4f30e9830a0d1b82a2b87e681972de8d | [] | no_license | taranumesh/CS3113_Projects | 0fdea5a4014b90caa2907dff3e58b4b86720958e | 204b280583ee0f964b6cfbc5c579ab848cf872b2 | refs/heads/master | 2021-01-04T22:59:56.474784 | 2020-05-12T03:48:41 | 2020-05-12T03:51:44 | 240,787,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,121 | cpp | #include "Entity.h"
Entity::Entity()
{
position = glm::vec3(0);
movement = glm::vec3(0);
acceleration = glm::vec3(0);
velocity = glm::vec3(0);
speed = 0;
modelMatrix = glm::mat4(1.0f);
}
void Entity::AIWaitAndGo(Entity *player) {
movement = glm::vec3(-1, 0, 0);
}
void Entity::AIWalker(Entity *player) {
switch(aiState) {
case WALKING:
if (collidedLeft) {
movement = glm::vec3(1.0f, 0.0, 0.0);
animIndices = animLeft;
} else if (collidedRight) {
movement = glm::vec3(-1.0, 0.0, 0.0);
animIndices = animRight;
}
break;
}
}
void Entity::AI(Entity *player) {
switch(aiType) {
case WALKER:
AIWalker(player);
break;
case WAITANDGO:
AIWaitAndGo(player);
break;
}
}
void Entity::Update(float deltaTime, Entity *player, Entity *objects, int objectCount, Map *map)
{
collidedTop = false;
collidedBottom = false;
collidedLeft = false;
collidedRight = false;
if (isActive == false) return;
if (animIndices != NULL) {
if (glm::length(movement) != 0) {
animTime += deltaTime;
if (animTime >= 0.25f)
{
animTime = 0.0f;
animIndex++;
if (animIndex >= animFrames)
{
animIndex = 0;
}
}
} else {
animIndex = 0;
}
}
if (jump) {
jump = false;
velocity.y += jumpPower;
}
velocity.x = movement.x * speed;
velocity += acceleration * deltaTime;
position.y += velocity.y * deltaTime;
CheckCollisionsY(map);
if (entityType == PLAYER) {
CheckCollisionsY(objects, objectCount);
}
position.x += velocity.x * deltaTime;
CheckCollisionsX(map);
if (entityType == PLAYER) {
CheckCollisionsX(objects, objectCount);
} else if (entityType == ENEMY) {
CheckCollisionsX(player, 1);
}
if (entityType == ENEMY) {
AI(player);
}
modelMatrix = glm::mat4(1.0f);
modelMatrix = glm::translate(modelMatrix, position);
}
bool Entity::CheckCollision(Entity *other) {
if (isActive == false || other->isActive == false) return false;
float x_dist = fabs(position.x - other->position.x) - ((width + other->width)/2.0);
float y_dist = fabs(position.y - other->position.y) - ((height + other->height)/2.0);
if (x_dist < 0 && y_dist < 0) return true;
return false;
}
void Entity::CheckCollisionsY(Entity *objects, int objectCount)
{
for (int i = 0; i < objectCount; i++)
{
Entity *object = &objects[i];
if (CheckCollision(object))
{
float ydist = fabs(position.y - object->position.y);
float penetrationY = fabs(ydist - (height / 2.0f) - (object->height / 2.0f));
if (velocity.y > 0) {
position.y -= penetrationY;
velocity.y = 0;
collidedTop = true;
}
else if (velocity.y < 0) {
position.y += penetrationY;
velocity.y = 0;
collidedBottom = true;
if (entityType == PLAYER) {
object->isActive = false;
Mix_PlayChannel(-1, moo_sound, 0);
jump = true;
}
}
}
}
}
void Entity::CheckCollisionsX(Entity *objects, int objectCount)
{
for (int i = 0; i < objectCount; i++)
{
Entity *object = &objects[i];
if (CheckCollision(object))
{
float xdist = fabs(position.x - object->position.x);
float penetrationX = fabs(xdist - (width / 2.0f) - (object->width / 2.0f));
if (velocity.x > 0) {
position.x -= penetrationX;
velocity.x = 0;
collidedRight = true;
if (entityType == PLAYER) {
playerHit = true;
} else if (entityType == ENEMY) {
object->playerHit = true;
}
}
else if (velocity.x < 0) {
position.x += penetrationX;
velocity.x = 0;
collidedLeft = true;
if (entityType == PLAYER) {
playerHit = true;
} else if (entityType == ENEMY) {
object->playerHit = true;
}
}
}
}
}
void Entity::CheckCollisionsX(Map *map)
{
// Probes for tiles
glm::vec3 left = glm::vec3(position.x - (width / 2), position.y, position.z);
glm::vec3 right = glm::vec3(position.x + (width / 2), position.y, position.z);
float penetration_x = 0;
float penetration_y = 0;
if (map->IsSolid(left, &penetration_x, &penetration_y) && velocity.x < 0) {
position.x += penetration_x;
velocity.x = 0;
collidedLeft = true;
}
if (map->IsSolid(right, &penetration_x, &penetration_y) && velocity.x > 0) {
position.x -= penetration_x;
velocity.x = 0;
collidedRight = true;
} }
void Entity::CheckCollisionsY(Map *map)
{
// Probes for tiles
glm::vec3 top = glm::vec3(position.x, position.y + (height / 2), position.z);
glm::vec3 top_left = glm::vec3(position.x - (width / 2), position.y + (height / 2), position.z);
glm::vec3 top_right = glm::vec3(position.x + (width / 2), position.y + (height / 2), position.z);
glm::vec3 bottom = glm::vec3(position.x, position.y - (height / 2), position.z);
glm::vec3 bottom_left = glm::vec3(position.x - (width / 2), position.y - (height / 2), position.z);
glm::vec3 bottom_right = glm::vec3(position.x + (width / 2), position.y - (height / 2), position.z);
float penetration_x = 0;
float penetration_y = 0;
if (map->IsSolid(top, &penetration_x, &penetration_y) && velocity.y > 0) {
position.y -= penetration_y;
velocity.y = 0;
collidedTop = true;
}
else if (map->IsSolid(top_left, &penetration_x, &penetration_y) && velocity.y > 0) {
position.y -= penetration_y;
velocity.y = 0;
collidedTop = true;
}
else if (map->IsSolid(top_right, &penetration_x, &penetration_y) && velocity.y > 0) {
position.y -= penetration_y;
velocity.y = 0;
collidedTop = true;
}
if (map->IsSolid(bottom, &penetration_x, &penetration_y) && velocity.y < 0) {
position.y += penetration_y;
velocity.y = 0;
collidedBottom = true;
}
else if (map->IsSolid(bottom_left, &penetration_x, &penetration_y) && velocity.y < 0) {
position.y += penetration_y;
velocity.y = 0;
collidedBottom = true;
}
else if (map->IsSolid(bottom_right, &penetration_x, &penetration_y) && velocity.y < 0) {
position.y += penetration_y;
velocity.y = 0;
collidedBottom = true;
}
}
void Entity::DrawSpriteFromTextureAtlas(ShaderProgram *program, GLuint textureID, int index)
{
float u = (float)(index % animCols) / (float)animCols;
float v = (float)(index / animCols) / (float)animRows;
float width = 1.0f / (float)animCols;
float height = 1.0f / (float)animRows;
float texCoords[] = { u, v + height, u + width, v + height, u + width, v,
u, v + height, u + width, v, u, v};
float vertices[] = { -0.5, -0.5, 0.5, -0.5, 0.5, 0.5, -0.5, -0.5, 0.5, 0.5, -0.5, 0.5 };
glBindTexture(GL_TEXTURE_2D, textureID);
glVertexAttribPointer(program->positionAttribute, 2, GL_FLOAT, false, 0, vertices);
glEnableVertexAttribArray(program->positionAttribute);
glVertexAttribPointer(program->texCoordAttribute, 2, GL_FLOAT, false, 0, texCoords);
glEnableVertexAttribArray(program->texCoordAttribute);
glDrawArrays(GL_TRIANGLES, 0, 6);
glDisableVertexAttribArray(program->positionAttribute);
glDisableVertexAttribArray(program->texCoordAttribute);
}
void Entity::Render(ShaderProgram *program) {
if (isActive == false) return;
program->SetModelMatrix(modelMatrix);
if (animIndices != NULL) {
DrawSpriteFromTextureAtlas(program, textureID, animIndices[animIndex]);
return;
}
float vertices[] = { -0.5, -0.5, 0.5, -0.5, 0.5, 0.5, -0.5, -0.5, 0.5, 0.5, -0.5, 0.5 };
float texCoords[] = { 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0 };
glBindTexture(GL_TEXTURE_2D, textureID);
glVertexAttribPointer(program->positionAttribute, 2, GL_FLOAT, false, 0, vertices);
glEnableVertexAttribArray(program->positionAttribute);
glVertexAttribPointer(program->texCoordAttribute, 2, GL_FLOAT, false, 0, texCoords);
glEnableVertexAttribArray(program->texCoordAttribute);
glDrawArrays(GL_TRIANGLES, 0, 6);
glDisableVertexAttribArray(program->positionAttribute);
glDisableVertexAttribArray(program->texCoordAttribute);
}
| [
"[email protected]"
] | |
aed415076e79794730b066a2ad4dda04bd2549c0 | 93174920412b1f7951330a71843595198ad77cb3 | /src/ArduboyAdvanceCore.cpp | 58b988d00006dcaa94052918a27a5b84dc4244f0 | [] | no_license | t21/ArduboyAdvance | bf1ea05150d178a7b9d2ff9db2845cca6eda2ec4 | ecf4b3a93bac5ca6917a3c81986beacdbc608964 | refs/heads/master | 2021-09-19T23:34:51.636763 | 2018-08-01T11:59:09 | 2018-08-01T11:59:09 | 111,333,882 | 0 | 0 | null | 2018-03-22T18:28:33 | 2017-11-19T21:33:45 | C++ | UTF-8 | C++ | false | false | 33,273 | cpp | /**
* @file Arduboy2Core.cpp
* \brief
* The Arduboy2Core class for Arduboy hardware initilization and control.
*/
#include "ArduboyAdvanceCore.h"
#include "pins_arduino.h"
// #define USE_SPI_LIBRARY
// #define SET_BIT(port, bitMask) digitalWrite(*(port), HIGH);
// #define CLEAR_BIT(port, bitMask) digitalWrite(*(port), LOW);
// const uint8_t PROGMEM lcdBootProgram[] = {
// // boot defaults are commented out but left here in case they
// // might prove useful for reference
// //
// // Further reading: https://www.adafruit.com/datasheets/SSD1306.pdf
// //
// // Display Off
// // 0xAE,
// // Set Display Clock Divisor v = 0xF0
// // default is 0x80
// 0xD5, 0xF0,
// // Set Multiplex Ratio v = 0x3F
// // 0xA8, 0x3F,
// // Set Display Offset v = 0
// // 0xD3, 0x00,
// // Set Start Line (0)
// // 0x40,
// // Charge Pump Setting v = enable (0x14)
// // default is disabled
// 0x8D, 0x14,
// // Set Segment Re-map (A0) | (b0001)
// // default is (b0000)
// 0xA1,
// // Set COM Output Scan Direction
// 0xC8,
// // Set COM Pins v
// // 0xDA, 0x12,
// // Set Contrast v = 0xCF
// 0x81, 0xCF,
// // Set Precharge = 0xF1
// 0xD9, 0xF1,
// // Set VCom Detect
// // 0xDB, 0x40,
// // Entire Display ON
// // 0xA4,
// // Set normal/inverse display
// // 0xA6,
// // Display On
// 0xAF,
// // set display mode = horizontal addressing mode (0x00)
// 0x20, 0x00,
// // set col address range
// // 0x21, 0x00, COLUMN_ADDRESS_END,
// // set page address range
// // 0x22, 0x00, PAGE_ADDRESS_END
// };
ArduboyAdvanceCore::ArduboyAdvanceCore()
{
}
void ArduboyAdvanceCore::boot()
{
// #ifdef ARDUBOY_SET_CPU_8MHZ
// // ARDUBOY_SET_CPU_8MHZ will be set by the IDE using boards.txt
// setCPUSpeed8MHz();
// #endif
// Select the ADC input here so a delay isn't required in initRandomSeed()
// ADMUX = RAND_SEED_IN_ADMUX;
// bootPins();
gpio_init();
// bootSPI();
// bootOLED();
ili9341_init();
// bootTFT();
// bootPowerSaving();
}
// #ifdef ARDUBOY_SET_CPU_8MHZ
// // If we're compiling for 8MHz we need to slow the CPU down because the
// // hardware clock on the Arduboy is 16MHz.
// // We also need to readjust the PLL prescaler because the Arduino USB code
// // likely will have incorrectly set it for an 8MHz hardware clock.
// void ArduboyAdvanceCore::setCPUSpeed8MHz()
// {
// uint8_t oldSREG = SREG;
// cli(); // suspend interrupts
// PLLCSR = _BV(PINDIV); // dissable the PLL and set prescale for 16MHz)
// CLKPR = _BV(CLKPCE); // allow reprogramming clock
// CLKPR = 1; // set clock divisor to 2 (0b0001)
// PLLCSR = _BV(PLLE) | _BV(PINDIV); // enable the PLL (with 16MHz prescale)
// SREG = oldSREG; // restore interrupts
// }
// #endif
void ArduboyAdvanceCore::gpio_init()
{
// Configure backlight
pinMode(PIN_BACKLIGHT, OUTPUT);
// Set up pins for the display
pinMode(PIN_DISP_RD, OUTPUT);
pinMode(PIN_DISP_WR, OUTPUT);
pinMode(PIN_DISP_CD, OUTPUT);
pinMode(PIN_DISP_CS, OUTPUT);
CS_IDLE; // Set all control bits to HIGH (idle)
CD_DATA; // Signals are ACTIVE LOW
WR_IDLE;
RD_IDLE;
// Configure display reset
pinMode(PIN_DISP_RST, OUTPUT);
digitalWrite(PIN_DISP_RST, HIGH);
//set up 8 bit parallel port to write mode.
setWriteDataBus();
// Configure joystick
analogReadResolution(JOY_ANALOG_RESOLUTION); //For joystick
// pinMode(PIN_JOY_SEL_BUTTON, INPUT_PULLUP);
pinMode(PIN_JOY_X_AXIS, INPUT);
pinMode(PIN_JOY_Y_AXIS, INPUT);
// Configure buttons
pinMode(PIN_A_BUTTON, INPUT_PULLUP);
pinMode(PIN_B_BUTTON, INPUT_PULLUP);
pinMode(PIN_X_BUTTON, INPUT_PULLUP);
pinMode(PIN_Y_BUTTON, INPUT_PULLUP);
// Configure leds
// pinMode(RED_LED,OUTPUT);
// pinMode(BLUE_LED,OUTPUT);
// pinMode(GREEN_LED,OUTPUT);
// ToDo: Add the rest of the pins
}
// Pins are set to the proper modes and levels for the specific hardware.
// This routine must be modified if any pins are moved to a different port
// void ArduboyAdvanceCore::bootPins()
// {
// #if defined(ARDUBOY_20) || defined(ARDUBOY_36)
// analogReadResolution(JOY_ANALOG_RESOLUTION); //For joystick
// pinMode(PIN_A_BUTTON, INPUT_PULLUP);
// pinMode(PIN_B_BUTTON, INPUT_PULLUP);
// pinMode(PIN_X_BUTTON, INPUT_PULLUP);
// pinMode(PIN_Y_BUTTON, INPUT_PULLUP);
// pinMode(PIN_JOY_SEL_BUTTON, INPUT_PULLUP);
// pinMode(PIN_JOY_X_AXIS, INPUT);
// pinMode(PIN_JOY_Y_AXIS, INPUT);
// #elif defined(ARDUBOY_10)
// // Port B INPUT_PULLUP or HIGH
// PORTB |= (1 << RED_LED_BIT) | (1 << GREEN_LED_BIT) | (1 << BLUE_LED_BIT) |
// (1 << B_BUTTON_BIT);
// // Port B INPUT or LOW (none)
// // Port B inputs
// DDRB &= ~((1 << B_BUTTON_BIT));
// // Port B outputs
// DDRB |= (1 << RED_LED_BIT) | (1 << GREEN_LED_BIT) | (1 << BLUE_LED_BIT) |
// (1 << SPI_MOSI_BIT) | (1 << SPI_SCK_BIT);
// // Port C
// // Speaker: Not set here. Controlled by audio class
// // Port D INPUT_PULLUP or HIGH
// PORTD |= (1 << CS_BIT);
// // Port D INPUT or LOW
// PORTD &= ~((1 << RST_BIT));
// // Port D inputs (none)
// // Port D outputs
// DDRD |= (1 << RST_BIT) | (1 << CS_BIT) | (1 << DC_BIT);
// // Port E INPUT_PULLUP or HIGH
// PORTE |= (1 << A_BUTTON_BIT);
// // Port E INPUT or LOW (none)
// // Port E inputs
// DDRE &= ~((1 << A_BUTTON_BIT));
// // Port E outputs (none)
// // Port F INPUT_PULLUP or HIGH
// PORTF |= (1 << LEFT_BUTTON_BIT) | (1 << RIGHT_BUTTON_BIT) |
// (1 << UP_BUTTON_BIT) | (1 << DOWN_BUTTON_BIT);
// // Port F INPUT or LOW
// PORTF &= ~((1 << RAND_SEED_IN_BIT));
// // Port F inputs
// DDRF &= ~((1 << LEFT_BUTTON_BIT) | (1 << RIGHT_BUTTON_BIT) |
// (1 << UP_BUTTON_BIT) | (1 << DOWN_BUTTON_BIT) |
// (1 << RAND_SEED_IN_BIT));
// // Port F outputs (none)
// #elif defined(AB_DEVKIT)
// // Port B INPUT_PULLUP or HIGH
// PORTB |= _BV(LEFT_BUTTON_BIT) | _BV(UP_BUTTON_BIT) | _BV(DOWN_BUTTON_BIT) |
// _BV(BLUE_LED_BIT);
// // Port B INPUT or LOW (none)
// // Port B inputs
// DDRB &= ~(_BV(LEFT_BUTTON_BIT) | _BV(UP_BUTTON_BIT) | _BV(DOWN_BUTTON_BIT));
// // Port B outputs
// DDRB |= _BV(BLUE_LED_BIT) | _BV(SPI_MOSI_BIT) | _BV(SPI_SCK_BIT);
// // Port C INPUT_PULLUP or HIGH
// PORTC |= _BV(RIGHT_BUTTON_BIT);
// // Port C INPUT or LOW (none)
// // Port C inputs
// DDRC &= ~(_BV(RIGHT_BUTTON_BIT));
// // Port C outputs (none)
// // Port D INPUT_PULLUP or HIGH
// PORTD |= _BV(CS_BIT);
// // Port D INPUT or LOW
// PORTD &= ~(_BV(RST_BIT));
// // Port D inputs (none)
// // Port D outputs
// DDRD |= _BV(RST_BIT) | _BV(CS_BIT) | _BV(DC_BIT);
// // Port E (none)
// // Port F INPUT_PULLUP or HIGH
// PORTF |= _BV(A_BUTTON_BIT) | _BV(B_BUTTON_BIT);
// // Port F INPUT or LOW
// PORTF &= ~(_BV(RAND_SEED_IN_BIT));
// // Port F inputs
// DDRF &= ~(_BV(A_BUTTON_BIT) | _BV(B_BUTTON_BIT) | _BV(RAND_SEED_IN_BIT));
// // Port F outputs (none)
// // Speaker: Not set here. Controlled by audio class
// #endif
// }
void ArduboyAdvanceCore::ili9341_init(void)
{
// toggle RST low to reset
digitalWrite(PIN_DISP_RST, HIGH);
delay(5);
digitalWrite(PIN_DISP_RST, LOW);
delay(20);
digitalWrite(PIN_DISP_RST, HIGH);
delay(150);
writecommand(0xEF);
writedata(0x03);
writedata(0x80);
writedata(0x02);
writecommand(0xCF);
writedata(0x00);
writedata(0XC1);
writedata(0X30);
writecommand(0xED);
writedata(0x64);
writedata(0x03);
writedata(0X12);
writedata(0X81);
writecommand(0xE8);
writedata(0x85);
writedata(0x00);
writedata(0x78);
writecommand(0xCB);
writedata(0x39);
writedata(0x2C);
writedata(0x00);
writedata(0x34);
writedata(0x02);
writecommand(0xF7);
writedata(0x20);
writecommand(0xEA);
writedata(0x00);
writedata(0x00);
writecommand(ILI9341_PWCTR1); //Power control
writedata(0x23); //VRH[5:0]
writecommand(ILI9341_PWCTR2); //Power control
writedata(0x10); //SAP[2:0];BT[3:0]
writecommand(ILI9341_VMCTR1); //VCM control
writedata(0x3e); //
writedata(0x28);
writecommand(ILI9341_VMCTR2); //VCM control2
writedata(0x86); //--
writecommand(ILI9341_MADCTL); // Memory Access Control
writedata(0x48);
writecommand(ILI9341_PIXFMT);
writedata(0x55);
writecommand(ILI9341_FRMCTR1);
writedata(0x00);
writedata(0x18);
writecommand(ILI9341_DFUNCTR); // Display Function Control
writedata(0x08);
writedata(0x82);
writedata(0x27);
writecommand(0xF2); // 3Gamma Function Disable
writedata(0x00);
writecommand(ILI9341_GAMMASET); //Gamma curve selected
writedata(0x01);
writecommand(ILI9341_GMCTRP1); //Set Gamma
writedata(0x0F);
writedata(0x31);
writedata(0x2B);
writedata(0x0C);
writedata(0x0E);
writedata(0x08);
writedata(0x4E);
writedata(0xF1);
writedata(0x37);
writedata(0x07);
writedata(0x10);
writedata(0x03);
writedata(0x0E);
writedata(0x09);
writedata(0x00);
writecommand(ILI9341_GMCTRN1); //Set Gamma
writedata(0x00);
writedata(0x0E);
writedata(0x14);
writedata(0x03);
writedata(0x11);
writedata(0x07);
writedata(0x31);
writedata(0xC1);
writedata(0x48);
writedata(0x08);
writedata(0x0F);
writedata(0x0C);
writedata(0x31);
writedata(0x36);
writedata(0x0F);
// Rotate screen 90deg
writecommand(ILI9341_MADCTL);
writedata(ILI9341_MADCTL_MX | ILI9341_MADCTL_MY |
ILI9341_MADCTL_MV | ILI9341_MADCTL_BGR);
writecommand(ILI9341_INVOFF); //Invert Off
delay(120);
writecommand(ILI9341_SLPOUT); //Exit Sleep
delay(120);
writecommand(ILI9341_DISPON); //Display on
// Set backlight level
analogWrite(PIN_BACKLIGHT, 255);
}
// void ArduboyAdvanceCore::setRotation(uint8_t x) {
// // Call parent rotation func first -- sets up rotation flags, etc.
// // Adafruit_GFX::setRotation(x);
// uint8_t rotation = (x & 3);
// switch(rotation) {
// case 0:
// case 2:
// // _width = SCREEN_WIDTH;
// // _height = SCREEN_HEIGHT;
// break;
// case 1:
// case 3:
// // _width = SCREEN_HEIGHT;
// // _height = SCREEN_WIDTH;
// break;
// default:
// break;
// }
// // Then perform hardware-specific rotation operations...
// CS_ACTIVE;
// uint16_t t = 0;
// switch (rotation) {
// case 2:
// t = ILI9341_MADCTL_MX | ILI9341_MADCTL_BGR;
// break;
// case 3:
// t = ILI9341_MADCTL_MV | ILI9341_MADCTL_BGR;
// break;
// case 0:
// t = ILI9341_MADCTL_MY | ILI9341_MADCTL_BGR;
// break;
// case 1:
// t = ILI9341_MADCTL_MX | ILI9341_MADCTL_MY | ILI9341_MADCTL_MV | ILI9341_MADCTL_BGR;
// break;
// default:
// break;
// }
// writecommand(ILI9341_MADCTL);
// writedata(t);
// // For 9341, init default full-screen address window:
// // setAddrWindow(0, 0, _width - 1, _height - 1); // CS_IDLE happens here
// }
// void ArduboyAdvanceCore::bootOLED()
// {
// // reset the display
// delayShort(5); // reset pin should be low here. let it stay low a while
// // bitSet(RST_PORT, RST_BIT); // set high to come out of reset
// delayShort(5); // wait a while
// // select the display (permanently, since nothing else is using SPI)
// // bitClear(CS_PORT, CS_BIT);
// // run our customized boot-up command sequence against the
// // OLED to initialize it properly for Arduboy
// LCDCommandMode();
// for (uint8_t i = 0; i < sizeof(lcdBootProgram); i++) {
// SPItransfer(pgm_read_byte(lcdBootProgram + i));
// }
// LCDDataMode();
// }
// void ArduboyAdvanceCore::bootTFT()
// {
// Serial.print("W:"); Serial.print(WIDTH); Serial.print(":"); Serial.println(_width);
// Serial.print("H:"); Serial.print(HEIGHT); Serial.print(":"); Serial.println(_height);
// Serial.print("_cs:"); Serial.println(_cs);
// Serial.print("_dc:"); Serial.println(_dc);
// Serial.print("_rst:"); Serial.println(_rst);
// // Serial.print("_mosi:"); Serial.println(_mosi);
// Serial.print("_sclk:"); Serial.println(_sclk);
// pinMode(_rst, OUTPUT);
// digitalWrite(_rst, LOW);
// // Control Pins
// pinMode(_dc, OUTPUT);
// digitalWrite(_dc, LOW);
// pinMode(_cs, OUTPUT);
// digitalWrite(_cs, HIGH);
// // #ifdef __AVR__
// // csport = portOutputRegister(digitalPinToPort(_cs));
// // dcport = portOutputRegister(digitalPinToPort(_dc));
// // #endif
// // #if defined(__SAM3X8E__)
// // csport = digitalPinToPort(_cs);
// // dcport = digitalPinToPort(_dc);
// // #endif
// // #if defined(__arm__) && defined(CORE_TEENSY)
// // mosiport = &_mosi;
// // clkport = &_sclk;
// // rsport = &_rst;
// // csport = &_cs;
// // dcport = &_dc;
// // #endif
// // mosiport = &_mosi;
// // clkport = &_sclk;
// // rsport = &_rst;
// // csport = &_cs;
// // dcport = &_dc;
// // cspinmask = digitalPinToBitMask(_cs);
// // dcpinmask = digitalPinToBitMask(_dc);
// // if(hwSPI) { // Using hardware SPI
// // SPI.end();
// // SPI.begin();
// // #ifdef __AVR__
// // SPI.setClockDivider(SPI_CLOCK_DIV2); // 8 MHz (full! speed!)
// // #endif
// // #if defined(__SAM3X8E__)
// // SPI.setClockDivider(11); // 85MHz / 11 = 7.6 MHz (full! speed!)
// // #endif //SPI.setBitOrder(MSBFIRST);
// // SPI.setBitOrder(MSBFIRST);
// // SPI.setDataMode(SPI_MODE0);
// // spi_dma_init();
// // SPI.begin();
// // SPI.beginTransaction(SPISettings(8000000, MSBFIRST, SPI_MODE0));
// // SPI.beginTransaction(SPISettings(12000000, MSBFIRST, SPI_MODE0));
// // } else {
// // pinMode(_sclk, OUTPUT);
// // pinMode(_mosi, OUTPUT);
// // pinMode(_miso, INPUT);
// // #ifdef __AVR__
// // clkport = portOutputRegister(digitalPinToPort(_sclk));
// // mosiport = portOutputRegister(digitalPinToPort(_mosi));
// // #endif
// // #if defined(__SAM3X8E__)
// // clkport = digitalPinToPort(_sclk);
// // mosiport = digitalPinToPort(_mosi);
// // #endif
// // clkpinmask = digitalPinToBitMask(_sclk);
// // mosipinmask = digitalPinToBitMask(_mosi);
// // CLEAR_BIT(clkport, clkpinmask);
// // CLEAR_BIT(mosiport, mosipinmask);
// // }
// // toggle RST low to reset
// digitalWrite(_rst, HIGH);
// delay(5);
// digitalWrite(_rst, LOW);
// delay(20);
// digitalWrite(_rst, HIGH);
// delay(150);
// SPI.beginTransaction(SPISettings(8000000, MSBFIRST, SPI_MODE0));
// // /*
// uint8_t x = readcommand8(ILI9340_RDMODE);
// Serial.print("\nDisplay Power Mode: 0x"); Serial.println(x, HEX);
// x = readcommand8(ILI9340_RDMADCTL);
// Serial.print("\nMADCTL Mode: 0x"); Serial.println(x, HEX);
// x = readcommand8(ILI9340_RDPIXFMT);
// Serial.print("\nPixel Format: 0x"); Serial.println(x, HEX);
// x = readcommand8(ILI9340_RDIMGFMT);
// Serial.print("\nImage Format: 0x"); Serial.println(x, HEX);
// x = readcommand8(ILI9340_RDSELFDIAG);
// Serial.print("\nSelf Diagnostic: 0x"); Serial.println(x, HEX);
// // */
// //if(cmdList) commandList(cmdList);
// writecommand(0xEF);
// writedata(0x03);
// writedata(0x80);
// writedata(0x02);
// writecommand(0xCF);
// writedata(0x00);
// writedata(0XC1);
// writedata(0X30);
// writecommand(0xED);
// writedata(0x64);
// writedata(0x03);
// writedata(0X12);
// writedata(0X81);
// writecommand(0xE8);
// writedata(0x85);
// writedata(0x00);
// writedata(0x78);
// writecommand(0xCB);
// writedata(0x39);
// writedata(0x2C);
// writedata(0x00);
// writedata(0x34);
// writedata(0x02);
// writecommand(0xF7);
// writedata(0x20);
// writecommand(0xEA);
// writedata(0x00);
// writedata(0x00);
// writecommand(ILI9340_PWCTR1); //Power control
// writedata(0x23); //VRH[5:0]
// writecommand(ILI9340_PWCTR2); //Power control
// writedata(0x10); //SAP[2:0];BT[3:0]
// writecommand(ILI9340_VMCTR1); //VCM control
// writedata(0x3e); //�Աȶȵ���
// writedata(0x28);
// writecommand(ILI9340_VMCTR2); //VCM control2
// writedata(0x86); //--
// writecommand(ILI9340_MADCTL); // Memory Access Control
// writedata(ILI9340_MADCTL_MX | ILI9340_MADCTL_BGR);
// writecommand(ILI9340_PIXFMT);
// writedata(0x55);
// writecommand(ILI9340_FRMCTR1);
// writedata(0x00);
// writedata(0x18);
// writecommand(ILI9340_DFUNCTR); // Display Function Control
// writedata(0x08);
// writedata(0x82);
// writedata(0x27);
// writecommand(0xF2); // 3Gamma Function Disable
// writedata(0x00);
// writecommand(ILI9340_GAMMASET); //Gamma curve selected
// writedata(0x01);
// writecommand(ILI9340_GMCTRP1); //Set Gamma
// writedata(0x0F);
// writedata(0x31);
// writedata(0x2B);
// writedata(0x0C);
// writedata(0x0E);
// writedata(0x08);
// writedata(0x4E);
// writedata(0xF1);
// writedata(0x37);
// writedata(0x07);
// writedata(0x10);
// writedata(0x03);
// writedata(0x0E);
// writedata(0x09);
// writedata(0x00);
// writecommand(ILI9340_GMCTRN1); //Set Gamma
// writedata(0x00);
// writedata(0x0E);
// writedata(0x14);
// writedata(0x03);
// writedata(0x11);
// writedata(0x07);
// writedata(0x31);
// writedata(0xC1);
// writedata(0x48);
// writedata(0x08);
// writedata(0x0F);
// writedata(0x0C);
// writedata(0x31);
// writedata(0x36);
// writedata(0x0F);
// writecommand(ILI9340_SLPOUT); //Exit Sleep
// delay(120);
// writecommand(ILI9340_DISPON); //Display on
// SPI.endTransaction();
// }
// void ArduboyAdvanceCore::spiwrite(uint8_t c) {
// // Serial.print("0x"); Serial.print(c, HEX); Serial.print(", ");
// SPI.transfer(c);
// }
// void ArduboyAdvanceCore::writecommand(uint8_t c) {
// // CLEAR_BIT(dcport, dcpinmask);
// digitalWrite(_dc, LOW);
// // CLEAR_BIT(clkport, clkpinmask);
// digitalWrite(_sclk, LOW);
// // CLEAR_BIT(csport, cspinmask);
// digitalWrite(_cs, LOW);
// spiwrite(c);
// // SET_BIT(csport, cspinmask);
// digitalWrite(_cs, HIGH);
// }
// void ArduboyAdvanceCore::writedata(uint8_t c) {
// // SET_BIT(dcport, dcpinmask);
// digitalWrite(_dc, HIGH);
// // CLEAR_BIT(clkport, clkpinmask);
// digitalWrite(_sclk, LOW);
// // CLEAR_BIT(csport, cspinmask);
// digitalWrite(_cs, LOW);
// spiwrite(c);
// digitalWrite(_cs, HIGH);
// // SET_BIT(csport, cspinmask);
// }
void ArduboyAdvanceCore::setWriteDataBus(void) {
// set the data pins to output mode
pinMode(PIN_DISP_D0, OUTPUT);
pinMode(PIN_DISP_D1, OUTPUT);
pinMode(PIN_DISP_D2, OUTPUT);
pinMode(PIN_DISP_D3, OUTPUT);
pinMode(PIN_DISP_D4, OUTPUT);
pinMode(PIN_DISP_D5, OUTPUT);
pinMode(PIN_DISP_D6, OUTPUT);
pinMode(PIN_DISP_D7, OUTPUT);
}
void ArduboyAdvanceCore::setReadDataBus(void) {
//set the data pins to input mode
pinMode(PIN_DISP_D0, INPUT);
pinMode(PIN_DISP_D1, INPUT);
pinMode(PIN_DISP_D2, INPUT);
pinMode(PIN_DISP_D3, INPUT);
pinMode(PIN_DISP_D4, INPUT);
pinMode(PIN_DISP_D5, INPUT);
pinMode(PIN_DISP_D6, INPUT);
pinMode(PIN_DISP_D7, INPUT);
}
// void ArduboyAdvanceCore::LCDDataMode()
// {
// // bitSet(DC_PORT, DC_BIT);
// digitalWrite(_dc, HIGH);
// digitalWrite(_sclk, LOW);
// digitalWrite(_cs, LOW);
// }
// void ArduboyAdvanceCore::LCDCommandMode()
// {
// // bitClear(DC_PORT, DC_BIT);
// digitalWrite(_dc, LOW);
// digitalWrite(_sclk, LOW);
// digitalWrite(_cs, LOW);
// }
// // Initialize the SPI interface for the display
// void ArduboyAdvanceCore::bootSPI()
// {
// SPI.begin();
// // SPI.beginTransaction(SPISettings(8000000, MSBFIRST, SPI_MODE0));
// // master, mode 0, MSB first, CPU clock / 2 (8MHz)
// // SPCR = _BV(SPE) | _BV(MSTR);
// // SPSR = _BV(SPI2X);
// }
// // Write to the SPI bus (MOSI pin)
// void ArduboyAdvanceCore::SPItransfer(uint8_t data)
// {
// SPI.beginTransaction(SPISettings(12000000, MSBFIRST, SPI_MODE0));
// spiwrite(data);
// digitalWrite(_cs, HIGH);
// SPI.endTransaction();
// }
void ArduboyAdvanceCore::safeMode()
{
if (buttonsState() == Y_BUTTON)
{
// digitalWriteRGB(RED_LED, RGB_ON);
// prevent the bootloader magic number from being overwritten by timer 0
// when a timer variable overlaps the magic number location
// power_timer0_disable();
while (true) { }
}
}
/* Power Management */
void ArduboyAdvanceCore::idle()
{
// set_sleep_mode(SLEEP_MODE_IDLE);
// sleep_mode();
}
void ArduboyAdvanceCore::bootPowerSaving()
{
// // disable Two Wire Interface (I2C) and the ADC
// PRR0 = _BV(PRTWI) | _BV(PRADC);
// // disable USART1
// PRR1 = _BV(PRUSART1);
// // All other bits will be written with 0 so will be enabled
}
// Shut down the display
// ToDo
void ArduboyAdvanceCore::displayOff()
{
// LCDCommandMode();
// SPItransfer(0xAE); // display off
// SPItransfer(0x8D); // charge pump:
// SPItransfer(0x10); // disable
// delayShort(250);
// // bitClear(RST_PORT, RST_BIT); // set display reset pin low (reset state)
}
// Restart the display after a displayOff()
// ToDo
void ArduboyAdvanceCore::displayOn()
{
// bootOLED();
}
uint16_t ArduboyAdvanceCore::getWidth() {
return SCREEN_WIDTH;
}
uint16_t ArduboyAdvanceCore::getHeight() {
return SCREEN_HEIGHT;
}
/* Drawing */
// // ToDo: Remove again? Comes from ILI9340 driver
// void ArduboyAdvanceCore::setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
// {
// writecommand(ILI9340_CASET); // Column addr set
// writedata(x0 >> 8);
// writedata(x0 & 0xFF); // XSTART
// writedata(x1 >> 8);
// writedata(x1 & 0xFF); // XEND
// writecommand(ILI9340_PASET); // Row addr set
// writedata(y0>>8);
// writedata(y0); // YSTART
// writedata(y1>>8);
// writedata(y1); // YEND
// writecommand(ILI9340_RAMWR); // write to RAM
// }
void ArduboyAdvanceCore::setAddrWindow(uint16_t x0, uint16_t y0, uint16_t x1, uint16_t y1)
{
CS_ACTIVE;
CD_COMMAND;
// write8special(ILI9341_CASET); // Column addr set
write8(ILI9341_CASET); // Column addr set
CD_DATA;
// write8special(x0 >> 8);
// write8special(x0 & 0xFF); // XSTART
// write8special(x1 >> 8);
// write8special(x1 & 0xFF); // XEND
write8(x0 >> 8);
write8(x0 & 0xFF); // XSTART
write8(x1 >> 8);
write8(x1 & 0xFF); // XEND
CD_COMMAND;
// write8special(ILI9341_PASET); // Row addr set
write8(ILI9341_PASET); // Row addr set
CD_DATA;
// write8special(y0 >> 8);
// write8special(y0); // YSTART
// write8special(y1 >> 8);
// write8special(y1); // YEND
write8(y0 >> 8);
write8(y0); // YSTART
write8(y1 >> 8);
write8(y1); // YEND
CD_COMMAND;
// write8special(ILI9341_RAMWR); // write to RAM
write8(ILI9341_RAMWR); // write to RAM
}
void ArduboyAdvanceCore::paint8Pixels(uint8_t pixels)
{
SPItransfer(pixels);
}
// void ArduboyAdvanceCore::paintScreen(const uint16_t *image)
// {
// Serial.println("ArduboyAdvanceCore::paintScreen(const uint8_t *image)");
// for (int i = 0; i < (HEIGHT*WIDTH)/8; i++)
// {
// SPItransfer(pgm_read_byte(image + i));
// }
// }
// paint from a memory buffer, this should be FAST as it's likely what
// will be used by any buffer based subclass
volatile void ArduboyAdvanceCore::paintScreen(uint8_t image[], bool clear)
{
uint32_t port_in;
uint32_t i = 0;
setAddrWindow(0, 0, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1);
CD_DATA;
port_in = DISP_PORT_IN & 0xFF00FFFF;
port_in &= ~0x5000;
// for (uint32_t i = 0; i < SCREEN_BUF_SIZE; i += 2) {
while (i < SCREEN_BUF_SIZE) {
// write8(image[i]);
CS_WR_ACTIVE;
// DISP_PORT_OUT = (DISP_PORT_IN & 0xFF00FFFF) | (image[i++] << 16);
DISP_PORT_OUT = port_in | (image[i++] << 16);
// WR_IDLE;
// CS_IDLE;
CS_WR_IDLE;
// write8(image[i + 1]);
CS_WR_ACTIVE;
// DISP_PORT_OUT = (DISP_PORT_IN & 0xFF00FFFF) | (image[i++] << 16);
DISP_PORT_OUT = port_in | (image[i++] << 16);
// WR_IDLE;
// CS_IDLE;
CS_WR_IDLE;
// if (clear) {
// image[i] = 0x00;
// image[i + 1] = 0x00;
// }
}
// CS_WR_ACTIVE;
// // uint32_t data = DISP_PORT_IN;
// // data &= 0xFF00FFFF;
// // data |= (c << 16);
// // DISP_PORT_OUT = data;
// DISP_PORT_OUT = (DISP_PORT_IN & 0xFF00FFFF) | (c << 16);
// WR_IDLE;
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
// CS_IDLE;
// CS_IDLE;
if (clear) {
memset(image, 0, SCREEN_BUF_SIZE);
}
return;
// // writecommand(ILI9340_CASET); // Column addr set
// // writedata(0 >> 8);
// // writedata(0 & 0xFF); // XSTART
// // writedata((WIDTH - 1) >> 8);
// // writedata((WIDTH - 1) & 0xFF); // XEND
// // writecommand(ILI9340_PASET); // Row addr set
// // writedata(0>>8);
// // writedata(0); // YSTART
// // writedata((HEIGHT - 1) >>8);
// // writedata(HEIGHT - 1); // YEND
// writecommand(ILI9340_RAMWR); // write to RAM
// SPI.beginTransaction(SPISettings(15000000, MSBFIRST, SPI_MODE0));
// digitalWrite(_dc, HIGH);
// digitalWrite(_cs, LOW);
// // SPI.transfer((uint8_t *)image, (2 * HEIGHT * WIDTH));
// for (uint32_t i = 0; i < (HEIGHT * WIDTH); i++) {
// SPI.transfer16(image[i]);
// }
// digitalWrite(_cs, HIGH);
// SPI.endTransaction();
// if (clear) {
// for (uint32_t i = 0; i < (WIDTH * HEIGHT); i++) {
// image[i] = 0;
// }
// }
// return;
// // uint8_t c;
// // int i = 0;
// // if (clear)
// // {
// // // SPDR = image[i]; // set the first SPI data byte to get things started
// // image[i++] = 0; // clear the first image byte
// // }
// // else
// // // SPDR = image[i++];
// // // the code to iterate the loop and get the next byte from the buffer is
// // // executed while the previous byte is being sent out by the SPI controller
// // while (i < (HEIGHT * WIDTH) / 8)
// // {
// // // get the next byte. It's put in a local variable so it can be sent as
// // // as soon as possible after the sending of the previous byte has completed
// // if (clear)
// // {
// // c = image[i];
// // // clear the byte in the image buffer
// // image[i++] = 0;
// // }
// // else
// // c = image[i++];
// // // while (!(SPSR & _BV(SPIF))) { } // wait for the previous byte to be sent
// // // put the next byte in the SPI data register. The SPI controller will
// // // clock it out while the loop continues and gets the next byte ready
// // // SPDR = c;
// // }
// // // while (!(SPSR & _BV(SPIF))) { } // wait for the last byte to be sent
}
// bool ArduboyAdvanceCore::waitForDMA()
// {
// while (!spi_dma_done()) ;
// }
void ArduboyAdvanceCore::blank()
{
setAddrWindow(0, 0, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1);
CD_DATA;
for (uint32_t i = 0; i < SCREEN_BUF_SIZE; i += 2) {
write8(0x00);
write8(0x00);
}
CS_IDLE;
}
// void ArduboyAdvanceCore::sendLCDCommand(uint8_t command)
// {
// LCDCommandMode();
// SPItransfer(command);
// LCDDataMode();
// }
// invert the display or set to normal
// when inverted, a pixel set to 0 will be on
void ArduboyAdvanceCore::invert(bool inverse)
{
sendLCDCommand(inverse ? OLED_PIXELS_INVERTED : OLED_PIXELS_NORMAL);
}
// turn all display pixels on, ignoring buffer contents
// or set to normal buffer display
void ArduboyAdvanceCore::allPixelsOn(bool on)
{
sendLCDCommand(on ? OLED_ALL_PIXELS_ON : OLED_PIXELS_FROM_RAM);
}
// flip the display vertically or set to normal
void ArduboyAdvanceCore::flipVertical(bool flipped)
{
sendLCDCommand(flipped ? OLED_VERTICAL_FLIPPED : OLED_VERTICAL_NORMAL);
}
// flip the display horizontally or set to normal
void ArduboyAdvanceCore::flipHorizontal(bool flipped)
{
sendLCDCommand(flipped ? OLED_HORIZ_FLIPPED : OLED_HORIZ_NORMAL);
}
void ArduboyAdvanceCore::write8(uint8_t c)
{
#if 1
// CS_ACTIVE;
// WR_ACTIVE;
CS_WR_ACTIVE;
// *((volatile uint8_t *)(&GPIOC_PDOR)) = c;
// ToDo: Fix new write
uint32_t port_data = c << 16;
// uint32_t port_data_set = (c << 16) & 0x00FF0000;
// uint32_t port_data_clr = ~(c << 16) & 0x00FF0000;
// DISP_PORT_SET = port_data & 0x00FF0000;
DISP_PORT_SET = port_data;
DISP_PORT_CLR = ~port_data & 0x00FF0000;
WR_IDLE;
// asm volatile("NOP"); // wait ten ns
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
// asm volatile("NOP");
CS_IDLE;
#else
CS_WR_ACTIVE;
// uint32_t data = DISP_PORT_IN;
// data &= 0xFF00FFFF;
// data |= (c << 16);
// DISP_PORT_OUT = data;
DISP_PORT_OUT = (DISP_PORT_IN & 0xFF00FFFF) | (c << 16);
WR_IDLE;
asm volatile("NOP");
asm volatile("NOP");
asm volatile("NOP");
CS_IDLE;
#endif
}
void ArduboyAdvanceCore::writecommand(uint8_t c)
{
CD_COMMAND;
write8(c);
}
void ArduboyAdvanceCore::writedata(uint8_t c) {
CD_DATA;
write8(c);
}
/* RGB LED */
void ArduboyAdvanceCore::setRGBled(uint8_t red, uint8_t green, uint8_t blue)
{
#ifdef ARDUBOY_10 // RGB, all the pretty colors
// inversion is necessary because these are common annode LEDs
analogWrite(RED_LED, 255 - red);
analogWrite(GREEN_LED, 255 - green);
analogWrite(BLUE_LED, 255 - blue);
#elif defined(AB_DEVKIT)
// only blue on DevKit, which is not PWM capable
(void)red; // parameter unused
(void)green; // parameter unused
bitWrite(BLUE_LED_PORT, BLUE_LED_BIT, blue ? RGB_ON : RGB_OFF);
#endif
}
void ArduboyAdvanceCore::digitalWriteRGB(uint8_t red, uint8_t green, uint8_t blue)
{
// digitalWrite(BLUE_LED,blue);
// digitalWrite(GREEN_LED,green);
// digitalWrite(RED_LED,red);
}
void ArduboyAdvanceCore::digitalWriteRGB(uint8_t color, uint8_t val)
{
// digitalWrite(color, val);
}
/* Buttons */
uint8_t ArduboyAdvanceCore::buttonsState()
{
uint8_t buttons;
// #if defined(ARDUBOY_20) || defined(ARDUBOY_36)
uint8_t Abit;
uint8_t Bbit;
uint8_t Xbit;
uint8_t Ybit;
// uint8_t Selbit;
Abit = ~digitalRead(PIN_A_BUTTON) & 0x01;
Bbit = ~digitalRead(PIN_B_BUTTON) & 0x01;
Xbit = ~digitalRead(PIN_X_BUTTON) & 0x01;
Ybit = ~digitalRead(PIN_Y_BUTTON) & 0x01;
// Selbit = ~digitalRead(PIN_JOY_SEL_BUTTON) & 0x01;
buttons = (Abit << 3) | (Bbit << 2) | (Xbit << 1) | (Ybit);
// // using ports here is ~100 bytes smaller than digitalRead()
// #elif defined(AB_DEVKIT)
// // down, left, up
// buttons = ((~PINB) & B01110000);
// // right button
// buttons = buttons | (((~PINC) & B01000000) >> 4);
// // A and B
// buttons = buttons | (((~PINF) & B11000000) >> 6);
// #elif defined(ARDUBOY_10)
// // down, up, left right
// buttons = ((~PINF) & B11110000);
// // A (left)
// buttons = buttons | (((~PINE) & B01000000) >> 3);
// // B (right)
// buttons = buttons | (((~PINB) & B00010000) >> 2);
// #endif
return buttons;
}
// delay in ms with 16 bit duration
void ArduboyAdvanceCore::delayShort(uint16_t ms)
{
delay((unsigned long) ms);
}
////////// stuff not actively being used, but kept for posterity
uint8_t ArduboyAdvanceCore::read8(void)
{
RD_ACTIVE;
delay(5);
uint8_t temp = 0;
if(digitalRead(PIN_DISP_D0)) {temp |= (1 << 0);} // slow reading but works
if(digitalRead(PIN_DISP_D1)) {temp |= (1 << 1);}
if(digitalRead(PIN_DISP_D2)) {temp |= (1 << 2);}
if(digitalRead(PIN_DISP_D3)) {temp |= (1 << 3);}
if(digitalRead(PIN_DISP_D4)) {temp |= (1 << 4);}
if(digitalRead(PIN_DISP_D5)) {temp |= (1 << 5);}
if(digitalRead(PIN_DISP_D6)) {temp |= (1 << 6);}
if(digitalRead(PIN_DISP_D7)) {temp |= (1 << 7);}
RD_IDLE;
delay(5);
return temp;
}
uint8_t ArduboyAdvanceCore::readcommand8(uint8_t c)
{
writecommand(c);
CS_ACTIVE;
CD_DATA;
setReadDataBus();
delay(5);
//single dummy data
uint8_t data = read8();
//real data
data = read8();
setWriteDataBus();
CS_IDLE;
return data;
}
uint32_t ArduboyAdvanceCore::readID(void)
{
writecommand(ILI9341_RDDID);
CS_ACTIVE;
CD_DATA;
setReadDataBus();
uint32_t r = read8();
r <<= 8;
r |= read8();
r <<= 8;
r |= read8();
r <<= 8;
r |= read8();
setWriteDataBus();
CS_IDLE;
return r;
}
| [
"[email protected]"
] | |
ff3face366fadffd7d44ed3d9bef7b926e9bd80e | a190458c32197f554bb66bf4b13b5a855c577566 | /12stackAndQueue/stack.hpp | 73927c579f29efe76be1fa404faa035370349c59 | [] | no_license | YunaLin/cplusplus | 5d162da9e4da2048eb72238ec66c0e2b4fb3a79b | 14c7f26e6c7a6176336ec3dfbb78d4fde48fb8d0 | refs/heads/master | 2020-12-24T10:16:12.089351 | 2016-11-07T15:43:25 | 2016-11-07T15:43:25 | 73,088,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | hpp | #ifndef STACK_H_
#define STACK_H_
#define MAX_SIZE 10
class stack {
private:
int * storage;
int max_size;
int top;
public:
stack() {
this->storage = new int[MAX_SIZE]();
this->max_size = MAX_SIZE;
this->top = -1;
}
~stack() {
delete []this->storage;
}
void push(int);
void pop(void);
int peek(void);
bool isEmpty(void);
bool isFull(void);
void clear(void);
};
#endif
| [
"[email protected]"
] | |
506bfdf812a655874dea498235aa50f7db91a6ff | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest2/0.02/k | 61cd83b42eb260fe5a521dcab2b0debee773e6ba | [] | no_license | mahoep/inletCFD | eb516145fad17408f018f51e32aa0604871eaa95 | 0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2 | refs/heads/main | 2023-08-30T22:07:41.314690 | 2021-10-14T19:23:51 | 2021-10-14T19:23:51 | 314,657,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321,324 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.02";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -2 0 0 0 0];
internalField nonuniform List<scalar>
38932
(
122.501
122.499
122.795
122.79
122.772
122.746
122.702
122.648
122.579
122.499
122.406
122.302
122.186
122.058
121.918
121.766
121.603
121.427
121.241
121.043
120.833
120.613
120.381
120.138
119.885
119.62
119.345
119.06
118.765
118.459
118.143
117.818
117.483
117.139
116.785
116.423
116.052
115.672
115.283
114.887
114.483
114.071
113.652
113.225
112.791
112.351
111.904
111.451
110.992
110.528
110.058
109.582
109.102
108.618
108.129
107.636
107.139
106.639
106.135
105.629
105.12
104.609
104.097
103.582
103.066
102.549
102.032
101.514
100.996
100.478
99.9611
99.4449
98.9299
98.4164
97.9048
97.3954
96.8884
96.3843
95.8833
95.3857
94.8919
94.4021
93.9167
93.436
92.9602
92.4898
92.0249
91.5659
91.113
90.6666
90.2269
89.7942
89.3688
88.9509
88.5408
88.1387
87.745
87.3597
86.9833
86.6158
86.2575
85.9086
85.5693
85.2398
84.9203
84.611
84.3119
84.0232
83.7451
83.4777
83.2211
82.9754
82.7406
82.5169
82.3044
82.1031
81.9133
81.7352
81.5695
81.417
81.2796
81.1614
81.0707
81.0274
81.076
81.3099
82.114
83.8081
89.9172
94.592
112.789
56.3109
64.9001
98.3759
94.934
91.166
86.2193
63.9787
60.8216
76.5724
84.2617
78.3023
68.7496
56.3956
52.2794
62.2992
73.0645
68.6059
57.3357
48.8188
45.9379
53.3318
64.8684
61.7387
50.2756
43.582
41.6622
47.8792
59.0963
56.8501
45.962
40.077
38.7579
44.4027
54.9206
53.2452
43.108
37.6439
36.6904
42.0177
51.7782
50.4783
41.0802
35.864
35.1391
40.2576
49.3138
48.2608
39.524
34.4943
33.9125
38.8603
47.3004
46.4175
38.2521
33.3807
32.8889
37.6885
45.5996
44.8372
37.1615
32.4292
31.9957
36.6651
44.1222
43.4485
36.1945
31.5836
31.1893
35.7463
42.8107
42.2048
35.3177
30.8099
30.4429
34.9062
41.6271
41.0746
34.5099
30.0864
29.7389
34.1272
40.5445
40.0347
33.7567
29.399
29.0655
33.397
39.5432
39.0682
33.0471
28.7375
28.414
32.706
38.6082
38.162
32.3728
28.0943
27.7776
32.0467
37.7283
37.3061
31.727
27.4634
27.1511
31.413
36.8944
36.4923
31.1042
26.84
26.5297
30.7999
36.0992
35.7143
30.4996
26.2197
25.9098
30.203
35.3371
34.967
29.9097
25.5993
25.2882
29.6193
34.6037
34.2468
29.3315
24.9759
24.6623
29.0461
33.8959
33.5508
28.7628
24.347
24.0297
28.4814
33.2112
32.877
28.2017
23.7103
23.3885
27.9236
32.5479
32.2238
27.6467
23.0641
22.7367
27.371
31.9046
31.5901
27.0962
22.4062
22.0723
26.8223
31.2801
30.9745
26.549
21.7348
21.3933
26.2761
30.6732
30.376
26.0034
21.0477
20.6976
25.7307
30.0829
29.7935
25.4579
20.3428
19.9829
25.1846
29.5079
29.2256
24.9106
19.6177
19.2469
24.6356
28.9467
28.6707
24.3594
18.8701
18.4872
24.0816
28.3975
28.1269
23.8019
18.0977
17.7015
23.5199
27.8585
27.5922
23.2355
17.2982
16.8877
22.9481
27.3275
27.0644
22.6576
16.4698
16.0443
22.3634
26.8025
26.5415
22.0653
15.6111
15.1702
21.763
26.2812
26.0214
21.4561
14.7216
14.2655
21.1445
25.7619
25.5022
20.8276
13.8021
13.332
20.5059
25.2427
24.9825
20.1783
12.8555
12.3737
19.8453
24.7217
24.4607
19.5071
11.8876
11.398
19.1626
24.1975
23.9347
18.8141
10.9075
10.4171
18.4595
23.6689
23.4032
18.1024
9.93042
9.44909
17.7405
23.1338
22.8616
17.3769
8.9775
8.52028
17.0147
22.5889
22.3108
16.6531
8.08037
7.66148
16.2918
22.0226
21.7232
15.9344
7.2694
6.90464
15.577
21.4026
21.0337
15.2033
6.56316
6.24562
14.809
20.6075
20.101
14.3851
5.94723
5.63922
13.8557
19.4264
18.644
13.3138
5.4342
5.3688
12.7395
17.7884
16.7978
12.066
5.23524
4.99678
11.2273
15.5716
14.0552
10.1708
4.63397
4.16238
8.90521
12.2739
10.3377
7.51135
3.61562
3.04534
6.1054
8.40373
6.64841
4.81902
2.51442
2.05651
3.73812
5.19498
4.09013
2.88424
1.74291
1.63766
2.44974
3.4202
3.10304
2.27743
1.62337
1.66174
2.22761
2.98175
2.95028
2.22252
1.71855
1.78919
2.26265
2.96577
3.01433
2.32129
1.85871
1.92293
2.38494
3.07629
3.13896
2.44716
1.97834
2.02314
2.50457
3.19816
3.24846
2.55215
2.05685
2.0747
2.58937
3.2884
3.31447
2.61293
2.08089
2.07803
2.62373
3.32714
3.33094
2.62714
2.06116
2.03074
2.61291
3.31303
3.27951
2.58627
1.98871
1.9344
2.54385
3.22702
3.15657
2.48739
1.86923
1.79322
2.41562
3.06715
2.95902
2.32884
1.70759
1.61266
2.22763
2.83253
2.68767
2.11158
1.50929
1.39859
1.98174
2.5254
2.34683
1.83926
1.2814
1.159
1.68493
2.15326
1.94701
1.52068
1.03269
0.903875
1.34874
1.73064
1.50692
1.17104
0.773897
0.643861
0.99108
1.27972
1.05222
0.810307
0.516255
0.39077
0.632762
0.829445
0.612137
0.457782
0.268905
0.155837
0.29192
0.407993
0.224235
0.144895
0.0683916
0.0323776
0.0616093
0.0957757
0.0390955
0.0277785
0.021021
0.0112676
0.0151092
0.0194419
0.0287488
0.044144
0.0737618
0.137959
0.229477
0.333257
0.434076
0.530569
0.615936
0.690519
0.753631
0.806734
0.839912
0.857663
0.854008
0.891647
0.839019
0.776354
0.693067
0.406207
0.332197
0.402002
0.401743
0.246406
0.180621
0.185202
0.164423
0.13071
0.0992062
0.0668583
0.0479012
0.0365376
0.026011
0.0158725
0.0169515
0.0143432
0.0181578
0.0283789
0.0527879
0.0829353
0.0545773
0.0315816
0.0179295
0.0170122
0.0248103
0.0355849
0.0634364
0.09359
0.127203
0.165708
0.127939
0.094689
0.0600693
0.0377025
0.0533714
0.0850326
0.124884
0.162397
0.202752
0.24004
0.196576
0.15456
0.109129
0.0697571
0.0858659
0.132585
0.18376
0.22968
0.275912
0.312876
0.263517
0.213266
0.155772
0.101665
0.117262
0.179532
0.243926
0.29903
0.351979
0.392798
0.336734
0.276371
0.204462
0.132466
0.147911
0.231259
0.311856
0.378053
0.438679
0.491171
0.424277
0.350822
0.260675
0.16263
0.179188
0.292933
0.393396
0.474686
0.548341
0.609733
0.528068
0.437934
0.325851
0.193818
0.209948
0.35975
0.483916
0.583833
0.674403
0.73631
0.636958
0.527259
0.390396
0.222364
0.236084
0.4188
0.567328
0.686568
0.795239
0.846709
0.72717
0.597302
0.437911
0.242721
0.245187
0.439716
0.610123
0.753829
0.888777
0.912081
0.756328
0.579567
0.384286
0.219526
0.210944
0.329281
0.531923
0.718211
0.904101
0.847488
0.637612
0.482955
0.326049
0.228848
0.240144
0.304323
0.453146
0.624884
0.788086
0.811391
0.592644
0.417997
0.399069
0.515823
0.491225
0.368597
0.428689
0.628345
0.870577
0.934647
0.675268
0.50942
0.631951
1.34447
1.5296
0.732474
0.590671
0.749324
1.02495
1.12884
0.850936
0.745011
1.05102
1.84573
1.5547
0.940485
0.745404
0.906473
1.21425
1.25452
0.925054
0.611295
0.436527
0.505578
0.498015
0.486925
0.708169
1.04681
1.38092
1.51004
1.17402
0.997202
1.09046
1.75759
1.69251
1.12087
1.07004
1.25377
1.61261
1.72876
1.38963
1.10698
1.10046
1.65744
1.06428
0.916567
1.11045
1.46542
1.83452
1.93236
1.54901
1.25118
1.29814
2.30228
2.53384
1.50156
1.43174
1.68309
2.07282
2.14268
1.7248
1.2946
1.03791
1.29029
1.5809
1.06138
1.36381
1.83637
2.28294
2.37718
1.93028
1.51189
1.21952
1.54269
1.35286
1.14385
1.54415
2.05229
2.51671
2.63666
2.16494
1.77686
1.43206
1.88022
1.98473
1.58471
1.90455
2.32229
2.80667
2.88924
2.37564
1.89984
1.40672
1.71878
2.33347
1.8017
2.1654
2.54399
3.06696
3.15069
2.58692
2.04255
1.47879
1.75118
2.43242
1.89298
2.3338
2.74898
3.33221
3.44436
2.82642
2.17497
1.56248
1.80653
2.48043
1.93246
2.50404
2.9665
3.63279
3.80233
3.19583
2.54813
2.03816
3.04708
2.34612
1.9284
2.61757
3.34019
3.97845
4.08523
3.39807
2.65261
1.91132
2.63404
3.68564
2.49315
3.13974
3.7123
4.36475
4.42531
3.69985
2.87521
2.04033
2.39285
2.95835
2.17397
3.06168
3.87953
4.64903
4.7872
4.02058
3.26751
2.39611
2.84816
2.68527
2.30017
3.26864
4.19149
4.99667
5.12932
4.2989
3.5288
2.54731
3.00148
3.4682
2.93034
3.86187
4.56593
5.40864
5.49492
4.57541
3.64428
2.56292
2.90149
3.90302
3.23804
4.33013
4.88808
5.80425
6.0074
5.08431
4.013
2.90571
3.97015
3.2906
2.89746
4.15392
5.20382
6.21642
6.43982
5.47402
4.4149
3.17561
4.35926
5.10537
3.68826
4.93965
5.89218
6.8106
6.83091
5.77908
4.54569
3.16683
3.7197
4.99515
3.6724
5.13271
6.14181
7.20466
7.36788
6.25543
5.12455
3.67746
4.31445
4.14583
3.48872
5.06706
6.44392
7.62245
7.83148
6.65407
5.56446
3.96117
4.55694
5.01141
4.35065
5.98028
7.01195
8.21573
8.31563
7.01914
5.59433
3.9044
4.51825
5.42021
4.65254
6.58955
7.4077
8.7151
9.10771
7.86392
6.41175
4.64224
6.42592
5.88296
4.55361
6.5515
8.1141
9.41719
9.48542
8.05988
6.40983
4.46319
5.33438
6.91364
5.23908
7.3871
8.62512
10.0196
10.2148
8.75591
7.40418
5.31976
6.28049
5.84371
5.04772
7.28213
9.00355
10.563
10.7248
9.09194
7.33281
5.1313
6.00747
6.79925
5.92845
8.54291
9.58673
11.2114
11.6932
10.1366
8.35487
5.98919
8.12748
8.06538
6.14557
8.75175
10.5525
12.1352
12.1321
10.3247
8.42971
5.96543
7.20706
7.2179
5.94113
8.57328
10.587
12.4664
12.8194
11.0233
9.61314
6.80581
7.83529
8.91556
7.81775
10.9666
11.9058
13.6074
13.8661
11.9715
9.75557
7.21541
10.3183
8.64274
6.37582
9.22036
11.6343
13.79
13.6258
11.2672
9.00828
6.51349
8.83672
8.3391
6.32075
9.00613
11.462
13.7086
14.1034
11.7179
9.47117
7.05691
11.0887
11.1306
7.65989
9.45952
11.8822
14.1556
16.4076
13.6586
11.0248
9.07812
11.7404
11.3374
10.7936
13.7012
17.1804
20.436
22.4357
19.2155
15.76
12.0932
10.8795
10.8467
13.8038
17.9507
21.4582
24.6769
26.6757
23.4435
19.8274
15.3689
11.0715
11.445
16.8305
21.5792
25.3316
28.6202
30.4981
27.1374
23.2132
18.0932
11.8205
12.2391
19.343
24.7765
28.8695
32.3062
33.9631
30.5071
26.279
20.5676
12.683
13.1532
21.8282
27.845
32.2603
35.8449
37.7336
33.9851
29.3486
22.9628
13.5987
14.1255
24.1254
30.9248
35.7953
39.7275
41.7927
37.6787
32.5737
25.4569
14.8799
15.7888
26.786
34.2634
39.5394
43.7209
45.6982
41.5143
36.1403
28.4762
16.6532
17.5315
30.2642
38.191
43.7364
48.0542
50.4743
46.0192
40.2848
32.0261
18.4097
19.2792
33.9008
42.3897
48.3232
52.9234
55.495
50.6484
44.4642
35.7367
20.0422
20.5925
37.2084
46.2634
52.7824
58.2708
59.2107
53.9477
47.3309
38.0142
21.0091
21.3121
38.6749
48.095
54.5471
59.301
61.4989
56.3458
49.6831
39.9884
22.0964
22.8343
41.7311
51.6968
58.5775
63.8879
66.3794
60.8861
53.7961
43.5987
23.616
24.3882
45.1871
55.8284
63.1788
68.8987
71.4307
65.4295
57.7691
46.787
25.3782
25.8986
47.9791
59.3733
67.4406
73.9411
75.9828
68.7955
60.4456
48.8861
26.5124
26.4759
49.0142
60.6456
68.8779
75.5012
74.0932
68.1898
60.2714
48.7441
26.4206
26.3472
48.5032
60.059
68.2196
75.0121
74.9613
68.3643
60.1018
48.3328
26.2828
26.2198
48.3453
60.1459
68.2369
74.2772
75.8675
69.2495
60.9211
48.9493
26.6783
27.1166
49.9241
62.2453
70.8353
77.641
79.2047
72.3323
63.6013
51.0641
27.8188
28.3679
52.2163
64.9604
73.8597
80.8847
82.6674
75.4804
66.3667
53.3817
29.0666
29.4606
54.5636
67.905
77.2623
84.6912
86.8985
78.8766
69.3119
55.7945
30.2543
30.4597
56.3768
70.0237
79.5751
87.1707
86.8708
79.8925
70.4172
56.5527
30.5039
31.2523
57.9167
72.1376
81.8608
89.4317
92.2583
84.5117
74.5266
59.9804
32.3348
33.2895
62.2565
77.1012
87.3191
95.2397
98.3452
90.1314
79.6263
64.3592
34.1182
34.746
65.8032
81.5056
92.4683
101.501
102.023
93.477
82.5077
66.5274
35.1941
35.2258
66.8852
83.174
93.9961
101.879
104.93
96.3351
85.0854
68.295
36.0808
37.4276
70.2694
87.6726
99.3483
108.323
111.796
102.542
90.4795
72.461
38.2765
39.2795
74.6945
93.1922
105.735
115.405
119.203
108.516
95.4871
76.5899
40.2211
40.5237
77.6946
96.8041
109.848
119.978
120.105
110.782
97.9854
78.6585
40.9091
41.8543
80.6105
100.569
113.829
123.906
128.238
117.792
104.039
83.3816
43.194
44.8723
86.4209
107.775
121.972
132.792
137.531
126.23
111.456
89.6273
46.4534
47.3484
91.9668
114.638
130.036
142.618
144.059
132.104
116.692
93.8746
48.2216
48.6671
95.5563
118.675
133.79
144.701
149.629
137.819
122.11
98.1657
49.8966
51.6877
101.792
126.682
143.014
155.276
161.383
148.461
131.358
105.578
53.5961
55.3838
109.058
135.494
153.371
167.885
170.134
156.353
138.503
111.564
56.5147
57.219
113.904
141.173
158.88
171.472
177.722
164.018
145.525
117.237
58.8015
61.0227
121.726
151.088
170.436
185.019
192.986
176.491
156.216
126.124
63.5529
64.5722
129.333
160.062
180.463
196.164
198.351
184.033
163.879
132.5
65.9899
68.3867
137.23
169.735
190.705
206.096
215.179
198.804
176.714
142.976
71.4033
73.8052
148.242
183.229
206.588
225.38
230.03
212.123
188.747
152.904
75.7866
78.0469
157.955
194.301
217.345
233.523
243.415
226.023
202.052
164.228
81.0213
84.329
171.563
211.319
236.729
255.194
268.641
247.322
220.303
179.243
89.0889
92.2874
186.351
228.186
255.266
275.83
281.432
262.799
236.023
193.34
96.045
100.443
201.842
245.821
274.067
294.3
310.301
286.599
256.637
210.948
105.088
109.54
219.893
266.609
296.876
319.687
327.405
306.751
276.722
228.628
112.835
117.696
237.937
288.807
320.864
343.282
363.439
336.514
301.812
247.18
121.065
128.409
257.198
314.239
350.08
376.429
387.723
363.27
327.091
268.586
134.925
142.381
281.009
341.628
380.126
409.49
425.597
396.735
357.209
294.848
150.601
160.52
310.819
374.484
414.3
440.6
467.987
436.434
394.335
328.286
170.883
182.893
347.98
416.148
459.207
490.17
511.002
483.639
440.62
370.064
195.829
211.543
395.837
469.283
514.518
546.435
578.382
547.57
501.983
425.665
229.711
252.09
460.826
539.195
583.375
607.734
652.496
626.378
581.874
501.826
279.057
301.43
545.893
627.196
670.04
695.412
730.797
709.351
670.457
595.166
344.042
371.463
625.429
699.984
738.702
760.102
786.488
763.973
720.318
637.375
380.097
387.124
652.435
742.697
788.519
811.627
840.357
819.557
771
670.416
385.086
401.965
702.888
805.175
850.705
870.411
894.19
874.871
832.387
739.928
436.453
465.688
760.653
848.953
890.209
909.103
919.789
901.713
863.1
779.732
493.182
513.349
797.398
872.941
910.008
927.219
928.818
911.295
873.245
791.33
508.015
494.176
749.288
852.451
899.358
921.189
904.093
874.286
816.871
696.11
472.983
446.701
644.574
779.205
847.257
882.322
860.822
818.695
747.028
614.828
423.888
400.029
571.15
711.635
790.6
836.933
809.594
756.913
673.732
531.206
374.45
348.49
492.614
640.193
729.198
785.092
754.552
692.692
599.744
449.985
320.208
294.543
415.789
569.793
668.391
733.32
703.575
637.213
539.53
385.673
269.856
249.998
376.014
522.992
619.834
687.736
659.637
593.395
500.994
363.704
232.018
217.136
353.62
485.528
578.323
646.534
620.587
552.48
464.588
341.335
204.981
193.391
323.907
438.242
519.673
576.59
567.688
505.693
424.74
313.603
183.258
176.816
307.497
410.904
487.703
548.253
544.897
482.093
404.82
305.121
172.441
167.546
300.242
394.24
466.892
528.321
496.178
446.306
380.987
294.692
163.389
158.6
287.415
372.85
438.95
493.499
480.472
425.606
362.571
280.486
154.139
149.176
270.21
349.116
407.949
453.253
451.61
401.64
341.047
260.696
143.846
139.051
253.687
331.626
390.121
441.096
417.056
375.034
320.252
245.031
134
129.998
239.735
314.636
370.286
416.146
407.591
363.385
309.746
237.97
127.117
126.155
238.362
309.022
363.75
410.352
403.558
357.233
304.902
237.237
125.037
123.523
233.823
298.364
346.503
384.669
385.993
344.483
295.33
231.436
121.793
120.956
229.134
291.071
338.534
380.604
363.978
329.042
284.72
224.814
118.832
117.658
222.799
282.321
327.455
365.574
361.134
321.941
277.806
219.227
116.095
114.26
215.348
271.964
313.456
346.334
347.943
311.964
269.251
212.55
112.696
111.12
209.054
265.29
307.301
344.309
330.682
299.446
259.74
205.127
109.056
107.315
202.62
257.52
298.264
332.43
329.39
294.035
253.956
200.137
106.196
103.932
195.991
248.881
287.091
316.869
318.804
286.338
247.433
195.256
102.957
102.07
192.979
244.308
282.558
316.407
304.789
276.221
239.844
189.966
100.771
99.7729
187.99
238.491
275.771
307.019
304.962
272.309
235.249
185.521
98.6592
96.6765
180.603
229.516
264.877
294.214
283.345
257.276
223.356
175.549
94.4061
92.6473
173.468
221.282
256.08
284.808
283.164
252.949
218.613
171.84
91.3766
90.0724
169.757
215.036
247.772
273.448
275.701
247.811
214.367
169.141
89.6915
89.2112
167.601
212.264
245.258
274.458
265.27
240.553
209.094
165.65
88.3045
87.5625
164.421
208.386
240.668
267.566
266.645
238.48
206.645
163.811
87.2544
86.235
161.193
203.62
234.1
257.904
260.215
234.274
203.128
160.762
85.7261
85.1743
159.442
201.309
232.094
259.336
250.962
227.912
198.481
157.475
84.1845
83.7121
156.894
197.953
228.084
253.179
252.409
226.12
196.273
155.537
83.2543
82.2335
153.443
193.457
222.002
244.349
246.49
222.155
192.887
152.896
81.7148
81.0955
151.555
191.238
220.297
245.846
238.071
216.324
188.41
149.225
80.1357
79.4866
148.665
187.897
216.408
240.112
239.438
214.493
186.261
147.753
78.9852
78.054
145.553
183.603
210.78
231.96
233.974
210.925
183.15
144.952
77.3576
76.8762
144.023
181.613
209.209
233.376
226.216
205.677
179.297
142.152
76.0272
75.3115
141.271
178.745
205.847
228.237
227.785
204.195
177.298
140.578
74.7947
73.8419
138.577
175.139
201.026
221.07
223.301
201.451
174.938
138.329
73.4101
73.3451
137.359
173.828
200.24
223.283
217.507
197.685
172.357
136.573
73.1455
73.3363
136.844
172.784
198.897
220.482
221.183
198.518
172.566
136.887
73.316
73.4996
136.898
172.394
197.536
217.169
221.524
200.258
174.384
138.43
73.8939
74.7187
140.082
175.906
202.024
224.943
222.934
202.888
177.604
141.727
75.7864
77.058
145.044
181.719
207.224
227.29
234.095
213.453
187.178
149.167
79.5319
81.9184
154.245
194.128
223.084
247.869
253.77
226.784
196.957
156.412
83.1926
83.6544
155.901
195.736
224.951
250.219
242.865
220.877
192.861
153.643
82.9904
82.9763
153.049
192.583
221.226
245.078
244.454
220.878
192.585
153.162
83.3846
83.9971
154.449
194.117
223.721
248.662
248.577
222.832
193.709
154.445
84.1736
84.3912
153.241
191.43
219.031
240.766
243.191
219.532
191.232
152.562
82.008
80.5999
151.228
189.612
217.762
242.543
234.585
213.525
186.502
148.558
78.8715
78.0521
147.779
185.999
213.773
236.696
235.947
211.956
184.486
146.94
77.7155
76.7844
144.788
181.604
207.827
228.251
230.323
208.066
181.113
144.012
76.1752
75.8113
143.194
179.706
206.403
229.702
222.39
202.507
176.945
140.891
74.9769
74.7064
140.615
176.717
202.92
224.56
224.15
201.512
175.572
140.048
74.3829
73.8677
138.294
173.142
197.901
217.175
219.357
198.348
172.943
137.884
73.6598
73.3523
136.939
171.67
196.981
219.024
212.23
193.477
169.309
135.265
72.7089
72.2305
134.656
169.044
193.888
214.36
213.929
192.508
167.872
133.904
71.984
71.5727
132.512
165.637
189.108
207.261
208.934
189.424
165.646
132.517
71.609
72.0275
132.706
165.629
189.019
208.172
211.416
191.22
166.824
133.525
72.4729
72.3927
133.273
166.447
190.439
211.325
205.007
187.271
164.361
132.042
71.9863
71.6016
131.71
164.3
187.734
207.009
206.582
186.408
163.106
130.878
71.2993
70.8801
129.151
160.906
183.199
200.297
201.816
183.391
160.742
128.949
70.7667
70.8921
128.927
160.632
182.931
201.04
204.033
184.946
161.718
129.658
71.2001
71.2088
129.544
161.234
184.087
203.84
197.749
180.942
159.123
128.074
70.8013
70.564
127.722
158.961
181.329
199.582
199.095
179.963
157.755
126.77
70.2482
69.8739
125.32
155.607
176.808
193.02
194.453
176.972
155.406
125.007
69.6942
69.8199
125.028
155.294
176.473
193.634
196.45
178.375
156.236
125.611
70.0889
70.0308
125.408
155.751
177.526
196.216
190.293
174.411
153.666
124.037
69.7456
69.4823
123.61
153.405
174.695
191.976
191.422
173.373
152.253
122.714
69.1669
68.6858
120.894
150.005
170.177
185.539
186.868
170.312
149.675
120.592
68.532
68.5068
120.481
149.497
169.65
185.898
188.508
171.302
150.193
120.967
68.7205
68.6499
120.744
149.616
170.324
188.093
182.34
167.304
147.637
119.463
68.3246
68.3103
119.199
147.451
167.501
183.668
182.717
166.966
147.41
119.349
68.5493
68.7269
119.752
148.039
168.49
185.233
184.817
167.58
147.413
119.336
68.6213
68.224
117.677
145.352
164.5
179.092
180.387
164.631
144.993
117.229
68.0206
67.8977
117.066
144.741
163.947
179.307
181.75
165.391
145.355
117.472
68.0465
68.0364
117.199
144.73
164.427
181.245
175.585
161.372
142.7
115.882
67.8196
67.7008
115.445
142.37
161.482
176.842
175.745
160.813
142.19
115.394
67.7878
67.9968
115.751
142.774
162.254
178.151
177.677
161.297
142.107
115.439
67.9709
67.5441
113.8
140.07
158.283
172.123
173.392
158.393
139.702
113.24
67.1887
67.253
113.356
139.569
157.802
172.352
174.713
159.216
140.168
113.683
67.3305
67.2668
113.336
139.513
158.276
174.214
168.71
155.221
137.428
111.794
67.0087
66.8112
111.235
137.015
155.289
169.919
168.728
154.55
136.711
111.065
66.8615
67.0232
111.299
137.121
155.766
170.995
170.436
154.82
136.474
110.749
66.8143
66.4003
108.938
134.256
151.704
164.909
166.105
151.737
133.814
108.41
66.1221
66.3048
108.5
133.587
151.089
164.928
167.025
152.347
134.476
109.428
66.6045
66.9623
109.783
134.682
152.083
165.995
168.391
153.569
135.389
110.36
67.3424
67.3302
110.091
134.92
152.713
167.833
162.438
149.622
132.74
108.328
67.0135
66.7602
107.798
132.286
149.719
163.685
162.459
148.988
131.992
107.621
66.6793
66.6448
107.755
132.356
150.184
164.671
164.069
149.241
131.751
107.119
66.4594
66.1671
105.67
129.591
146.163
158.738
159.923
146.254
129.142
105.153
65.9689
66.0233
104.991
128.875
145.53
158.677
160.725
146.677
129.597
105.774
66.4319
66.7376
106.127
129.76
146.365
159.582
161.875
147.743
130.333
106.405
66.9136
66.9185
106.255
129.869
146.873
161.289
155.999
143.804
127.693
104.299
66.6038
66.4244
103.77
127.138
143.817
157.155
155.884
143.112
126.883
103.505
66.2383
66.4942
104.249
127.569
144.273
157.952
156.788
143.939
127.759
104.676
66.8064
67.0183
105.112
128.308
145.308
159.103
158.495
144.454
127.798
104.727
67.0152
66.8099
103.174
125.814
141.455
153.319
154.492
141.488
125.25
102.493
66.6206
66.5651
102.208
124.915
140.74
153.165
155.168
141.769
125.441
102.619
66.7371
66.9907
103.03
125.582
141.387
153.913
156.199
142.663
126.026
103.262
67.0224
67.0188
102.922
125.567
141.873
155.609
150.481
138.87
123.524
101.209
66.7819
66.6173
100.674
123.018
138.965
151.716
150.383
138.254
122.758
100.649
66.7242
66.9489
101.164
123.373
139.324
152.45
151.215
138.991
123.565
101.657
67.2924
67.4171
101.952
124.03
140.253
153.475
152.881
139.449
123.56
101.607
67.444
67.2681
100.105
121.53
136.446
147.764
148.958
136.492
120.93
99.3217
67.0849
67.0055
99.0431
120.571
135.718
147.521
149.501
136.689
121.143
99.544
67.1291
67.2783
99.6387
121.154
136.284
148.212
150.372
137.508
121.872
100.368
67.6606
67.9323
100.764
122.11
137.147
149.018
151.262
138.377
122.579
101.165
68.1669
68.2846
100.818
122.069
137.543
150.578
145.482
134.502
120.039
99.1043
68.1281
67.95
98.2271
119.397
134.512
146.67
145.195
133.768
119.048
98.0951
67.9433
68.0066
98.3718
119.407
134.579
147.09
145.692
134.097
119.345
98.4964
68.2398
68.5083
99.0402
119.972
135.253
147.822
146.386
134.818
120.112
99.3818
68.6572
68.756
99.6636
120.503
135.981
148.574
147.878
135.163
120
99.2498
68.7834
68.6729
97.8824
118.01
132.12
142.841
144.015
132.139
117.432
96.8128
68.4903
68.5475
96.6673
117.048
131.383
142.519
144.466
132.181
117.281
96.7505
68.6518
68.9028
97.0619
117.355
131.756
143
145.155
132.838
117.97
97.657
69.1803
69.4193
97.9693
118.039
132.396
143.679
145.894
133.519
118.394
98.1657
69.5015
69.5819
97.7812
117.948
132.795
145.226
140.267
129.774
115.985
96.2387
69.47
69.2719
95.1352
115.388
129.875
141.57
140.044
129.162
115.05
95.0122
69.3177
69.482
95.489
115.517
130.051
142.083
140.666
129.632
115.517
95.6596
69.623
69.929
96.4078
116.24
130.849
142.902
141.452
130.445
116.349
96.7007
70.1312
70.3877
97.2105
116.83
131.577
143.685
143.065
130.873
116.324
96.6049
70.5026
70.4383
95.3314
114.431
127.891
138.143
139.443
127.946
113.827
94.4233
70.3477
70.3447
94.2438
113.489
127.229
137.853
139.888
128.03
113.763
94.3736
70.3659
70.5894
94.5236
113.716
127.589
138.351
140.58
128.71
114.43
95.1653
70.807
71.011
95.5664
114.573
128.358
139.111
141.363
129.505
115.273
96.1297
71.3521
71.6755
96.4771
115.402
129.087
139.819
142.037
130.208
115.776
96.7098
71.7952
71.9949
96.3323
115.351
129.517
141.415
136.617
126.638
113.538
95.0367
72.0122
71.9876
94.1749
112.946
126.71
137.963
136.312
126.008
112.633
93.9714
71.9735
72.1532
94.1919
112.963
126.841
138.408
136.858
126.414
112.967
94.3063
72.3301
72.6167
94.8859
113.57
127.511
139.11
137.555
127.116
113.705
95.2374
72.8735
72.9703
95.58
114.078
128.199
139.792
139.17
127.507
113.68
95.2006
73.1435
73.1286
93.7565
111.804
124.656
134.41
135.801
124.782
111.306
93.0333
73.1093
73.097
92.7977
110.976
124.048
134.124
136.238
124.848
111.231
92.9421
73.287
73.5077
93.1434
111.213
124.4
134.572
136.84
125.407
111.755
93.5918
73.7209
73.9789
93.825
111.809
124.98
135.202
137.509
126.081
112.423
94.3579
74.2465
74.5183
94.6465
112.521
125.644
135.806
138.065
126.64
112.839
95.05
74.6948
74.8863
94.6339
112.409
125.941
137.392
132.596
123.052
110.534
93.1548
74.9322
74.9279
92.1826
109.953
123.148
134.026
132.214
122.395
109.535
91.9067
74.9393
75.0484
92.0385
109.778
123.143
134.364
132.576
122.606
109.688
92.0886
75.1856
75.4731
92.4962
110.185
123.611
134.884
133.161
123.164
110.209
92.6946
75.6259
75.8981
93.2582
110.784
124.162
135.455
133.744
123.738
110.84
93.4937
76.1865
76.5386
94.0055
111.425
124.81
136.098
134.401
124.392
111.537
94.2947
76.8274
77.0038
94.7124
111.952
125.482
136.734
136.131
124.873
111.64
94.4698
77.2517
77.3377
93.4007
109.938
122.164
131.484
133.026
122.315
109.54
92.7154
77.4903
77.5276
92.3406
109.188
121.701
131.278
133.554
122.547
109.525
92.4773
77.7423
78.019
92.6538
109.513
122.115
131.847
134.272
123.231
110.176
93.128
78.2357
78.581
93.4125
110.208
122.825
132.583
135.046
123.97
110.871
93.8952
78.7838
79.1215
94.2619
111.015
123.566
133.329
135.666
124.609
111.342
94.6024
79.3268
79.5508
94.3404
110.993
124.005
135.071
130.507
121.349
109.375
93.4055
79.7057
79.8468
92.6751
108.972
121.526
132.066
130.238
120.882
108.658
92.3463
79.9475
80.1739
92.3925
108.931
121.689
132.516
130.745
121.249
108.893
92.4684
80.3712
80.6969
92.8878
109.458
122.289
133.168
131.404
121.898
109.503
93.1204
80.9428
81.2199
93.6665
110.094
122.966
133.904
132.125
122.584
110.229
93.9318
81.4772
81.6814
94.2341
110.492
123.551
134.455
133.855
122.97
110.161
94.0053
81.9298
82.099
93.1339
108.581
120.291
129.237
130.899
120.458
108.151
92.5164
82.2847
82.4396
92.2651
107.873
119.819
128.98
131.372
120.669
108.149
92.3107
82.6258
82.9492
92.4248
108.135
120.249
129.554
132.107
121.301
108.688
92.7749
83.1664
83.5311
93.0259
108.75
120.907
130.244
132.867
122.03
109.397
93.5134
83.736
84.0959
93.8045
109.461
121.612
131.004
133.416
122.626
109.826
94.1304
84.3082
84.5942
93.8562
109.464
122.074
132.836
128.235
119.419
107.929
93.1101
84.8043
85.1045
92.3703
107.457
119.595
129.985
128.031
118.984
107.169
92.0732
85.241
85.5261
92.1687
107.525
119.869
130.533
128.625
119.435
107.503
92.3001
85.7587
86.0614
92.6754
108.115
120.575
131.297
129.419
120.199
108.17
92.8857
86.3101
86.6563
93.3987
108.809
121.353
132.144
130.279
120.985
108.982
93.7242
86.9039
87.2143
94.1356
109.387
122.093
132.78
132.258
121.572
109.112
93.9871
87.4867
87.7717
93.4885
107.661
119.032
127.733
129.623
119.315
107.324
93.0072
88.0396
88.3489
92.6938
107.084
118.69
127.607
130.249
119.665
107.529
92.7849
88.6641
88.9954
92.8793
107.54
119.269
128.292
131.068
120.422
108.134
93.1884
89.2767
89.601
93.4695
108.254
120.054
129.127
131.945
121.201
108.849
93.9211
89.9035
90.2041
94.2424
109.001
120.833
130.005
132.517
121.887
109.42
94.7006
90.4759
90.7706
94.6065
109.083
121.396
131.992
127.388
118.781
107.499
94.1356
91.0808
91.4384
93.7111
107.107
119.009
129.322
127.222
118.438
106.916
93.2287
91.7684
92.1385
93.2495
107.319
119.326
129.864
127.837
118.933
107.326
93.2925
92.4836
92.8258
93.483
107.878
120.049
130.68
128.634
119.654
107.965
93.7251
93.1534
93.4799
94.0821
108.561
120.807
131.515
129.514
120.429
108.701
94.3773
93.8334
94.1279
94.7477
109.15
121.509
132.064
131.56
121.01
108.807
94.8672
94.4617
94.799
94.5505
107.094
118.422
126.981
128.989
118.679
106.835
94.2731
95.1997
95.572
93.8929
106.726
118.137
126.874
129.641
119.095
107.164
93.8835
95.9301
96.2457
93.9565
107.215
118.706
127.563
130.531
119.93
107.919
94.1923
96.5575
96.8405
94.428
107.995
119.557
128.496
131.528
120.842
108.701
94.8606
97.1683
97.4692
95.1635
108.937
120.514
129.521
132.267
121.674
109.397
95.5474
97.8512
98.2004
95.7608
109.094
121.243
131.818
127.387
118.852
107.648
95.6606
98.6522
99.0646
95.4696
107.512
119.207
129.552
127.423
118.698
107.45
95.2304
99.567
99.9227
95.3025
108.013
119.868
130.366
128.357
119.517
108.169
95.5114
100.275
100.627
95.7405
108.894
120.853
131.47
129.519
120.545
109.125
96.022
100.929
101.308
96.2826
109.605
121.755
132.339
131.941
121.379
109.374
96.7239
101.68
102.151
96.4974
107.99
119.061
127.516
129.772
119.45
107.908
96.3024
102.631
103.176
96.1085
107.843
118.986
127.66
130.63
120.156
108.424
96.2138
103.478
103.983
96.3734
108.567
119.843
128.648
131.787
121.166
109.276
96.6109
104.217
104.663
96.918
109.549
120.89
129.868
132.703
122.092
110.006
97.1054
105.05
105.67
97.3626
109.693
121.673
132.293
127.784
119.267
108.19
97.113
106.159
106.878
96.9344
108.076
119.645
130.044
127.859
119.147
107.979
96.6939
107.288
107.797
96.8224
108.619
120.346
130.837
128.836
120.015
108.738
96.9668
108.03
108.372
97.2588
109.507
121.408
132.028
130.092
121.132
109.747
97.545
108.646
109.023
97.8659
110.357
122.396
133.052
132.667
122.05
110.11
98.4019
109.545
110.041
98.3712
108.814
119.809
128.262
130.622
120.237
108.787
98.2641
110.764
111.282
98.0131
108.716
119.792
128.487
131.506
120.959
109.322
98.0804
111.817
112.183
98.1297
109.443
120.655
129.474
132.715
121.971
110.089
98.3719
112.666
113.048
98.5925
110.329
121.676
130.729
133.743
122.975
110.872
98.8267
113.471
114.058
99.4373
110.719
122.673
133.398
128.984
120.49
109.536
99.4892
114.591
115.306
99.4093
109.55
120.928
131.368
129.263
120.5
109.488
99.3146
115.816
116.425
99.49
110.185
121.805
132.367
130.435
121.535
110.384
99.7026
116.52
116.94
100.029
111.245
123.088
133.805
131.963
122.873
111.592
100.398
117.128
117.622
100.659
112.219
124.303
135.138
134.881
124.045
112.119
100.996
118.327
118.963
101.311
111.055
121.994
130.535
133.087
122.531
111.13
101.398
119.776
120.458
101.395
111.124
122.152
130.994
134.249
123.477
111.736
101.597
121.087
121.61
101.794
112.015
123.236
132.355
135.576
124.651
112.629
101.89
122.11
122.827
102.431
112.503
124.403
135.34
130.983
122.43
111.584
102.599
123.497
124.383
102.519
111.725
123.028
133.604
131.533
122.647
111.743
102.569
124.973
125.463
102.756
112.467
124.149
134.9
133.085
123.955
112.797
102.96
125.554
126.205
103.127
113.457
125.478
136.443
136.273
125.301
113.429
103.578
126.809
127.745
103.802
112.553
123.375
131.909
134.625
123.991
112.69
103.799
128.454
129.251
103.875
112.734
123.634
132.542
135.984
125.053
113.276
104.008
129.884
130.416
104.209
113.577
124.824
134.065
137.536
126.348
114.23
104.35
131.071
131.729
104.942
114.189
126.195
137.358
132.929
124.282
113.395
105.205
132.69
133.395
105.325
113.58
124.966
135.757
133.754
124.664
113.659
105.465
134.376
134.367
105.781
114.542
126.342
137.33
135.584
126.203
114.89
106.085
134.882
135.131
106.365
115.797
127.959
139.271
139.237
127.871
115.807
106.813
136.028
136.863
107.161
115.155
126.144
134.925
137.903
126.894
115.344
107.26
138.156
138.566
107.37
115.434
126.571
135.89
139.447
128.061
115.958
107.37
139.77
140.627
107.691
115.846
127.865
139.282
134.826
125.942
114.965
107.756
142.05
142.902
107.723
115.196
126.678
137.75
135.697
126.351
115.261
107.858
143.968
143.957
108.191
116.16
128.174
139.462
137.73
128.063
116.576
108.517
144.422
144.613
108.769
117.521
129.957
141.679
141.71
129.986
117.599
109.089
145.552
146.49
109.738
117.136
128.36
137.382
140.536
129.196
117.331
109.811
147.708
148.419
109.944
117.554
128.976
138.624
142.541
130.731
118.296
110.095
148.877
149.799
110.226
118.274
130.679
142.579
138.204
129.005
117.672
110.645
151.348
152.297
110.753
117.855
129.866
141.442
139.465
129.619
118.058
110.775
154.031
154.359
110.803
118.747
131.466
143.547
143.636
131.487
118.875
111.632
155.422
156.63
111.715
118.427
129.903
139.184
142.608
130.932
118.858
112.2
157.746
158.542
112.484
119.129
130.73
140.703
145.039
132.783
120.057
112.673
158.679
159.822
113.22
120.182
132.877
145.205
140.816
131.368
119.773
113.265
161.001
162.306
113.67
120.196
132.488
144.365
142.474
132.307
120.481
114.067
162.525
163.409
114.133
121.334
134.386
146.994
147.138
134.457
121.379
114.394
164.911
166.481
114.628
120.84
132.773
142.573
146.188
133.898
121.183
115.184
168.021
169.102
115.577
121.549
133.731
144.248
149.02
136.043
122.595
115.766
169.206
170.536
116.531
122.924
136.212
149.261
144.832
134.78
122.653
116.77
171.62
173.147
117.39
123.334
136.321
148.732
146.998
136.224
123.768
117.838
173.177
174.058
118.173
124.946
138.832
152.248
152.71
139.203
125.257
118.031
174.359
175.84
118.539
125.009
137.718
148.255
152.42
139.177
125.423
118.606
177.497
179.253
119.732
125.474
139.123
152.615
148.086
137.595
125.197
120.557
180.88
182.995
120.347
125.761
139.11
152.165
150.339
139.021
126.144
120.408
184.198
184.145
120.716
127.318
141.832
155.874
156.495
142.302
127.966
121.051
185.664
186.902
121.522
127.796
141.015
152.095
156.88
142.922
128.435
121.801
188.86
190.289
122.507
128.646
143.113
157.325
152.791
141.615
128.291
122.37
193.029
193.805
122.089
128.678
143.329
157.565
157.862
143.337
128.59
122.333
196.225
198.386
122.867
128.248
141.744
153.059
157.627
143.589
128.923
123.457
200.652
201.262
123.955
129.468
143.591
155.874
162.081
146.87
130.886
124.346
201.457
202.358
124.862
131.703
147.457
162.988
158.484
146.189
131.577
125.197
204.076
205.519
125.653
132.43
148.712
164.065
164.891
149.218
133.135
126.37
206.492
208.595
126.523
132.96
147.897
160.454
166.228
150.511
133.784
126.548
208.352
210.69
126.678
134.326
151.031
167.142
162.636
149.65
134.193
127.849
213.414
215.634
128.473
135.155
152.374
168.578
169.645
152.988
136.096
129.655
218.063
220.139
129.949
136.015
151.837
165.295
171.624
154.927
136.999
130.147
222.869
223.494
130.329
138.023
155.832
173.07
169.108
154.828
137.987
130.604
225.316
225.499
130.686
139.203
158.441
175.868
177.607
159.692
140.461
130.823
225.675
226.934
131.207
140.561
158.636
173.683
180.855
162.614
142.233
132.398
228.391
231.389
132.937
143.641
164.327
182.838
181.503
163.185
143.506
135.122
233.673
237.612
135.794
143.16
161.257
176.255
183.374
164.558
144.361
136.153
238.831
241.03
136.901
145.979
166.426
185.552
182.101
165.636
146.217
136.886
241.915
243.586
136.802
148.152
170.731
190.755
193.907
173.268
149.855
136.264
245.339
248.447
138.197
149.81
172.644
193.395
188.483
170.997
149.577
139.12
253.625
255.423
139.494
151.549
175.965
197.078
200.592
178.72
153.667
140.016
256.878
257.928
140.357
154.276
178.471
200.336
195.726
177.124
154.263
141.075
260.053
260.769
141.622
156.748
182.941
205.425
210.357
186.831
159.303
143.057
265.151
267.839
143.553
159.989
186.81
210.566
206.054
185.439
159.988
144.813
273.1
274.159
146.388
163.282
192.511
217.188
223.458
197.382
166.905
145.56
274.62
279.171
151.114
167.738
198.547
224.998
225.277
198.604
167.624
151.776
282.156
290.169
150.983
167.598
197.251
220.96
234.364
206.653
172.071
151.566
293.129
292.548
152.304
177.137
213.141
242.818
246.495
216.112
179.514
150.876
296.335
300.966
155.512
180.522
218.129
249.401
252.471
220.057
181.507
158.989
306.665
312.123
158.981
182.834
222.202
255.647
258.572
223.94
183.862
158.01
316.194
319.333
165.994
184.541
224.474
259.934
260.98
224.64
185.364
171.276
322.195
323.802
173.206
185.856
224.116
260.067
257.674
221.482
186.259
180.102
324.156
323.553
184.591
186.515
218.388
255.68
250.65
214.135
186.049
187.151
321.92
319.359
187.261
184.566
209.47
248.346
242.545
204.293
181.872
186.498
315.868
311.784
185.389
177.061
195.81
235.88
223.698
186.871
171.965
183.883
307.183
302.982
182.892
164.077
175.894
214.416
191.729
164.885
157.357
181.541
299.225
299.922
176.089
146.881
153.111
184.143
149.052
137.694
137.387
163.401
299.113
315.459
163.051
127.188
122.968
135.698
127.842
114.257
110.296
142.946
328.716
321.67
131.084
100.186
104.583
121.254
116.367
98.8635
94.3168
127.974
303.919
284.109
129.687
94.5126
95.9587
112.814
111.285
96.2661
96.6537
134.087
267.114
253.202
143.253
102.065
97.8223
111.708
113.204
101.741
111.661
157.325
242.654
234.414
171.483
123.471
107.918
116.358
121.932
116.442
138.637
185.223
229.254
226.414
198.967
154.661
126.847
128.998
137.665
139.516
170.923
211.894
224.97
224.231
221.697
186.238
153.078
147.166
157.984
167.612
201.138
230.003
224.3
224.569
235.912
213.226
181.534
169.071
180.689
195.166
223.917
241.282
225.18
225.674
244.497
232.458
207.234
191.94
203.124
218.368
239.563
247.079
226.165
226.571
248.846
245.235
227.829
213.427
223.271
236.336
250.083
250.333
226.974
227.253
251.065
253.525
243.28
231.95
239.921
249.35
256.504
251.628
227.52
227.741
251.867
258.735
254.252
246.773
252.962
258.558
260.599
252.089
227.93
228.074
252.136
261.981
262.023
258.228
262.966
265.065
263.174
252.092
228.221
228.334
251.97
264.034
267.511
266.936
270.435
269.583
264.691
251.767
228.412
228.444
251.497
265.118
271.168
273.271
275.698
272.389
265.224
251.044
228.416
228.336
250.484
265.128
273.131
277.472
278.886
273.613
264.871
249.859
228.208
228.03
249.098
264.33
273.673
279.812
280.443
273.564
263.652
248.252
227.802
227.536
247.369
262.888
273.272
280.789
280.887
272.783
262.046
246.47
227.241
226.912
245.533
261.1
272.153
280.804
280.597
271.447
260.114
244.552
226.541
226.142
243.551
259.073
270.629
280.199
279.68
269.737
257.978
242.533
225.715
225.255
241.453
256.814
268.728
279.017
278.259
267.677
255.644
240.389
224.785
224.3
239.313
254.441
266.56
277.408
276.571
265.487
253.294
238.29
223.819
223.329
237.273
252.139
264.381
275.663
274.796
263.334
251.059
236.315
222.845
222.366
235.35
249.987
262.26
273.888
273.027
261.26
248.968
234.465
221.887
221.4
233.563
247.929
260.223
272.112
271.242
259.246
246.957
232.719
220.926
220.446
231.852
245.954
258.224
270.309
269.445
257.28
245.022
231.059
219.987
219.516
230.26
244.067
256.311
268.529
267.712
255.425
243.234
229.508
219.088
218.649
228.765
242.36
254.52
266.848
266.087
253.716
241.584
228.098
218.234
217.816
227.408
240.782
252.876
265.277
264.561
252.128
240.063
226.786
217.417
217.015
226.134
239.303
251.329
263.782
263.091
250.616
238.622
225.546
216.633
216.247
224.92
237.892
249.843
262.33
261.66
249.16
237.244
224.362
215.882
215.512
223.766
236.55
248.418
260.919
260.278
247.772
235.934
223.246
215.169
214.812
222.697
235.275
247.078
259.571
258.97
246.47
234.721
222.196
214.495
214.156
221.689
234.094
245.818
258.298
257.733
245.255
233.574
221.228
213.848
213.54
220.719
233.003
244.623
257.094
256.548
244.085
232.499
220.29
213.243
212.938
219.812
231.935
243.474
255.919
255.384
242.95
231.449
219.395
212.654
212.359
218.926
230.898
242.35
254.761
254.23
241.834
230.419
218.523
212.085
211.795
218.077
229.87
241.247
253.611
253.093
240.747
229.415
217.685
211.534
211.262
217.247
228.896
240.175
252.491
251.99
239.695
228.458
216.875
211.011
210.752
216.461
227.962
239.146
251.408
250.929
238.69
227.552
216.108
210.512
210.269
215.705
227.081
238.157
250.368
249.902
237.722
226.677
215.376
210.031
209.794
214.985
226.221
237.202
249.351
248.889
236.771
225.822
214.662
209.562
209.332
214.28
225.381
236.26
248.345
247.875
235.818
224.98
213.947
209.107
208.881
213.59
224.545
235.324
247.337
246.862
234.876
224.142
213.255
208.661
208.444
212.918
223.731
234.403
246.342
245.861
233.951
223.321
212.583
208.23
208.018
212.275
222.937
233.515
245.372
244.882
233.056
222.54
211.942
207.815
207.607
211.644
222.172
232.652
244.44
243.952
232.213
221.804
211.336
207.413
207.209
211.039
221.424
231.797
243.5
243.043
231.387
221.076
210.748
207.017
206.827
210.437
220.702
230.951
242.566
242.119
230.547
220.343
210.156
206.632
206.442
209.844
219.98
230.125
241.667
241.227
229.737
219.646
209.577
206.259
206.075
209.288
219.282
229.31
240.749
240.329
228.923
218.941
209.008
205.892
205.716
208.744
218.608
228.526
239.876
239.446
228.13
218.258
208.458
205.534
205.366
208.219
217.959
227.77
239.028
238.576
227.355
217.596
207.931
205.186
205.017
207.706
217.313
227.03
238.204
237.738
226.615
216.969
207.425
204.847
204.681
207.201
216.679
226.287
237.366
236.91
225.886
216.343
206.934
204.513
204.351
206.695
216.05
225.548
236.534
236.095
225.167
215.735
206.448
204.19
204.027
206.199
215.429
224.817
235.71
235.3
224.468
215.144
205.976
203.874
203.71
205.718
214.824
224.1
234.898
234.527
223.787
214.567
205.515
203.564
203.404
205.259
214.242
223.404
234.094
233.756
223.106
213.994
205.058
203.259
203.105
204.804
213.681
222.73
233.33
232.997
222.442
213.434
204.617
202.959
202.809
204.365
213.131
222.072
232.577
232.25
221.788
212.893
204.18
202.67
202.518
203.939
212.588
221.424
231.833
231.51
221.145
212.354
203.759
202.383
202.231
203.525
212.053
220.79
231.099
230.783
220.514
211.83
203.341
202.102
201.953
203.117
211.533
220.166
230.38
230.071
219.9
211.314
202.942
201.824
201.682
202.718
211.029
219.558
229.676
229.376
219.3
210.818
202.548
201.555
201.419
202.323
210.542
218.962
228.988
228.693
218.71
210.334
202.163
201.295
201.157
201.946
210.059
218.38
228.311
228.021
218.132
209.854
201.789
201.035
200.896
201.578
209.582
217.808
227.643
227.358
217.562
209.385
201.417
200.779
200.643
201.214
209.114
217.244
226.984
226.704
217.004
208.919
201.058
200.526
200.396
200.855
208.661
216.691
226.339
226.062
216.455
208.467
200.702
200.28
200.153
200.508
208.217
216.151
225.706
225.432
215.917
208.026
200.353
200.038
199.919
200.166
207.79
215.622
225.087
224.811
215.386
207.589
200.013
199.8
199.686
199.838
207.372
215.108
224.481
224.198
214.861
207.163
199.672
199.568
199.456
199.518
206.961
214.607
223.888
223.592
214.345
206.74
199.342
199.338
199.23
199.202
206.56
214.116
223.309
222.993
213.839
206.328
199.024
199.113
199.002
198.888
206.154
213.633
222.745
222.422
213.363
205.944
198.721
198.893
198.782
198.579
205.756
213.145
222.168
221.864
212.896
205.561
198.427
198.676
198.566
198.27
205.364
212.662
221.597
221.32
212.436
205.184
198.13
198.462
198.353
197.972
204.982
212.189
221.029
220.768
211.968
204.807
197.833
198.251
198.142
197.665
204.602
211.726
220.495
220.246
211.532
204.449
197.552
198.042
197.938
197.385
204.24
211.27
219.942
219.718
211.084
204.084
197.268
197.838
197.734
197.103
203.884
210.831
219.421
219.198
210.644
203.731
196.983
197.637
197.534
196.834
203.537
210.404
218.91
218.685
210.213
203.381
196.709
197.437
197.338
196.569
203.2
209.986
218.409
218.18
209.789
203.036
196.438
197.24
197.144
196.31
202.871
209.578
217.919
217.68
209.37
202.696
196.174
197.046
196.95
196.056
202.542
209.179
217.44
217.186
208.961
202.37
195.917
196.856
196.758
195.796
202.213
208.781
216.974
216.72
208.581
202.06
195.678
196.668
196.572
195.543
201.892
208.38
216.491
216.266
208.201
201.751
195.432
196.483
196.39
195.301
201.581
207.987
216.01
215.802
207.808
201.431
195.179
196.299
196.207
195.057
201.274
207.61
215.559
215.343
207.424
201.12
194.933
196.115
196.026
194.819
200.974
207.241
215.117
214.891
207.051
200.823
194.698
195.937
195.849
194.576
200.677
206.874
214.687
214.466
206.702
200.538
194.476
195.761
195.673
194.353
200.384
206.511
214.237
214.032
206.341
200.253
194.249
195.59
195.499
194.113
200.092
206.151
213.818
213.625
206.006
199.977
194.031
195.418
195.328
193.897
199.808
205.797
213.379
213.21
205.657
199.698
193.805
195.249
195.161
193.671
199.532
205.452
212.967
212.8
205.317
199.421
193.587
195.08
194.994
193.456
199.261
205.117
212.562
212.396
204.983
199.149
193.372
194.913
194.827
193.248
198.994
204.79
212.165
211.999
204.653
198.883
193.158
194.749
194.665
193.042
198.735
204.468
211.775
211.607
204.327
198.619
192.947
194.586
194.505
192.84
198.482
204.153
211.392
211.219
204.006
198.359
192.738
194.425
194.348
192.642
198.235
203.846
211.018
210.835
203.687
198.1
192.531
194.266
194.192
192.448
197.993
203.545
210.653
210.455
203.371
197.845
192.327
194.108
194.038
192.255
197.753
203.251
210.295
210.079
203.062
197.599
192.13
193.954
193.884
192.053
197.513
202.956
209.949
209.723
202.775
197.367
191.948
193.803
193.73
191.865
197.27
202.658
209.586
209.376
202.491
197.139
191.762
193.654
193.579
191.672
197.03
202.361
209.226
209.037
202.209
196.909
191.575
193.504
193.431
191.486
196.797
202.069
208.866
208.686
201.918
196.676
191.386
193.356
193.282
191.29
196.564
201.785
208.535
208.36
201.651
196.455
191.21
193.209
193.135
191.113
196.337
201.504
208.183
208.023
201.373
196.236
191.03
193.064
192.989
190.922
196.11
201.226
207.86
207.71
201.117
196.024
190.86
192.921
192.845
190.752
195.891
200.952
207.515
207.388
200.848
195.807
190.682
192.779
192.702
190.575
195.674
200.687
207.196
207.07
200.586
195.593
190.507
192.636
192.561
190.402
195.463
200.428
206.881
206.758
200.328
195.384
190.336
192.496
192.422
190.233
195.256
200.173
206.571
206.449
200.075
195.178
190.168
192.358
192.284
190.066
195.052
199.921
206.265
206.146
199.825
194.975
190.002
192.221
192.148
189.901
194.85
199.674
205.964
205.847
199.579
194.774
189.837
192.085
192.013
189.738
194.651
199.429
205.667
205.552
199.336
194.576
189.675
191.95
191.878
189.576
194.455
199.188
205.375
205.261
199.096
194.381
189.514
191.816
191.746
189.417
194.261
198.95
205.086
204.974
198.859
194.188
189.355
191.684
191.614
189.258
194.07
198.716
204.801
204.691
198.626
193.997
189.197
191.553
191.483
189.102
193.881
198.484
204.521
204.412
198.396
193.81
189.042
191.423
191.354
188.948
193.694
198.256
204.244
204.136
198.169
193.624
188.888
191.294
191.226
188.795
193.51
198.031
203.971
203.865
197.946
193.441
188.737
191.166
191.098
188.644
193.328
197.809
203.701
203.598
197.726
193.261
188.587
191.04
190.972
188.495
193.149
197.59
203.436
203.334
197.508
193.082
188.438
190.914
190.847
188.347
192.972
197.375
203.174
203.074
197.293
192.906
188.291
190.789
190.723
188.202
192.797
197.161
202.916
202.818
197.082
192.733
188.144
190.665
190.602
188.056
192.627
196.951
202.662
202.563
196.871
192.558
188.001
190.544
190.481
187.912
192.455
196.741
202.409
202.312
196.665
192.388
187.86
190.423
190.357
187.772
192.284
196.538
202.16
202.067
196.462
192.224
187.717
190.299
190.238
187.633
192.122
196.337
201.918
201.823
196.261
192.056
187.58
190.182
190.121
187.493
191.957
196.136
201.675
201.583
196.063
191.892
187.441
190.064
190.003
187.356
191.795
195.94
201.437
201.345
195.867
191.731
187.305
189.946
189.886
187.221
191.634
195.745
201.202
201.111
195.673
191.571
187.17
189.829
189.77
187.087
191.476
195.553
200.969
200.881
195.483
191.413
187.037
189.713
189.654
186.954
191.319
195.364
200.74
200.653
195.294
191.257
186.904
189.598
189.54
186.823
191.164
195.177
200.514
200.428
195.108
191.103
186.773
189.485
189.427
186.692
191.011
194.992
200.291
200.205
194.924
190.95
186.643
189.371
189.314
186.563
190.859
194.81
200.07
199.986
194.743
190.799
186.515
189.259
189.202
186.435
190.709
194.629
199.852
199.769
194.563
190.65
186.387
189.148
189.091
186.309
190.561
194.451
199.637
199.555
194.386
190.502
186.261
189.037
188.981
186.183
190.414
194.275
199.424
199.344
194.21
190.356
186.135
188.927
188.871
186.059
190.269
194.101
199.214
199.135
194.037
190.211
186.011
188.818
188.762
185.935
190.126
193.929
199.007
198.929
193.866
190.068
185.888
188.709
188.654
185.813
189.983
193.759
198.802
198.725
193.697
189.927
185.766
188.602
188.547
185.691
189.843
193.59
198.599
198.523
193.529
189.786
185.645
188.495
188.441
185.571
189.703
193.424
198.399
198.324
193.364
189.648
185.526
188.389
188.336
185.452
189.565
193.26
198.201
198.127
193.2
189.51
185.407
188.284
188.231
185.334
189.429
193.097
198.006
197.933
193.038
189.374
185.289
188.181
188.128
185.217
189.294
192.936
197.812
197.74
192.878
189.24
185.173
188.078
188.026
185.101
189.16
192.777
197.621
197.55
192.719
189.107
185.057
187.976
187.924
184.987
189.028
192.62
197.432
197.362
192.563
188.975
184.943
187.875
187.825
184.873
188.896
192.464
197.245
197.176
192.408
188.844
184.83
187.776
187.726
184.76
188.766
192.31
197.06
196.992
192.254
188.715
184.718
187.678
187.628
184.649
188.638
192.157
196.877
196.81
192.102
188.587
184.607
187.581
187.532
184.539
188.51
192.005
196.696
196.629
191.951
188.46
184.497
187.485
187.437
184.43
188.385
191.856
196.517
196.451
191.802
188.334
184.388
187.391
187.344
184.322
188.26
191.708
196.339
196.274
191.655
188.21
184.281
187.299
187.252
184.215
188.136
191.561
196.164
196.1
191.509
188.087
184.175
187.208
187.163
184.11
188.014
191.416
195.99
195.927
191.365
187.966
184.071
187.12
187.075
184.006
187.893
191.273
195.818
195.756
191.222
187.846
183.968
187.033
186.989
183.904
187.774
191.131
195.648
195.586
191.08
187.727
183.866
186.948
186.905
183.803
187.656
190.99
195.48
195.419
190.941
187.61
183.766
186.865
186.822
183.704
187.539
190.852
195.314
195.253
190.802
187.494
183.667
186.783
186.741
183.606
187.424
190.714
195.149
195.089
190.666
187.38
183.57
186.703
186.662
183.51
187.311
190.579
194.986
194.926
190.53
187.267
183.474
186.624
186.584
183.415
187.199
190.445
194.825
194.766
190.397
187.156
183.38
186.548
186.508
183.322
187.09
190.313
194.667
194.607
190.264
187.047
183.286
186.474
186.435
183.232
186.981
190.184
194.51
194.449
190.132
186.937
183.195
186.401
186.363
183.146
186.874
190.057
194.356
194.292
190.002
186.829
183.106
186.33
186.296
183.06
186.772
189.932
194.204
194.136
189.873
186.721
183.017
186.264
186.233
182.977
186.671
189.809
194.054
193.981
189.744
186.615
182.93
186.201
186.174
182.897
186.572
189.687
193.907
193.827
189.616
186.511
182.847
186.145
186.121
182.816
186.475
189.567
193.761
193.673
189.489
186.409
182.767
186.094
186.074
182.74
186.377
189.447
193.616
193.52
189.365
186.31
182.691
186.049
186.033
182.666
186.28
189.328
193.476
193.373
189.247
186.217
182.621
186.013
186.002
182.598
186.187
189.209
193.328
193.227
189.13
186.127
182.557
185.989
185.982
182.532
186.09
189.087
193.181
193.092
189.02
186.04
182.496
185.977
185.979
182.474
186.002
188.965
193.021
192.943
188.897
185.946
182.435
185.982
185.993
182.415
185.914
188.852
192.88
192.791
188.778
185.856
182.38
186.006
186.033
182.363
185.829
188.736
192.735
192.635
188.657
185.773
182.336
186.063
186.105
182.324
185.74
188.618
192.587
192.483
188.545
185.693
182.305
186.154
186.223
182.287
185.656
188.491
192.416
192.304
188.41
185.602
182.282
186.301
186.405
182.265
185.568
188.357
192.248
192.117
188.273
185.509
182.272
186.529
186.695
182.257
185.478
188.207
192.048
191.907
188.121
185.41
182.282
186.897
187.181
182.268
185.378
188.023
191.795
191.64
187.935
185.286
182.325
187.539
188.11
182.283
185.254
187.769
191.448
191.227
187.645
185.214
182.436
188.882
190.749
182.428
185.06
187.273
190.623
182.659
180.143
178.464
178.448
189.583
195.263
196.632
189.983
189.495
193.751
192.743
188.829
188.438
186.131
185.238
175.178
180.207
185.899
187.794
192.271
191.869
186.526
182.573
174.444
169.66
165.998
170.162
180.121
185.971
191.995
191.237
185.045
178.13
167.127
163.387
161.292
164.731
176.237
184.229
191.017
190.941
183.821
174.98
162.999
159.566
158.146
161.479
173.656
183.16
190.772
191.061
183.159
173.123
160.437
156.99
156.157
160.016
173.192
183.606
191.551
192.256
184.264
173.579
160.106
155.509
155.128
160.402
174.245
184.97
192.901
193.638
185.68
174.838
160.766
154.833
154.714
161.273
175.574
186.396
194.332
194.911
186.873
176.018
161.715
154.631
154.646
162.054
176.331
187.202
195.347
194.913
186.103
174.835
161.101
154.683
154.917
160.541
174.347
185.323
194.046
172.89
164.639
157.669
151.994
155.89
177.938
194.316
204.154
211.792
219.269
227.904
236.505
246.58
256.426
265.612
274.167
282.819
291.099
298.175
304.764
311.241
315.874
321.248
326.036
330.324
335.15
340.444
344.726
347.952
350.096
351.257
351.532
351.03
349.843
348.06
345.755
342.998
339.849
336.363
332.59
328.577
324.364
319.991
315.492
310.9
306.246
301.558
296.864
292.189
287.558
282.995
278.521
274.16
269.932
265.859
261.96
258.256
254.765
251.504
248.487
245.731
243.243
241.057
239.177
237.665
236.509
235.719
235.244
235.024
235.021
235.016
235.009
235.003
234.994
234.984
234.971
234.958
234.943
234.927
234.909
234.89
234.87
234.848
234.825
234.801
234.775
234.749
234.721
234.692
234.662
234.63
234.598
234.565
234.53
234.495
234.459
234.422
234.383
234.345
234.305
234.264
234.223
234.181
234.139
234.096
234.052
234.008
233.963
233.918
233.872
233.826
233.779
233.732
233.685
233.638
233.59
233.542
233.494
233.445
233.397
233.348
233.299
233.249
233.2
233.15
233.099
233.049
232.997
232.945
232.893
232.84
232.785
232.729
232.672
232.614
232.553
232.489
232.423
232.354
232.281
232.204
232.122
232.034
231.94
231.838
231.728
231.609
231.479
231.338
231.183
231.014
230.828
230.625
230.401
230.156
229.888
229.593
229.27
228.917
228.532
228.111
227.653
227.154
226.614
226.029
225.397
224.715
223.983
223.198
222.357
221.461
220.507
219.495
218.423
217.293
216.102
214.853
213.545
212.179
210.756
209.279
207.749
206.168
204.539
202.863
201.146
199.389
197.596
195.77
193.915
192.035
190.132
188.211
186.275
184.329
182.376
180.418
178.46
176.505
174.557
172.617
170.689
168.775
166.878
165.001
163.146
161.314
159.508
157.728
155.978
154.257
152.567
150.909
149.285
147.694
146.138
144.616
143.13
141.68
140.265
138.886
137.543
136.237
134.965
133.73
132.529
131.364
130.233
129.137
128.074
127.045
126.049
125.085
124.153
123.253
122.383
121.544
120.734
119.953
119.201
118.476
117.779
117.109
116.464
115.846
115.252
114.682
114.137
113.615
113.115
112.638
112.182
111.748
111.334
110.94
110.566
110.212
109.876
109.558
109.258
108.976
108.711
108.462
108.23
108.013
107.813
107.627
107.456
107.3
107.158
107.029
106.915
106.813
106.725
106.649
106.586
106.534
106.495
106.468
106.453
106.448
106.453
106.469
106.496
106.533
106.581
106.638
106.706
106.782
106.868
106.964
107.068
107.181
107.303
107.433
107.573
107.72
107.876
108.039
108.211
108.391
108.579
108.774
108.977
109.188
109.406
109.632
109.865
110.105
110.352
110.607
110.868
111.137
111.412
111.693
111.981
112.275
112.574
112.88
113.191
113.507
113.828
114.154
114.484
114.817
115.155
115.495
115.839
116.185
116.533
116.883
117.234
117.586
117.939
118.293
118.647
119.001
119.355
119.71
120.066
120.424
120.783
121.146
121.504
121.855
122.189
122.189
122.177
122.147
122.102
122.045
121.977
121.897
121.806
121.703
121.588
121.461
121.323
121.173
121.011
120.838
120.653
120.457
120.25
120.031
119.802
119.562
119.31
119.049
118.777
118.494
118.201
117.899
117.586
117.264
116.932
116.591
116.241
115.882
115.514
115.138
114.753
114.36
113.96
113.551
113.136
112.713
112.283
111.846
111.403
110.954
110.499
110.038
109.572
109.1
108.624
108.143
107.658
107.168
106.675
106.179
105.679
105.176
104.671
104.163
103.653
103.142
102.629
102.115
101.601
101.086
100.57
100.055
99.5407
99.0268
98.514
98.0026
97.4929
96.9853
96.48
95.9773
95.4777
94.9813
94.4885
93.9997
93.515
93.0349
92.5596
92.0894
91.6247
91.1657
90.7126
90.2659
89.8258
89.3926
88.9665
88.5478
88.1368
87.7337
87.3388
86.9523
86.5746
86.2057
85.846
85.4956
85.1547
84.8237
84.5025
84.1915
83.8907
83.6004
83.3206
83.0516
82.7933
82.5461
82.3098
82.0849
81.8713
81.6694
81.4797
81.303
81.1409
80.996
80.8736
80.7835
80.7444
80.7928
80.9997
81.5031
82.5804
84.6915
88.8078
86.2813
83.5937
80.9133
78.3157
75.8769
73.5976
71.4707
69.4962
67.6644
65.969
64.3992
62.943
61.5904
60.3315
59.1569
58.058
57.0265
56.0554
55.1383
54.2694
53.444
52.6577
51.9065
51.1872
50.4965
49.832
49.1912
48.5721
47.9729
47.3918
46.8276
46.2788
45.7445
45.2235
44.715
44.2182
43.7325
43.2572
42.7919
42.3362
41.8897
41.4521
41.0233
40.6029
40.1909
39.7872
39.3916
39.004
38.6244
38.2526
37.8887
37.5325
37.1841
36.8433
36.51
36.1843
35.866
35.555
35.2512
34.9545
34.6648
34.3822
34.1063
33.8376
33.5755
33.3201
33.072
32.8307
32.5967
32.3697
32.1503
31.9384
31.7342
31.5384
31.3497
31.1703
30.9975
30.8336
30.675
30.5205
30.3725
30.2221
30.0609
29.8809
29.6668
29.3788
29.0001
28.48
27.7084
26.6905
25.486
24.0787
22.3387
20.1705
17.6229
14.8707
12.1307
9.65405
7.62345
6.1102
5.08873
4.49117
4.20164
4.08274
4.05045
4.05843
4.10166
4.1541
4.20873
4.25829
4.2983
4.32272
4.33292
4.33382
4.30729
4.26137
4.19264
4.10112
3.98595
3.84719
3.68513
3.50004
3.29286
3.06491
2.81791
2.55461
2.27809
1.99214
1.70148
1.41119
1.12753
0.854099
0.598557
0.364991
0.169473
0.0606223
0.116412
0.24046
0.533625
0.322409
0.57813
0.834678
1.17484
0.863468
1.17453
1.54546
1.93586
1.50534
1.84892
2.33783
2.87952
2.41715
1.96386
1.52951
1.12831
0.772718
0.423542
0.617377
1.02567
1.44168
1.75905
1.28189
0.814046
1.00918
1.5328
2.06915
2.65912
2.28671
1.90643
2.40533
2.92114
3.44457
4.01035
3.4262
2.84875
3.2827
3.92155
4.56815
5.22028
4.59783
3.9701
3.34504
2.74475
2.19903
2.5496
3.15056
3.54913
2.8942
3.22739
3.93486
4.30338
3.54479
3.84286
4.65074
4.97392
4.11849
4.36965
5.26978
6.25277
5.90512
5.52878
5.12709
4.70363
4.26238
3.80777
4.49298
5.00802
5.51064
6.33697
5.76558
5.18435
5.87554
6.52976
7.17828
7.81583
6.89379
5.99635
6.46087
6.89994
7.30926
8.4259
7.94368
7.43111
8.43656
9.03395
9.60084
10.8376
10.1737
9.4793
8.76402
8.03551
7.30072
6.56571
5.83571
5.11393
4.402
3.70119
3.01619
2.36523
1.77238
1.1984
1.37723
1.99709
2.64356
2.89892
2.20302
1.54156
1.68568
2.38517
3.12478
3.93923
3.66332
3.35292
4.09872
4.86277
5.64284
6.14706
5.2962
4.46805
4.80032
5.69227
6.6154
7.03265
6.03757
5.08333
4.16949
3.31166
2.53602
1.80308
1.88891
2.64093
3.44136
3.49508
2.68499
1.93033
1.93755
2.68615
3.49368
4.43117
4.41759
4.33821
5.30133
6.31476
7.37916
7.62239
6.48935
5.42078
5.45555
6.55413
7.72814
8.98636
8.82098
8.49677
8.07112
7.57184
7.02194
6.43902
7.25053
8.07426
8.90442
9.77403
8.84025
7.92075
8.56215
9.58286
10.6269
11.686
10.7143
9.73408
10.5554
11.3587
12.1338
13.4773
12.5775
11.6525
12.7509
13.8098
14.8496
16.2219
15.0267
13.8224
12.6224
11.4384
10.2797
9.15475
9.67259
10.9015
12.1762
12.8003
11.4127
10.0841
10.3259
11.7475
13.2474
14.8169
14.2383
13.4881
14.8296
16.1887
17.5533
18.7898
17.2451
15.724
16.444
18.1274
19.8578
21.6238
20.3453
18.9087
17.3932
15.8565
14.3392
12.8686
11.4623
10.1296
8.87184
7.68447
6.5686
5.53665
4.5945
4.79203
5.77213
5.97493
4.96125
5.10164
6.1441
6.27851
5.21351
5.297
6.37835
6.44478
5.35309
5.38362
6.47728
7.6925
7.65785
7.57976
7.45963
7.29719
7.09331
6.84968
8.0212
8.31523
8.56273
9.93177
9.63062
9.27543
10.6121
11.0405
11.4071
11.7053
10.1741
8.76058
8.90677
9.00061
9.04032
10.5221
10.4705
10.3542
11.9302
12.0795
12.1539
12.1604
10.5167
9.03348
7.68801
6.47569
5.38342
5.37199
6.45932
6.42107
5.34363
5.30031
6.37023
6.32023
5.25153
5.20717
6.29185
6.3022
5.18106
5.19041
6.36984
7.7172
7.54747
7.4965
7.50104
7.55012
7.61138
7.66323
9.00013
8.93532
8.86712
10.3446
10.4092
10.4795
12.1294
12.0682
12.0271
12.056
10.3318
8.82875
8.85217
8.97751
9.30148
11.1896
10.648
10.4033
12.2171
12.6347
13.4515
16.178
15.0335
14.3846
14.0791
13.9769
13.9687
13.9959
14.0054
13.9664
13.8529
13.6545
13.3693
13.0002
12.5535
12.0376
13.5526
14.1733
14.7191
16.5661
15.8972
15.1503
16.8166
17.7154
18.5373
19.2692
17.1449
15.1795
15.547
15.818
15.9959
18.2797
18.0015
17.6247
19.9007
20.4276
20.8548
23.7487
23.1099
22.377
21.5446
20.6175
19.6067
18.5265
20.2405
21.5346
22.7743
24.9514
23.4404
21.9001
23.4208
25.2359
27.0567
28.8726
26.4185
23.9453
25.0364
26.0424
26.9689
30.4886
29.1868
27.832
30.6734
32.4572
34.2297
36.0125
31.7588
27.8373
24.3139
21.2007
18.4747
16.0936
16.1391
16.176
16.2675
18.9957
18.7667
18.6194
21.5026
21.8231
22.2552
22.9272
19.4166
16.5003
17.0051
17.9369
19.4743
23.4441
21.4472
20.1755
24.0025
25.6802
28.1945
33.8337
30.7506
28.5973
27.1305
26.1317
25.418
24.8469
28.6919
29.6081
30.6983
35.9993
34.4172
33.0425
37.8488
39.8155
42.029
44.6561
37.9524
32.1175
34.0627
36.7673
40.4769
48.2507
43.8346
40.4838
47.91
52.037
57.2851
67.6856
61.4103
56.3235
52.1689
48.6935
45.6827
42.9721
40.4471
38.0344
35.6949
33.4056
31.1568
28.9498
26.7907
24.6831
22.6344
20.6377
18.7108
16.8655
15.1074
13.4413
11.8746
10.4021
9.02236
7.73185
6.5233
5.39153
4.35255
3.4132
2.62049
1.91436
1.82307
2.49845
3.25208
2.98574
2.29349
1.68559
1.50039
1.98747
2.58678
3.34772
3.83001
4.15424
5.18264
6.33088
7.55899
7.16933
5.95215
4.8171
4.26795
5.3473
6.5087
5.52232
4.47499
3.50784
2.66745
2.01259
1.54434
1.28874
0.754426
0.823931
0.713921
0.53009
0.327494
0.334925
0.26213
0.183288
0.270142
0.346726
0.392882
0.321848
0.261523
0.209789
0.127632
0.105283
0.165037
0.210358
0.250075
0.303457
0.365318
0.437169
0.616674
0.873493
0.921149
0.687033
0.802462
1.04472
1.18828
0.940334
1.12525
1.39376
1.6264
1.3347
1.07507
0.979791
0.889629
0.807509
0.734432
0.672019
0.616173
0.563099
0.517163
0.475372
0.403669
0.444747
0.488073
0.422773
0.381363
0.341866
0.287905
0.325676
0.365066
0.407283
0.468008
0.537194
0.585743
0.641376
0.706881
0.624331
0.561851
0.511702
0.449246
0.498316
0.556862
0.620157
0.692327
0.781985
0.865833
0.961159
1.04883
1.1735
1.27534
1.5754
1.90905
2.23118
1.83392
2.1581
2.61434
3.00391
2.50142
2.88007
3.43483
3.85836
3.25665
3.66975
4.33097
4.78448
4.07701
3.36957
3.17619
3.00892
2.82203
2.65812
2.48388
2.32626
2.15809
2.00573
1.85292
1.71175
1.58167
1.47249
1.37339
1.22495
1.14026
1.01695
0.937404
0.858129
0.772395
0.689747
0.763905
0.834711
0.903409
0.96601
1.09077
1.16505
1.31566
1.39825
1.23142
1.06904
1.0238
1.08638
1.28234
1.49545
1.60232
1.73761
1.87406
1.56313
1.44661
1.3347
1.07615
1.1162
1.21775
1.30816
1.68574
2.02146
2.16333
2.31877
2.47078
2.08082
1.94841
1.81141
1.40142
1.51142
1.63546
1.75329
2.21865
2.63419
2.7851
2.9561
3.11742
3.54412
3.75359
4.52777
5.30315
6.65599
7.76364
8.48049
8.87571
10.2895
11.8052
13.4247
13.0451
11.4118
9.89192
9.12236
10.5937
12.1845
13.9052
14.7987
15.1479
16.9783
18.92
20.9752
20.8603
18.6995
16.6807
15.7674
17.7843
19.9711
17.9597
15.8831
13.9895
12.2592
10.676
9.22434
7.88797
6.35983
5.79119
4.96913
5.46144
5.93847
6.88419
7.50668
8.07162
6.99412
6.47532
5.45278
5.1927
4.99539
4.75711
4.56866
4.3353
4.14848
3.93216
3.46542
3.29794
2.7995
2.6442
2.50236
2.3535
1.85375
1.98742
2.11108
2.22993
2.35952
2.94877
3.11201
3.65727
3.83356
3.2728
2.63571
2.504
2.77927
3.44601
4.03487
4.21377
4.42196
4.60906
3.95444
3.78594
3.60709
2.91328
3.07089
3.20253
3.36415
4.14269
4.83025
5.02429
5.65435
5.9215
6.1355
5.46391
5.25694
4.52202
4.32133
3.51435
3.69116
3.84523
4.71241
4.92567
5.71375
6.42772
7.5848
8.75424
9.36606
8.15034
6.94006
6.64371
5.92561
6.18363
6.40761
7.16894
7.4928
8.7968
10.1163
10.7816
9.41462
10.1271
11.6081
12.3362
10.8059
11.5933
13.2478
14.0487
12.3419
13.2158
15.056
15.9418
14.0463
12.1284
11.6713
11.3735
10.9235
10.6298
10.2209
9.94884
9.54622
9.27656
8.90994
8.65963
8.29945
8.05239
7.7232
6.91199
6.68196
5.78795
5.55193
5.34482
5.12263
4.19649
4.03231
4.38788
4.56791
4.76804
4.95568
6.00366
6.24615
7.19738
7.44062
6.47062
5.35274
5.17483
5.58032
6.73045
7.74337
7.99368
8.30812
8.57499
7.48053
7.2336
6.96362
5.77585
6.00795
6.21273
6.46175
7.76294
8.91082
9.18541
9.53615
9.8302
8.59667
8.32115
8.02113
6.67619
6.94647
7.17502
7.45585
8.91861
10.208
10.5111
10.9026
11.2271
12.453
12.955
15.0168
17.0565
20.2435
22.3423
23.1676
23.1481
25.4513
27.8738
30.4105
31.0794
28.262
25.6288
24.914
27.7091
30.7539
34.0767
34.0999
33.0531
35.7908
38.646
41.6357
44.5922
40.8539
37.3612
37.705
41.6824
46.0565
45.0952
40.2195
35.8949
32.0475
28.6152
25.5363
22.7591
19.2746
18.0403
15.9406
17.0223
18.0528
20.3711
21.7381
22.9667
20.4111
19.2575
16.6835
16.0552
15.6562
15.0852
14.7183
14.1568
13.7953
13.2837
11.98
11.6449
10.1913
9.83941
9.53683
9.20604
7.70333
7.99274
8.23635
8.54989
8.80865
10.5042
10.876
12.4158
12.7787
11.215
9.40864
9.12376
9.74718
11.6052
13.2446
13.6179
14.1058
14.5074
12.7477
12.3738
11.9584
10.0427
10.4119
10.7191
11.0885
13.1852
15.0309
15.445
17.0896
17.7265
18.1717
16.4339
15.9884
14.0363
13.5778
11.4293
11.834
12.1569
14.447
14.9302
17.012
18.8718
21.7578
24.4872
25.8736
23.0553
20.0394
19.3267
17.4744
18.08
18.5803
20.5407
21.3296
24.5733
27.5759
29.1642
26.0538
27.7907
31.0876
32.9408
29.5166
31.5585
35.1439
37.3291
33.6344
36.0695
39.8662
42.4321
38.5539
33.5829
32.2277
31.2607
29.984
29.122
28.0117
27.2924
26.2501
25.5839
24.66
24.0842
23.204
22.6464
21.8427
19.7443
19.2316
16.8732
16.3404
15.8803
15.3669
12.9353
12.5582
13.3837
13.7602
14.1976
14.5969
17.3473
17.8975
20.4155
20.958
18.3773
15.4135
15.0668
15.8277
18.9262
21.6623
22.2217
22.9832
23.6238
20.6008
20.0321
19.4222
16.2273
16.7677
17.2222
17.611
21.2465
24.4717
25.1567
26.0736
26.897
23.1168
22.4394
21.7877
17.8176
18.1171
18.4574
18.9906
23.9995
28.0033
28.9813
30.2281
31.471
34.6992
36.3053
41.3953
45.3509
50.622
50.8884
48.592
44.7916
48.144
51.7637
55.765
62.7816
57.5838
52.8938
56.2604
62.2143
68.8417
76.3051
68.6437
60.3019
65.5892
71.8934
79.4851
92.5623
83.2329
75.3677
84.8377
94.7409
106.309
119.943
104.705
92.1723
81.3888
72.062
63.9783
56.8866
51.7332
48.3637
44.6199
48.3013
52.1127
55.3416
59.1863
63.3636
60.4713
56.2324
51.7726
49.6598
47.6181
45.6242
43.7131
41.7565
39.8983
38.0102
35.4082
33.5524
30.7468
28.5396
26.3706
24.9182
19.7278
23.342
25.5881
27.7523
29.7213
32.6358
34.5747
37.3281
39.1773
36.4529
33.5771
31.6759
35.3565
38.3407
41.1496
42.9793
45.0211
47.0291
44.0689
42.0527
40.0154
36.9735
38.9554
40.934
43.1128
46.2405
49.1952
51.3261
53.9053
56.0474
58.3297
55.5886
53.4807
50.4976
48.4984
45.3516
47.2443
49.1631
52.4445
54.9868
58.0989
60.7358
65.182
67.7564
72.6717
70.2144
65.8146
63.2752
60.6097
63.262
66.0179
68.5912
71.3579
75.6989
77.726
83.5086
81.3255
87.4759
89.2951
96.2184
94.357
102.245
103.174
111.709
111.164
120.824
120.029
130.256
132.03
127.131
121.621
115.926
110.998
106.055
101.729
97.2963
93.4458
89.5797
86.2797
82.9123
79.933
76.9194
74.2175
71.8452
68.9672
66.0902
62.9547
60.1638
57.5228
54.1517
51.6435
56.6939
59.4731
62.6744
65.9043
69.1184
72.15
74.7601
77.6659
75.0262
71.9066
69.1516
65.6857
63.0822
68.2448
70.8815
74.7123
77.968
80.7099
83.8809
87.2575
90.8939
87.7638
84.2852
81.0379
77.606
80.6228
83.9278
79.3332
76.3706
73.5537
82.2092
87.3304
91.4991
94.81
99.042
103.685
108.646
105.562
100.363
95.6152
91.2353
96.1139
101.492
106.907
111.099
114.012
119.684
125.726
130.643
133.396
133.483
132.234
129.424
127.539
124.513
121.828
116.801
111.76
114.038
111.038
108.618
104.933
102.356
100.802
96.0097
90.6634
85.5698
79.0203
80.7295
83.4885
86.1988
81.4097
79.4051
83.3833
88.4077
89.8477
84.9392
86.7727
91.9696
96.6183
98.3299
100.775
103.5
107.527
110.442
113.879
116.951
119.711
122.406
125.424
128.582
130.608
133.803
135.285
136.349
139.853
140.702
140.185
140.48
136.072
129.155
120.587
103.624
88.5728
75.345
63.8484
53.9293
45.4029
38.0801
31.7917
26.4118
21.8426
18
14.8004
12.1477
9.94172
8.09679
6.55635
5.25051
5.41682
6.94534
7.61848
5.77034
6.40665
8.68682
10.3068
7.44325
9.01846
12.6524
15.8249
11.2447
14.1447
19.7545
26.5096
21.5588
17.2781
13.9281
11.5111
9.86077
8.77739
10.991
12.6096
15.0082
19.2237
15.9441
13.6625
16.8809
19.932
24.1545
29.5676
23.649
18.3951
22.8467
28.1718
33.8625
41.3286
35.2274
29.1299
35.8551
42.4438
48.7655
54.3687
46.9257
39.3269
31.6196
24.1437
17.5791
21.2478
28.539
32.5126
24.7964
27.9055
35.7992
38.3697
30.4048
32.3458
40.3325
41.8367
33.8772
35.0967
42.9765
50.4408
49.4289
48.0174
46.1415
43.6567
40.4151
36.3648
44.1472
48.1129
51.2062
58.4194
55.4948
51.6867
59.0047
62.6429
65.4068
67.4579
60.6222
53.5522
55.3136
56.6006
57.4939
64.1843
63.4081
62.2464
68.9435
69.9831
70.5962
76.8781
76.4447
75.5611
74.2132
72.3163
69.7134
66.2372
61.7445
56.2008
49.7768
42.8629
35.9968
29.7574
24.6149
20.7347
25.2863
29.9934
35.95
42.6949
36.0522
30.5777
36.6612
42.8254
50.0721
57.9632
50.1143
42.8385
50.1391
57.2742
63.7363
71.5409
65.0658
57.7654
65.9242
73.3728
79.86
89.0204
82.5116
74.8991
66.6246
58.2705
50.446
43.6291
51.6481
59.139
67.571
78.3306
69.1988
60.9492
71.7898
80.9682
90.9846
101.232
87.7905
76.4245
85.0686
92.8913
99.4424
111.637
105.018
96.9066
110.984
119.497
126.212
130.878
116.547
104.52
94.2173
85.1485
76.9142
69.1962
73.5485
76.8676
79.3051
86.5376
84.2801
81.1298
89.2128
92.1638
94.2036
95.5089
88.096
81.0458
82.2328
82.9005
83.1468
89.5341
89.4697
89.0497
96.1494
96.3183
96.0935
102.923
103.555
103.732
103.441
102.529
100.786
98.091
108.132
110.473
111.73
122.163
121.547
119.787
133.507
134.475
134.286
133.138
121.985
112.16
112.001
111.294
110.136
117.853
119.697
121.113
131.289
128.927
126.195
123.206
115.682
108.611
101.908
95.483
89.2479
83.118
77.0042
70.8515
64.5779
58.0285
51.101
43.7692
36.0173
36.6308
44.2341
44.4645
36.9852
37.1852
44.5518
44.5621
37.2909
37.3353
44.4792
44.3631
37.3513
37.3555
44.2309
50.765
51.035
51.2837
51.4889
51.6044
51.584
51.4468
58.2684
58.3302
58.2323
64.4261
64.6731
64.712
70.8882
70.687
70.2787
69.7231
64.0331
57.9834
57.6438
57.252
56.8342
62.4217
62.9977
63.5444
69.0679
68.3517
67.6054
66.8539
61.8393
56.4109
50.4921
44.0984
37.3571
37.3661
43.9762
43.8729
37.3924
37.434
43.7909
43.7333
37.4923
37.5693
43.7051
43.6965
37.6634
37.7769
43.7143
49.2076
49.2994
49.4248
49.5815
49.7696
49.9869
50.2296
55.9979
55.6064
55.244
60.2084
60.7214
61.2681
66.1167
65.4085
64.74
64.1183
59.7355
54.916
54.6256
54.3745
54.1638
58.5889
58.9243
59.3067
63.5479
63.0313
62.5691
66.188
66.7785
67.4316
68.1467
68.9214
69.7509
70.6277
71.5402
72.4726
73.4039
74.3075
75.1504
75.8929
76.4875
76.8787
82.7694
82.1584
81.3453
86.6963
87.7652
88.6365
94.552
93.3686
91.9979
90.4992
85.4872
80.3867
79.3309
78.219
77.0855
81.489
82.8444
84.189
88.9247
87.3195
85.7199
89.8065
91.6754
93.5727
95.4612
97.2962
99.0246
100.585
106.803
104.786
102.634
108.049
110.704
113.272
120.053
116.819
113.571
110.365
105.368
100.408
98.1609
95.9373
93.7717
97.633
100.124
102.713
107.247
104.251
101.403
98.7183
95.2619
91.6909
87.9939
84.1546
80.1516
75.9584
74.8598
73.8062
72.8094
76.4442
77.6151
78.8548
82.6459
81.21
79.8577
78.5957
75.3496
71.8772
71.0142
70.2225
69.5023
72.5522
73.4031
74.3354
77.427
76.3521
75.3696
77.9796
79.0942
80.3132
81.6396
83.0744
84.6158
86.2587
89.7136
87.8522
86.1138
88.9918
90.9349
93.0262
96.2079
93.8754
91.7201
89.7376
87.1964
84.5013
83.0141
81.6494
80.4026
82.6557
84.0344
85.5458
87.9213
86.2628
84.7529
86.7057
88.3455
90.1509
92.1342
94.3074
96.6816
99.2658
102.067
105.087
108.324
111.771
115.411
119.22
123.163
127.194
131.255
135.269
139.141
142.747
145.914
148.4
149.865
149.863
148.102
143.863
137.027
127.96
117.344
106.025
94.8229
84.4459
99.2163
111.211
124.035
145.796
130.696
116.422
136.465
154.02
172.509
190.312
160.631
136.835
148.622
158.42
165.353
191.596
184.733
173.994
205.228
217.379
223.901
264.047
259.458
245.719
221.398
211.992
202.242
190.369
179.638
167.747
157.634
146.98
138.172
144.999
155.589
167.013
170.636
164.82
158.906
151.927
151.443
145.824
146.446
153.015
157.742
158.198
160.938
161.416
158.228
158.137
154.658
151.034
147.95
144.879
144.4
147.52
146.761
143.288
139.802
138.615
142.139
145.719
149.366
150.294
150.863
154.405
158.058
161.783
161.714
165.365
164.864
164.119
164.51
162.326
168.14
174.776
181.697
177.432
183.827
179.077
191.939
204.882
217.679
226.917
220.316
212.62
205.654
197.956
191.175
196.402
188.882
190.378
186.757
182.897
179.524
176.053
171.614
171.249
167.783
168.51
172.246
176.12
175.177
178.781
177.7
181.075
184.731
188.582
190.45
186.452
182.588
183.995
180.016
181.08
177.004
173.018
169.137
169.52
165.599
165.52
161.563
157.702
153.937
153.095
156.974
160.964
159.959
155.866
151.874
148.045
144.362
140.736
137.199
135.351
131.896
129.57
126.186
122.931
119.855
116.89
120.061
123.372
120.101
116.766
113.545
109.763
106.534
102.104
98.8768
96.1356
93.7559
88.6414
90.8287
93.4906
97.0638
100.888
105.528
108.834
113.029
116.383
112.169
107.366
104.109
98.66
95.6561
92.5819
101.791
105.082
110.762
115.571
119.841
123.588
126.81
130.395
133.088
136.743
138.942
142.618
140.479
137.943
134.124
131.04
127.223
123.495
127.458
131.454
134.944
138.92
141.821
144.273
146.385
150.27
154.385
158.569
156.774
152.478
148.272
145.883
150.138
154.493
158.96
161.167
162.872
164.159
165.061
169.256
169.588
173.762
173.549
177.68
178.041
178.001
173.591
172.946
168.5
167.315
171.889
176.611
177.524
182.228
182.542
182.434
181.907
186.24
185.237
189.488
188.059
192.235
196.525
194.57
192.515
196.586
194.478
198.242
202.461
204.855
200.663
203.037
198.773
200.899
205.339
209.859
207.372
211.798
209.08
206.34
204.059
211.987
214.678
210.691
213.412
217.75
222.191
219.133
223.195
219.938
228.083
235.831
242.972
233.575
249.886
229.311
240.739
265.02
280.924
273.301
264.139
253.917
244.441
240.503
236.523
231.786
227.704
231.151
226.62
230.105
225.448
220.84
216.287
219.167
214.477
217.042
212.216
207.489
202.857
198.312
193.849
195.215
190.678
191.542
186.93
187.211
192.003
196.908
196.256
201.076
199.851
204.583
209.423
214.374
216.258
211.082
206.018
207.101
201.937
202.367
197.139
192.036
187.055
186.47
181.46
180.21
175.215
170.307
165.666
163.494
168.284
173.309
178.428
183.713
185.352
190.621
191.606
196.852
196.084
194.769
189.158
187.097
181.52
176.108
170.872
165.795
160.918
156.271
151.711
147.29
143.028
139.6
135.483
131.437
127.443
123.359
119.305
114.473
118.641
122.879
126.816
130.881
135.511
139.914
143.905
148.383
144.456
139.799
135.242
129.739
125.566
121.654
117.782
113.136
108.72
108.218
111.931
115.579
119.317
123.238
127.672
134.289
139.32
144.637
149.169
153.024
157.798
162.749
167.883
164.253
159.076
154.048
149.647
154.717
159.927
165.335
169.629
173.182
178.709
184.424
190.363
192.868
198.818
200.58
201.724
202.31
207.914
207.754
213.278
212.391
217.804
223.338
221.543
219.422
224.563
221.95
226.936
223.928
228.751
233.631
238.553
234.801
239.549
235.638
240.218
244.344
248.524
243.515
247.519
242.295
237.118
231.995
235.106
229.793
232.423
226.933
228.991
234.757
240.632
238.008
243.68
240.494
245.947
251.457
257.017
252.797
258.118
253.647
249.18
244.733
249.086
254.171
258.884
264.328
259.673
265.321
269.825
274.572
269.013
263.516
268.248
262.619
267.042
261.123
255.248
249.43
252.676
246.608
249.212
242.912
236.728
230.668
224.738
218.94
219.603
213.686
213.513
207.552
206.523
212.772
219.206
219.704
226.037
225.68
231.883
238.254
244.766
246.098
239.25
232.56
232.654
225.823
225.045
218.14
211.464
205.024
202.9
196.523
193.522
187.203
181.097
175.226
171.033
177.044
183.301
178.631
172.197
165.959
160.165
154.761
149.628
144.547
138.77
133.032
127.42
132.067
136.641
143.667
148.666
141.497
146.598
153.984
159.852
166.382
173.121
166.663
159.357
152.388
153.075
159.013
165.091
173.109
179.724
185.197
189.774
196.478
200.101
206.913
209.553
216.442
214.024
210.787
203.485
199.158
192.011
186.544
193.793
201.59
206.693
214.546
218.39
221.379
223.575
230.887
232.146
239.419
239.671
246.875
254.247
253.119
251.413
258.185
255.62
262.126
258.826
265.045
271.32
277.636
272.995
278.972
273.91
279.612
284.935
290.323
283.976
288.847
282.094
275.379
268.717
272.065
265.073
267.575
260.294
261.792
269.548
277.413
275.001
282.535
279.146
286.297
293.5
300.733
295.616
302.38
296.656
290.907
285.344
280.064
275.063
270.098
275.298
280.155
284.898
279.554
283.663
293.436
289.364
295.701
290.594
285.438
291.011
296.575
302.099
308.657
302.813
296.898
302.961
309.239
315.455
321.499
314.33
307.558
301.214
306.378
312.766
317.586
310.542
302.384
289.536
296.011
279.834
291.537
319.254
302.416
316.922
309.675
325.577
314.757
322.247
330.508
325.23
319.83
327.41
333.195
338.893
347.442
341.453
335.262
328.897
322.4
315.796
309.116
315.192
307.973
313.364
305.6
297.857
290.161
293.583
285.441
287.73
279.193
270.777
262.671
254.717
246.977
246.417
238.527
236.916
229.004
226.298
234.478
242.972
245.098
253.508
254.495
262.75
271.399
280.258
280.563
271.249
262.236
260.894
251.79
249.102
239.961
231.139
222.679
218.079
209.723
203.836
195.358
187.177
179.837
171.577
178.993
187.674
196.835
205.208
212.335
221.218
226.784
235.895
230.706
224.158
214.211
205.378
196.319
188.369
180.803
215.928
208.604
217.903
227.06
234.504
240.587
245.398
255.25
258.601
268.461
270.326
280.092
290.17
290.139
289.333
298.586
296.429
305.23
301.818
310.122
314.15
317.561
308.008
310.02
299.952
300.514
311.217
322.162
320.256
330.672
327.236
323.143
318.466
326.818
321.12
328.836
322.362
329.45
336.477
343.404
335.144
341.189
332.184
337.004
346.844
356.587
350.145
359
351.554
344.003
336.421
343.251
349.899
356.319
365.463
358.538
351.372
359.547
367.33
374.845
382.034
372.094
362.464
353.223
344.474
336.32
341.637
349.707
354.281
345.658
334.15
349.534
360.272
358.579
368.504
363.73
358.677
368.271
373.74
378.897
389.754
384.292
378.389
388.86
395.3
401.206
406.629
394.858
383.727
373.661
377.609
388.755
388.113
399.617
411.693
416.296
404.77
408.446
419.345
420.319
433.337
429.093
424.32
419.01
413.158
406.681
399.697
392.252
384.393
376.187
367.701
375.748
366.241
373.144
362.589
351.906
341.219
344.654
333.327
335.076
323.154
311.511
300.205
289.27
278.692
276.238
265.55
261.402
250.769
244.887
255.838
267.535
272.581
284.171
287.328
298.841
310.788
323.081
321.885
308.807
296.256
292.322
279.723
273.782
260.914
248.547
237.375
227.711
239.129
252.363
244.751
256.388
266.167
279.149
286.76
300.495
305.469
319.37
333.76
335.415
335.737
348.861
347.208
359.641
356.151
367.785
379.383
390.9
383.572
393.786
385.038
394.038
403.701
413.249
402.218
410.021
397.479
384.864
372.222
375.809
362.189
363.676
349.366
348.584
363.914
379.727
378.265
393.265
389.547
403.418
417.195
430.795
422.287
434.178
423.834
413.224
402.668
410.849
418.502
425.574
438.496
430.714
422.259
433.87
443.264
451.904
459.688
445.547
432.016
437.709
442.741
447.185
461.768
457.192
451.818
466.56
472.474
477.325
493.828
488.508
482.033
474.43
465.75
456.049
445.462
456.951
444.138
453.574
438.756
423.625
408.409
412.429
395.956
397.211
379.722
362.729
346.31
330.525
315.218
309.185
293.409
283.811
268.981
300.757
293.446
308.609
318.46
325.506
342.242
359.805
378.017
374.203
354.639
335.807
326.453
346.637
367.943
389.387
394.519
396.859
416.471
415.231
433.569
429.101
445.84
462.436
478.464
467.975
481.602
468.982
479.988
494.24
508.225
493.782
505.799
488.528
470.512
452.059
457.079
436.633
437.954
415.818
412.77
437.226
462.246
460.564
483.386
477.573
497.821
517.372
535.847
522.129
536.979
521.253
505.501
489.742
498.245
505.406
511.204
529.578
523.196
515.179
532.4
541.619
548.882
554.167
534.349
515.647
497.928
481.251
465.585
450.959
437.855
440.43
450.433
453.997
468.69
484.414
486.785
472.183
473.5
481.729
488.369
504.28
503.087
500.984
518.711
520.597
521.475
539.666
539.254
537.546
557.507
559.091
559.205
558.101
538.982
521.445
505.77
504.799
509.225
520.729
537.059
543.878
556.526
575.561
578.228
579.843
580.113
578.633
574.978
568.946
560.417
549.7
567.425
552.743
568.664
549.357
528.327
506.089
513.202
487.674
489.911
461.39
434.016
406.367
380.836
358.396
339.831
401.182
427.102
456.922
453.445
485.151
489.31
521.633
518.6
547.163
538.37
562.436
584.676
604.173
585.582
599.694
579.764
589.513
610.764
632.957
620.389
641.814
623.145
600.533
574.798
586.16
554.268
559.077
520.972
521.516
560.3
602.918
595.869
631.05
616.07
642.509
664.067
680.31
656.169
666.062
641.904
618.644
596.451
600.681
602.283
601.557
624.36
625.373
623.534
647.277
649.198
647.957
644.005
621.168
599.222
595.693
591.319
573.537
568.572
567.007
586.299
604.043
610.777
616.479
638.255
631.428
624.51
603.459
584.315
551.928
523.79
496.626
458.643
451.939
413.706
399.628
364.675
348.12
342.185
366.629
327.439
298.538
302.298
317.773
332.377
368.549
372.041
366.938
366.206
402.896
409.855
441.814
434.094
493.034
542.982
593.781
615.215
625.055
635.493
643.451
652.427
660.692
667.585
672.117
673.656
671.745
697.086
691.156
717.183
705.39
687.049
662.053
681.711
644.929
657.39
611.614
701.981
726.32
759.523
735.155
710.742
731.156
757.515
783.536
808.459
782.929
831.924
850.72
824.121
797.909
770.982
743.928
749.984
723.228
724.363
698.701
696.641
721.432
746.555
750.51
776.801
777.007
803.782
802.698
796.262
771.679
762.785
739.202
715.267
691.358
683.458
673.742
663.269
683.087
695.31
706.349
729.025
716.624
702.941
689.002
670.714
652.553
641.986
658.254
647.234
675.969
690.957
706.589
722.31
737.497
751.198
772.837
785.939
808.092
819.944
827.8
830.023
855.581
851.696
842.264
828.621
812.435
793.464
776.642
757.667
740.903
758.588
775.137
794.344
810.138
829.123
846.517
861.421
872.872
879.066
877.748
900.442
898.401
890.349
877.814
890.746
903.904
912.471
915.021
925.305
922.511
913.673
900.194
883.048
874.002
861.754
843.481
823.735
802.853
789.976
768.882
755.148
739.913
723.603
706.527
690.298
676.919
661.856
644.906
675.133
687.422
703.911
721.477
735.384
716.733
699.682
668.074
636.991
616.625
595.039
571.731
548.81
508.722
476.475
439.814
509.861
537.497
584.571
611.371
653.697
687.51
710.364
728.55
748.057
759.125
780.85
790.758
813.398
834.787
855.036
863.717
843.008
821.26
798.364
775.509
768.369
747.436
738.779
720.139
728.072
701.838
734.461
754.124
759.062
780.572
803.599
826.548
848.373
869.398
888.991
906.315
919.983
929.03
932.191
933.991
931.217
922.343
908.796
907.87
920.942
928.985
929.572
920.399
904.918
897.476
869.25
863.991
825.535
823.91
778.907
782.653
734.827
743.328
694.674
707.812
660.231
613.383
634.315
590.456
612.262
571.544
533.759
558.109
522.306
488.919
513.572
481.184
450.965
474.806
445.287
469.227
441.529
416.79
440.113
415.906
394.057
416.342
394.476
374.599
396.045
375.958
357.713
378.302
359.636
342.789
362.761
345.499
329.901
349.205
333.287
319.436
305.855
323.919
309.33
296.097
313.774
299.727
287.158
304.336
291.003
279.077
295.741
283.004
271.464
287.728
275.396
264.243
280.048
268.061
257.337
272.739
261.127
250.696
265.622
254.375
244.396
258.936
248.221
238.915
253.219
243.477
235.362
249.858
241.636
234.933
249.292
276.289
246.606
242.41
264.456
289.674
280.639
272.462
262.486
278.256
266.756
282.545
270.739
260.218
274.964
263.646
253.259
267.474
256.376
246.339
260.136
249.575
240.055
253.586
243.487
234.362
247.553
237.827
228.959
241.801
232.133
223.138
235.342
225.922
238.415
229.064
220.712
232.732
223.668
215.183
226.659
217.698
229.382
220.514
212.52
223.786
215.174
207.07
217.817
209.322
220.28
211.845
204.175
214.736
206.544
198.784
208.883
200.722
211.082
202.878
195.269
205.072
197.089
207.112
199.13
191.661
201.145
193.303
203.019
195.17
187.805
197.019
189.36
198.823
191.231
184.081
193.071
185.609
194.833
187.379
180.323
189.038
181.674
190.62
183.275
176.27
184.781
177.451
186.001
178.732
187.406
180.261
173.512
181.754
174.743
183.238
176.267
169.556
177.623
170.601
178.698
171.703
179.944
173.091
166.486
174.322
167.505
175.373
168.604
176.654
170.003
163.569
171.172
164.468
172.136
165.479
173.321
166.84
160.537
168.015
161.515
169.023
162.526
170.2
163.826
157.559
164.847
158.353
165.695
159.195
166.481
160.047
167.465
161.195
155.02
162.074
155.684
162.772
156.37
163.439
157.105
164.332
158.237
152.131
159.028
152.793
159.731
153.473
160.407
154.216
161.31
155.38
149.452
156.253
150.182
157.021
150.968
157.804
151.799
158.776
153.017
147.143
153.813
147.803
154.518
148.48
155.191
149.219
155.898
149.942
156.754
151.127
145.409
151.904
146.05
152.612
146.746
153.284
147.481
154.154
148.68
143.052
149.436
143.677
150.095
144.295
150.708
144.933
151.343
145.581
152.139
146.732
141.103
147.39
141.647
148.005
142.182
148.573
142.758
149.146
143.38
149.769
144.102
150.653
145.411
139.912
146.192
140.615
146.936
141.338
147.664
142.1
148.397
142.858
149.294
144.183
138.76
144.9
139.389
145.609
140.061
146.259
140.772
146.945
141.492
147.806
142.809
137.423
143.494
138.072
144.239
138.82
144.987
139.574
145.749
140.355
146.674
141.744
136.393
142.483
137.118
143.297
137.882
144.076
138.737
144.937
139.617
145.944
141.149
135.89
141.996
136.69
142.871
137.523
143.719
138.434
144.593
139.273
145.555
140.812
135.486
141.548
136.203
142.359
137.026
143.172
137.881
144.027
138.752
145.012
140.37
135.083
141.16
135.902
142.095
136.814
143.066
137.836
144.116
138.903
145.305
140.769
135.582
141.764
136.6
142.899
137.751
144.076
138.93
145.372
140.917
135.738
141.976
136.859
143.203
138.069
144.459
139.314
145.776
141.293
136.029
142.301
137.119
143.497
138.324
144.769
139.641
146.147
141.759
136.56
142.891
137.766
144.204
139.028
145.542
140.379
146.995
142.608
137.37
143.83
138.699
145.306
140.182
146.867
141.794
148.573
144.297
139.136
145.735
140.631
147.377
142.291
149.169
144.891
139.698
146.371
141.319
148.141
143.121
150.054
145.893
140.729
147.489
142.436
149.366
144.306
151.396
147.188
141.992
148.944
143.906
151.072
146.119
153.396
149.312
144.214
151.354
146.344
153.673
149.481
144.152
151.362
146.258
153.671
148.677
156.239
152.186
147.094
154.537
149.59
157.284
153.263
148.11
155.685
150.687
158.574
154.567
149.396
157.22
152.244
160.365
156.408
151.265
159.255
154.325
162.619
158.591
153.315
161.54
156.51
165.104
161.148
156.038
164.592
159.781
168.752
165.069
160.04
168.958
165.039
159.8
168.789
163.805
173.204
169.549
164.663
174.088
170.513
165.52
175.088
171.215
165.842
175.624
170.632
180.96
177.33
172.499
182.963
179.54
174.839
185.589
182.245
177.516
188.714
185.394
180.864
192.537
189.499
185.331
197.511
194.638
190.613
203.299
200.419
198.032
193.727
206.967
204.327
201.051
215.231
213.426
211.933
208.328
223.212
221.312
220.125
217.171
233.202
232.526
232.333
229.801
247.491
247.936
248.676
249.136
247.693
267.388
269.762
272.991
275.935
279.52
283.462
287.691
289.664
291.713
289.914
287.926
286.392
281.48
281.752
277.251
271.77
261.977
253.166
239.116
219.174
179.692
177.593
175.816
174.177
173.115
172.319
172.391
172.799
173.793
175.48
177.912
180.898
184.646
188.85
193.967
199.487
205.761
212.285
219.366
226.41
233.715
240.675
247.611
253.991
260.189
265.768
271.124
275.87
280.371
284.263
287.877
290.866
293.553
295.673
297.545
298.976
300.238
301.175
301.972
302.506
302.899
303.088
303.075
302.984
302.81
302.487
302.168
301.748
301.345
300.846
300.35
299.757
299.202
298.553
297.978
297.318
296.754
296.103
295.547
294.894
294.333
293.669
293.098
292.426
291.86
291.197
290.646
290
289.47
288.839
288.318
287.688
287.167
286.532
286.004
285.362
284.835
284.199
283.681
283.055
282.553
281.941
281.448
280.841
280.349
279.741
279.241
278.63
278.123
277.52
277.006
276.424
275.901
275.362
274.833
274.287
273.782
273.213
272.719
272.171
271.675
271.1
270.627
270.066
269.59
269.054
268.56
268.065
267.554
267.061
266.557
266.063
265.569
265.073
264.597
264.091
263.647
263.114
262.701
262.175
261.767
261.246
260.841
260.324
259.924
259.413
259.018
258.513
258.126
257.63
257.251
256.762
256.39
255.907
255.54
255.062
254.698
254.226
253.868
253.401
253.048
252.59
252.242
251.793
251.448
251.009
250.663
250.238
249.886
249.483
249.115
248.75
248.368
248.003
247.636
247.264
246.92
246.526
246.2
245.83
245.508
245.109
244.815
244.422
244.132
243.746
243.458
243.081
242.791
242.427
242.133
241.787
241.479
241.168
240.851
240.529
240.239
239.889
239.624
239.284
239.015
238.69
238.41
238.113
237.832
237.512
237.247
236.95
236.691
236.362
236.131
235.806
235.579
235.258
235.033
234.719
234.496
234.188
233.965
233.665
233.441
233.152
232.924
232.648
232.411
232.155
231.902
231.68
231.411
231.188
230.93
230.699
230.462
230.209
229.985
229.757
229.532
229.278
229.069
228.837
228.632
228.367
228.189
227.927
227.751
227.493
227.32
227.065
226.894
226.643
226.475
226.226
226.061
225.816
225.653
225.41
225.249
225.01
224.852
224.616
224.459
224.227
224.073
223.843
223.691
223.464
223.314
223.09
222.942
222.721
222.576
222.357
222.214
221.998
221.857
221.644
221.504
221.293
221.155
220.947
220.812
220.607
220.473
220.27
220.138
219.937
219.807
219.609
219.481
219.285
219.159
218.965
218.841
218.649
218.527
218.337
218.216
218.029
217.91
217.725
217.607
217.424
217.308
217.127
217.013
216.834
216.721
216.544
216.433
216.258
216.148
215.974
215.866
215.695
215.588
215.418
215.313
215.145
215.041
214.875
214.773
214.608
214.507
214.344
214.245
214.084
213.985
213.825
213.728
213.57
213.474
213.318
213.223
213.068
212.974
212.821
212.728
212.576
212.485
212.334
212.244
212.095
212.006
211.858
211.77
211.624
211.537
211.392
211.306
211.162
211.077
210.935
210.851
210.711
210.627
210.489
210.405
210.269
210.185
210.052
209.967
209.837
209.75
209.625
209.535
209.416
209.32
209.209
209.105
209.005
208.889
208.812
208.678
208.602
208.472
208.387
208.273
208.156
208.057
207.943
207.829
207.724
207.588
207.5
207.347
207.225
207.069
206.959
206.757
206.622
206.384
206.169
205.859
205.446
204.881
203.507
199.282
197.641
196.58
196.721
196.935
197.315
196.614
196.617
196.623
196.752
197.176
197.6
198.336
198.919
199.758
200.486
201.374
201.963
202.261
201.619
182.449
191.575
208.799
216.777
205.966
222.1
227.175
238.351
236.918
249.536
248.46
246.756
233.187
223.902
216.139
209.041
207.887
213.756
212.611
207.053
205.724
210.724
215.81
218.371
219.832
226.267
224.319
233.235
220.992
220.662
214.774
209.679
204.854
203.775
208.144
207.597
203.211
202.337
206.482
210.555
212.045
212.516
216.942
230.158
224.679
216.949
214.764
215.19
210.313
206.11
201.961
201.403
205.392
204.987
201.01
201.173
204.959
208.692
209.24
209.216
212.869
224.076
221.495
213.742
212.469
213.897
208.873
204.852
201.113
201.417
204.686
204.228
200.839
200.085
203.287
207.409
208.328
208.301
212.059
222.446
221.964
213.269
211.634
212.991
207.252
202.645
199.094
198.203
201.643
201.625
197.932
199.249
202.106
207.033
207.109
206.638
211.619
222.82
222.851
213.265
212.159
213.902
207.662
202.494
199.72
200.322
202.84
203.247
200.614
200.913
203.434
208.249
208.279
207.623
212.625
223.921
223.942
214.362
213.306
215.05
208.842
203.793
201.161
201.351
203.939
204.26
201.582
201.724
204.387
209.295
209.356
208.772
213.752
225.063
225.095
215.473
214.38
216.117
209.841
204.688
201.946
202.074
204.802
205.095
202.285
202.395
205.206
210.238
210.31
209.752
214.787
226.197
226.216
216.51
215.395
217.141
210.772
205.493
202.606
202.719
205.599
205.884
202.921
203.031
205.991
211.152
211.229
210.675
215.791
227.315
227.332
217.527
216.395
218.155
211.686
206.274
203.233
203.341
206.378
206.663
203.543
203.642
206.769
212.061
212.141
211.585
216.79
228.433
228.449
218.54
217.395
219.172
212.6
207.053
203.849
203.95
207.157
207.444
204.156
204.256
207.551
212.974
213.057
212.496
217.793
229.554
229.574
219.56
218.403
220.197
213.518
207.836
204.462
204.57
207.94
208.23
204.77
204.88
208.338
213.895
213.979
213.412
218.804
230.686
230.711
220.588
219.419
221.231
214.446
208.627
205.082
205.192
208.732
209.026
205.396
205.506
209.134
214.826
214.912
214.338
219.824
231.83
231.856
221.63
220.447
222.279
215.384
209.427
205.713
205.822
209.533
209.831
206.031
206.141
209.941
215.769
215.856
215.275
220.858
232.99
233.015
222.681
221.488
223.338
216.334
210.238
206.352
206.463
210.345
210.647
206.676
206.787
210.759
216.723
216.812
216.223
221.905
234.16
234.189
223.746
222.542
224.41
217.296
211.06
207.002
207.114
211.169
211.476
207.331
207.444
211.589
217.69
217.78
217.183
222.963
235.349
235.374
224.822
223.608
225.495
218.27
211.895
207.663
207.777
212.006
212.317
207.998
208.113
212.432
218.671
218.762
218.156
224.036
236.546
236.575
225.913
224.689
226.594
219.26
212.744
208.336
208.453
212.856
213.174
208.678
208.795
213.291
219.667
219.759
219.145
225.124
237.76
237.793
227.019
225.786
227.71
220.265
213.607
209.022
209.141
213.722
214.045
209.37
209.491
214.164
220.68
220.772
220.149
226.228
238.989
239.027
228.141
226.899
228.842
221.286
214.486
209.722
209.844
214.603
214.931
210.076
210.2
215.052
221.708
221.801
221.169
227.348
240.235
240.278
229.28
228.028
229.99
222.323
215.38
210.434
210.56
215.499
215.832
210.796
210.923
215.956
222.752
222.846
222.205
228.485
241.499
241.547
230.435
229.174
231.156
223.376
216.289
211.161
211.289
216.41
216.749
211.53
211.66
216.875
223.812
223.906
223.256
229.641
242.778
242.836
231.604
230.336
232.336
224.445
217.214
211.902
212.033
217.337
217.682
212.279
212.411
217.81
224.889
224.984
224.325
230.808
244.075
244.136
232.795
231.515
233.535
225.531
218.155
212.658
212.792
218.28
218.631
213.042
213.178
218.762
225.983
226.079
225.41
231.995
245.393
245.456
234
232.711
234.751
226.635
219.113
213.429
213.567
219.24
219.598
213.821
213.96
219.73
227.095
227.191
226.512
233.199
246.727
246.795
235.224
233.925
235.985
227.756
220.088
214.217
214.357
220.218
220.581
214.617
214.759
220.717
228.225
228.321
227.633
234.422
248.079
248.153
236.465
235.158
237.237
228.895
221.08
215.02
215.164
221.213
221.583
215.428
215.574
221.721
229.373
229.469
228.771
235.663
249.45
249.529
237.725
236.409
238.508
230.053
222.091
215.84
215.988
222.226
222.603
216.257
216.406
222.744
230.54
230.637
229.928
236.923
250.84
250.925
239.004
237.679
239.798
231.23
223.12
216.678
216.829
223.259
223.642
217.103
217.256
223.786
231.726
231.823
231.105
238.202
252.25
252.34
240.302
238.969
241.107
232.427
224.169
217.533
217.688
224.31
224.701
217.968
218.125
224.847
232.933
233.03
232.301
239.501
253.679
253.776
241.62
240.279
242.437
233.644
225.238
218.407
218.566
225.382
225.78
218.851
219.012
225.929
234.16
234.257
233.517
240.821
255.13
255.233
242.959
241.61
243.788
234.881
226.327
219.3
219.463
226.474
226.879
219.754
219.918
227.032
235.408
235.506
234.755
242.161
256.602
256.711
244.318
242.962
245.161
236.141
227.437
220.212
220.379
227.587
228
220.676
220.845
228.156
236.679
236.776
236.014
243.524
258.095
258.211
245.7
244.336
246.555
237.422
228.569
221.145
221.316
228.722
229.143
221.619
221.792
229.302
237.971
238.068
237.294
244.908
259.611
259.734
247.103
245.733
247.971
238.725
229.723
222.099
222.273
229.879
230.308
222.584
222.76
230.471
239.286
239.383
238.598
246.314
261.149
261.279
248.529
247.151
249.41
240.051
230.899
223.074
223.252
231.059
231.496
223.57
223.75
231.662
240.625
240.721
239.924
247.743
262.711
262.849
249.978
248.593
250.873
241.402
232.099
224.071
224.253
232.263
232.708
224.578
224.762
232.878
241.988
242.083
241.275
249.201
264.292
264.445
251.449
250.062
252.361
242.777
233.322
225.09
225.277
233.49
233.943
225.609
225.798
234.117
243.375
243.47
242.649
250.68
265.898
266.065
252.948
251.554
253.873
244.175
234.57
226.133
226.325
234.741
235.204
226.664
226.858
235.382
244.787
244.881
244.048
252.183
267.537
267.706
254.47
253.07
255.409
245.6
235.844
227.2
227.397
236.019
236.49
227.744
227.942
236.672
246.225
246.319
245.473
253.708
269.199
269.37
256.021
254.611
256.973
247.051
237.144
228.293
228.494
237.323
237.803
228.848
229.052
237.989
247.691
247.783
246.924
255.261
270.888
271.065
257.594
256.179
258.562
248.529
238.47
229.41
229.616
238.653
239.143
229.979
230.187
239.334
249.184
249.275
248.403
256.843
272.594
272.789
259.196
257.776
260.18
250.034
239.824
230.554
230.765
240.011
240.511
231.136
231.35
240.706
250.704
250.794
249.909
258.456
274.332
274.542
260.822
259.401
261.824
251.568
241.205
231.726
231.943
241.397
241.907
232.323
232.539
242.106
252.253
252.342
251.444
260.095
276.098
276.319
262.481
261.054
263.498
253.13
242.615
232.922
233.15
242.812
243.331
233.534
233.76
243.535
253.831
253.918
253.006
261.759
277.9
278.122
264.165
262.735
265.2
254.721
244.055
234.148
234.385
244.256
244.785
234.775
235.01
244.994
255.438
255.524
254.598
263.454
279.726
279.957
265.88
264.446
266.931
256.342
245.524
235.406
235.646
245.73
246.27
236.045
236.289
246.484
257.076
257.16
256.22
265.179
281.581
281.822
267.625
266.186
268.693
257.994
247.025
236.689
236.942
247.236
247.787
237.346
237.599
248.006
258.746
258.828
257.873
266.934
283.466
283.717
269.4
267.958
270.486
259.678
248.558
238.01
238.264
248.774
249.336
238.684
238.938
249.561
260.448
260.528
259.559
268.72
285.382
285.644
271.206
269.761
272.311
261.395
250.124
239.364
239.621
250.345
250.919
240.054
240.313
251.149
262.184
262.262
261.277
270.54
287.323
287.605
273.046
271.598
274.168
263.145
251.724
240.751
241.013
251.95
252.536
241.457
241.722
252.771
263.952
264.028
263.029
272.392
289.303
289.597
274.918
273.467
276.059
264.928
253.358
242.171
242.441
253.589
254.187
242.896
243.165
254.428
265.756
265.829
264.814
274.277
291.319
291.616
276.824
275.371
277.984
266.747
255.026
243.623
243.905
255.264
255.874
244.365
244.647
256.121
267.594
267.665
266.634
276.196
293.367
293.672
278.763
277.309
279.942
268.6
256.732
245.111
245.403
256.975
257.597
245.871
246.165
257.85
269.468
269.536
268.49
278.15
295.445
295.761
280.737
279.282
281.936
270.489
258.472
246.64
246.937
258.721
259.356
247.42
247.716
259.614
271.376
271.442
270.38
280.14
297.553
297.887
282.746
281.289
283.963
272.413
260.249
248.204
248.507
260.504
261.151
248.997
249.31
261.416
273.32
273.384
272.306
282.162
299.703
300.043
284.788
283.329
286.025
274.372
262.063
249.802
250.119
262.324
262.985
250.62
250.937
263.255
275.301
275.361
274.267
284.219
301.882
302.235
286.864
285.406
288.122
276.369
263.916
251.446
251.766
264.183
264.856
252.283
252.606
265.133
277.318
277.376
276.266
286.314
304.09
304.465
288.979
287.519
290.256
278.402
265.806
253.128
253.456
266.079
266.765
253.985
254.314
267.048
279.372
279.427
278.302
288.443
306.34
306.727
291.128
289.666
292.424
280.471
267.734
254.847
255.187
268.013
268.711
255.724
256.065
269.001
281.463
281.515
280.373
290.608
308.627
309.018
293.312
291.85
294.628
282.577
269.699
256.607
256.955
269.984
270.695
257.5
257.854
270.991
283.589
283.638
282.481
292.808
310.947
311.346
295.53
294.069
296.867
284.718
271.702
258.402
258.765
271.993
272.717
259.319
259.682
273.019
285.751
285.797
284.624
295.043
313.294
313.712
297.784
296.322
299.139
286.895
273.742
260.245
260.61
274.039
274.776
261.181
261.549
275.083
287.948
287.992
286.804
297.314
315.675
316.109
300.073
298.61
301.446
289.107
275.819
262.127
262.498
276.123
276.872
263.084
263.459
277.186
290.18
290.221
289.017
299.613
318.103
318.531
302.398
300.93
303.787
291.353
277.934
264.05
264.43
278.243
279.004
265.027
265.41
279.323
292.443
292.482
291.265
301.948
320.555
320.99
304.751
303.282
306.157
293.629
280.08
266.01
266.397
280.394
281.165
267.003
267.393
281.488
294.735
294.773
293.543
304.314
323.034
323.479
307.133
305.663
308.556
295.934
282.257
268.003
268.398
282.575
283.358
269.016
269.416
283.688
297.058
297.094
295.849
306.713
325.541
326.004
309.542
308.074
310.984
298.27
284.468
270.038
270.444
284.792
285.585
271.073
271.481
285.919
299.408
299.443
298.187
309.137
328.075
328.552
311.982
310.51
313.437
300.63
286.707
272.112
272.523
287.034
287.834
273.159
273.571
288.17
301.779
301.813
300.547
311.582
330.639
331.125
314.443
312.967
315.911
303.01
288.965
274.21
274.628
289.296
290.103
275.272
275.691
290.443
304.169
304.203
302.927
314.05
333.222
333.718
316.928
315.446
318.407
305.41
291.246
276.338
276.766
291.58
292.393
277.414
277.847
292.736
306.576
306.61
305.327
316.537
335.832
336.331
319.429
317.94
320.917
307.823
293.542
278.493
278.931
293.878
294.693
279.577
280.014
295.036
308.989
309.026
307.737
319.037
338.456
338.96
321.943
320.444
323.437
310.241
295.844
280.66
281.103
296.18
296.997
281.753
282.193
297.34
311.407
311.447
310.153
321.545
341.094
341.6
324.465
322.956
325.964
312.661
298.149
282.85
283.291
298.485
299.3
283.953
284.387
299.642
313.819
313.863
312.569
324.057
343.737
344.252
326.991
325.464
328.486
315.07
300.446
285.046
285.484
300.778
301.59
286.14
286.569
301.92
316.215
316.269
314.973
326.558
346.394
346.896
329.513
327.964
331.002
317.465
302.72
287.223
287.657
303.048
303.856
288.309
288.748
304.184
318.596
318.656
317.361
329.057
349.046
349.557
332.017
330.453
333.503
319.842
304.979
289.401
289.841
305.303
306.096
290.495
290.926
306.422
320.944
321.011
319.731
331.536
351.69
352.195
334.509
332.916
335.978
322.174
307.194
291.572
291.995
307.505
308.272
292.631
293.041
308.582
323.229
323.31
322.049
333.978
354.316
354.815
336.96
335.331
338.404
324.441
309.33
293.667
294.074
309.627
310.375
294.697
295.1
310.674
325.453
325.548
324.303
336.364
356.925
357.4
339.367
337.697
340.787
326.65
311.405
295.721
296.127
311.692
312.418
296.744
297.14
312.702
327.607
327.719
326.496
338.708
359.499
359.962
341.714
340.002
343.1
328.774
313.399
297.744
298.13
313.664
314.341
298.714
299.077
314.597
329.642
329.781
328.597
340.968
362.014
362.458
343.99
342.21
345.318
330.766
315.239
299.639
299.991
315.474
316.099
300.535
300.872
316.326
331.534
331.701
330.561
343.12
364.486
364.886
346.15
344.303
347.422
332.613
316.919
301.404
301.737
317.126
317.696
302.253
302.566
317.889
333.262
333.465
332.377
345.156
366.871
367.244
348.186
346.258
349.383
334.276
318.407
303.052
303.339
318.567
319.039
303.783
304.026
319.174
334.754
335.007
333.997
347.02
369.163
369.488
350.065
348.023
351.158
335.684
319.583
304.424
304.632
319.68
320.04
304.989
305.16
320.108
335.964
336.273
335.352
348.682
371.351
371.622
351.737
349.573
352.724
336.798
320.392
305.462
305.602
320.41
320.614
305.814
305.9
320.591
336.832
337.213
336.402
350.114
373.421
373.641
353.184
350.868
354.039
337.54
320.702
305.981
305.99
320.609
320.651
305.986
305.822
320.425
337.26
337.733
337.062
351.262
375.375
375.545
354.354
351.862
355.071
337.827
320.409
305.718
305.415
320.045
319.961
305.188
304.708
319.458
337.166
337.765
337.25
352.102
377.24
377.379
355.24
352.556
355.837
337.642
319.289
304.308
303.614
318.615
318.354
302.98
302.013
317.511
336.517
337.328
336.872
352.651
379.072
379.207
355.877
352.978
356.379
336.949
317.153
301.136
299.904
316.143
315.702
298.788
297.282
314.559
335.433
336.405
335.979
352.975
380.97
381.16
356.346
353.262
356.852
335.854
314.015
295.905
294.09
312.728
312.092
292.393
290.217
310.698
334.119
335.181
334.749
353.275
383.076
383.394
356.853
353.628
357.482
334.575
309.969
288.174
285.665
308.494
307.755
283.345
280.599
306.299
332.974
333.953
333.445
353.802
385.568
386.061
357.653
354.412
358.615
333.556
305.591
278.103
275.221
304.199
303.587
272.647
269.721
302.337
332.657
333.414
332.66
354.949
388.564
389.267
359.174
356.01
360.597
333.612
301.822
267.169
264.319
300.816
300.486
261.904
259.329
299.853
333.568
334.13
332.86
356.995
392.061
392.954
361.599
358.578
363.496
335.073
299.761
257.257
255.18
299.488
299.698
253.641
252.189
299.659
335.95
336.317
334.529
360.028
395.923
396.902
364.905
362.003
367.118
337.905
300.318
251.316
250.518
300.463
301.443
250.187
250.009
301.773
339.372
339.635
337.518
363.738
399.917
400.901
368.732
365.86
371.015
341.507
302.943
250.069
250.293
303.365
304.67
250.948
251.463
305.166
343.035
343.317
341.169
367.607
403.831
404.763
372.582
369.534
374.561
345.05
306.436
252.434
253.084
306.875
307.915
254.101
254.612
308.21
345.954
346.421
344.627
371.031
407.24
407.743
375.686
372.409
376.994
347.368
308.766
255.242
255.48
308.754
308.945
255.581
255.98
308.809
346.912
347.702
346.643
373.148
409.504
409.234
377.257
373.667
377.809
348.228
310.323
276.705
289.562
320.11
327.308
296.387
303.349
331.376
356.078
353.798
347.827
373.755
410.241
408.797
378.033
376.825
381.974
360.017
335.418
307.956
310.803
337.108
337.636
309.959
314.051
339.804
362.625
362.57
360.253
380.049
409.955
408.072
383.585
381.512
384.147
363.841
340.852
315.23
316.298
340.912
341.718
318.261
315.814
339.073
359.372
362.813
362.497
380.602
407.371
401.926
381.531
376.53
375.62
357.028
336.16
313.107
307.459
330.104
325.526
302.936
299.083
320.782
340.446
346.851
350.713
367.683
395.658
384.776
365.178
356.76
357.511
339.045
318.783
296.789
293.817
315.528
312.955
291.207
291.434
271.179
270.377
269.775
269.557
271.618
252.744
252.807
253.375
271.941
272.099
290.555
289.713
289.66
289.85
290.614
309.585
310.99
328.616
332.376
334.693
351.127
379.037
370.411
349.792
343.928
343.47
327.202
325.594
308.35
307.632
332.533
306.791
308.7
330.596
304.312
288.855
289.191
272.987
256.039
238.725
239.854
257.263
273.626
274.928
259.095
241.979
245.636
229.381
230.963
233.054
249.335
247.54
263.22
261.48
276.517
277.653
298.839
278.245
264.25
266.68
251.983
236.857
221.317
223.922
228.439
213.734
216.251
231.291
234.079
219.331
223.797
209.882
213.044
217.715
204.186
207.355
212.363
199.499
203.038
208.145
195.706
199.224
204.351
192.522
196.2
201.406
189.906
193.722
199.336
188.11
193.703
182.906
187.162
198.304
202.794
192.524
182.042
185.96
191.245
180.906
184.819
195.441
205.375
201.33
196.765
206.789
210.981
214.919
218.207
209.316
199.923
190.21
180.102
185.533
175.764
180.115
185.484
175.765
179.805
185.024
175.357
180.565
171.313
175.611
181.025
171.834
177.242
168.357
172.738
178.058
169.181
174.452
165.895
170.234
175.585
166.936
172.264
163.848
168.22
173.511
165.084
170.348
162.23
166.617
171.891
163.713
168.975
161.009
165.38
170.616
162.619
167.958
160.155
165.645
157.989
162.525
167.862
160.101
165.377
157.75
162.129
169.948
174.511
167.293
159.675
164.946
157.406
162.765
155.387
159.9
165.142
157.714
163.022
155.689
161.034
153.847
158.306
165.658
170.248
163.469
156.284
161.575
154.433
159.811
152.758
157.345
162.6
155.452
160.783
153.684
159.058
152.078
156.623
163.742
168.374
161.787
154.782
160.08
153.132
158.521
151.602
156.996
150.182
154.825
160.052
153.234
158.572
151.806
157.202
150.475
155.873
149.215
153.829
160.623
166.882
162.257
168.268
163.581
169.623
164.987
171.023
166.478
161.762
168.117
163.516
169.723
165.077
171.291
166.653
172.819
178.61
174.604
170.341
165.791
172.134
167.504
173.818
169.302
164.559
171.129
166.553
172.935
168.317
174.644
180.637
176.72
172.51
168.005
174.608
170.019
176.647
172.182
167.473
174.42
169.9
176.715
172.124
178.898
185.296
181.395
177.21
172.748
179.715
175.202
170.424
177.677
173.023
180.035
175.441
182.635
178.264
173.587
181.118
176.692
184.096
179.677
174.961
182.65
178.261
185.951
181.646
176.942
184.931
180.437
188.263
183.814
179.058
187.168
182.791
190.899
186.614
181.916
190.357
185.909
194.29
189.864
185.124
193.911
189.635
198.482
194.378
189.851
199.051
194.842
190.189
199.579
195.08
204.208
208.501
212.601
203.813
207.647
211.129
203.372
206.912
221.411
210.364
202.176
206.34
198.316
202.601
206.228
198.337
201.985
194.87
198.652
212.349
202.359
194.767
199.028
191.629
195.971
202.616
212.947
209.132
218.974
206.437
233.395
251.147
227.747
220.258
209.02
209.803
216.999
227.745
214.418
234.886
247.475
266.936
252.64
238.946
230.686
220.285
217.012
212.915
221.557
233.529
223.371
220.325
216.307
212.864
208.843
204.385
214.653
209.998
205.438
216.499
212.724
208.409
219.756
215.832
211.855
223.883
220.477
216.319
228.594
224.753
221.004
233.929
230.985
227.342
240.585
237.26
249.93
247.981
245.593
242.897
239.553
253.985
256.674
259.213
271.342
269.697
267.418
280.034
301.077
280.977
300.959
282.008
282.236
281.289
260.958
261.923
264.987
253.068
255.158
243.814
246.184
265.555
247.68
236.437
240.128
242.894
232.415
235.283
253.802
252.716
268.709
251.277
288.952
320.647
306.309
284.5
265.456
288.189
305.262
326.069
357.286
324.219
358.886
325.366
322.658
362.794
325.097
304.096
289.812
288.832
302.622
324.043
304.376
368.159
362.521
365.085
339.58
390.107
418.223
380.491
431.23
404.704
408.807
445.746
421.123
424.49
458.559
432.984
432.501
465.463
438.359
436.238
469.659
440.993
437.488
472.152
441.283
436.505
471.614
439.231
433.864
470.141
436.159
430.479
467.778
432.666
426.793
464.551
428.887
422.905
460.975
424.979
418.983
457.209
421.103
415.19
453.355
417.414
411.632
449.493
413.992
408.381
445.69
410.838
405.391
441.997
407.908
402.608
438.43
405.132
399.95
434.988
402.447
397.356
431.657
399.803
394.777
428.419
397.163
392.187
425.257
394.513
389.573
422.154
391.842
386.927
419.096
389.146
384.251
416.078
386.426
381.553
413.087
383.686
378.826
410.12
380.934
376.084
407.172
378.175
373.338
404.253
375.414
370.574
401.337
372.638
367.815
398.458
369.883
365.072
395.596
367.134
362.336
392.756
364.395
359.606
389.937
361.671
356.894
387.142
358.966
354.201
384.373
356.283
351.525
381.624
353.624
348.876
378.906
350.988
346.253
376.214
348.378
343.658
373.551
345.796
341.091
370.916
343.243
338.554
368.309
340.719
336.046
365.735
338.224
333.573
363.189
335.762
331.134
360.673
333.332
328.721
358.187
330.935
326.339
355.732
328.572
323.996
353.306
326.241
321.685
350.914
323.942
319.405
348.546
321.679
317.156
346.215
319.442
314.95
343.913
317.24
312.767
341.641
315.071
310.619
339.399
312.935
308.499
337.185
310.83
306.418
335.003
308.757
304.366
332.846
306.717
302.341
330.721
304.703
300.35
328.623
302.72
298.389
326.554
300.766
296.457
324.511
298.841
294.553
322.5
296.942
292.681
320.512
295.074
290.834
318.553
293.233
289.015
316.614
291.42
287.219
314.708
289.63
285.453
312.821
287.865
283.713
310.962
286.127
282
309.126
284.413
280.304
307.315
282.724
278.637
305.524
281.062
276.991
303.758
279.419
275.369
302.014
277.799
273.771
300.293
276.202
272.194
298.593
274.626
270.64
296.914
273.071
269.106
295.257
271.538
267.593
293.619
270.024
266.1
292.002
268.531
264.627
290.404
267.056
263.173
288.827
265.601
261.738
287.269
264.165
260.323
285.729
262.747
258.926
284.21
261.344
257.548
282.709
259.963
256.185
281.221
258.601
254.838
279.752
257.254
253.51
278.3
255.923
252.2
276.862
254.608
250.906
275.442
253.306
249.627
274.035
252.022
248.361
272.645
250.751
247.109
271.267
249.494
245.87
269.906
248.249
244.647
268.55
247.015
243.427
267.214
245.795
242.219
265.868
244.573
241.013
264.545
243.355
239.805
263.201
242.122
238.594
261.822
240.898
237.418
260.174
239.669
236.233
260.076
238.513
235.351
261.441
238.75
238.161
265.891
245.24
249.478
284.557
264.072
270.882
260.171
255.136
286.512
295.387
305.097
315.499
311.537
295.82
290.486
308.451
320.923
322.213
323.744
330.449
330.346
330.26
337.407
336.697
336.116
341.305
342.18
343.248
347.893
346.727
345.7
348.909
349.981
351.17
352.448
349.176
344.495
338.333
330.419
320.231
306.83
288.068
286.932
306.231
307.597
288.858
290.288
309.178
323.274
321.777
320.207
330.892
332.66
334.077
335.567
324.761
310.633
291.731
293.177
312.134
313.624
294.623
296.072
315.123
329.284
327.77
326.264
337.056
338.554
340.063
348.276
346.788
345.311
343.844
342.381
340.963
339.412
345.838
347.257
348.661
353.257
351.884
350.518
353.764
355.091
356.425
357.771
354.646
350.089
351.526
352.973
354.429
358.873
357.454
356.045
359.128
360.494
361.869
363.626
362.299
360.979
359.669
358.369
357.078
355.79
354.508
353.256
352.08
351.012
352.117
353.157
354.305
354.453
353.342
352.339
351.785
352.746
353.816
352.492
351.467
350.551
348.721
349.592
350.572
348.131
347.198
346.373
343.574
344.354
345.239
346.178
349.119
351.609
353.578
354.948
355.63
355.522
356.764
358.008
359.254
359.225
358.027
356.828
356.1
357.25
358.399
359.552
360.428
360.507
361.768
363.038
364.316
364.082
362.857
361.639
360.71
361.876
363.047
361.316
360.199
359.088
357.982
356.881
355.782
354.681
352.662
353.713
354.76
352.118
351.122
350.122
347.131
348.079
349.025
349.97
353.115
355.809
356.862
357.92
358.983
356.128
355.119
354.115
350.918
351.869
352.824
349.134
348.232
347.333
346.438
345.544
344.649
343.751
342.849
341.959
341.122
340.386
336.863
337.555
338.346
334.45
333.705
333.055
329.009
329.617
330.318
325.99
325.333
324.765
320.361
320.892
321.505
316.899
316.327
315.834
311.216
311.673
312.204
312.769
317.507
322.158
326.688
331.062
335.242
339.186
340.039
340.887
341.732
337.64
336.845
336.046
331.817
332.568
333.315
334.06
338.433
342.575
343.419
344.267
345.116
340.822
340.024
339.228
334.805
335.552
336.3
331.592
330.892
330.194
329.496
328.798
328.099
327.396
322.819
323.477
324.13
319.345
318.736
318.124
313.342
313.911
314.475
315.038
319.951
324.781
325.432
326.084
326.736
321.769
321.163
320.556
315.599
316.161
316.723
311.63
311.111
310.592
310.073
309.553
309.031
308.504
307.974
307.45
306.959
306.536
301.825
302.214
302.667
297.881
297.465
297.108
292.412
292.738
293.119
288.403
288.057
287.76
283.177
283.445
283.759
279.208
278.926
278.685
274.306
274.522
274.773
275.041
279.509
284.093
288.773
293.525
298.325
303.15
303.639
304.125
304.606
299.662
299.22
298.775
293.935
294.342
294.746
295.147
300.101
305.085
305.563
306.04
306.518
301.414
300.977
300.539
295.546
295.945
296.343
291.332
290.971
290.609
290.247
289.883
289.516
289.146
284.431
284.765
285.096
280.409
280.112
279.812
275.312
275.579
275.843
276.105
280.704
285.425
285.752
286.078
286.403
281.579
281.288
280.996
276.366
276.625
276.882
272.335
272.109
271.881
271.652
271.421
271.188
270.952
270.712
270.475
270.253
270.062
265.973
266.14
266.335
262.374
262.205
262.059
258.341
258.465
258.61
255.064
254.942
254.837
251.564
251.652
251.753
248.696
248.612
248.539
245.776
245.838
245.907
245.976
248.782
251.86
255.193
258.764
262.554
266.543
266.752
266.959
267.162
263.089
262.913
262.735
258.919
259.07
259.22
259.367
263.262
267.364
267.563
267.762
267.959
263.773
263.604
263.434
259.512
259.656
259.799
256.056
255.938
255.818
255.697
255.575
255.45
255.323
251.967
252.071
252.173
249.032
248.951
248.868
246.043
246.107
246.169
246.229
249.111
252.273
252.371
252.468
252.563
249.339
249.265
249.189
246.288
246.345
246.4
243.762
243.723
243.683
243.641
243.598
243.553
243.505
243.454
243.4
243.344
243.29
241.098
241.142
241.186
239.278
239.246
239.216
237.674
237.685
237.703
236.501
236.494
236.5
235.701
235.688
235.688
235.217
235.221
235.231
235.215
235.692
236.513
237.724
239.309
241.228
241.266
241.299
241.33
239.376
239.358
239.336
237.741
237.753
237.76
237.765
239.392
241.358
241.385
241.41
241.434
239.429
239.418
239.406
237.768
237.77
237.771
236.499
236.507
236.513
236.518
236.521
236.523
236.521
235.691
235.686
235.678
235.188
235.199
235.208
235.176
235.669
235.659
235.647
235.634
235.131
235.148
235.163
235.114
235.62
236.49
237.77
239.439
241.456
243.799
246.454
249.412
252.657
256.172
259.94
263.94
268.154
272.56
277.139
281.868
286.727
291.692
296.741
301.85
306.994
312.149
317.285
322.376
327.389
332.292
337.05
341.622
345.966
350.037
353.78
357.139
360.049
362.438
364.224
365.313
365.6
364.962
363.253
360.3
355.896
349.773
341.58
330.806
316.627
297.525
298.988
318.138
319.659
300.461
301.946
321.19
335.421
333.873
332.336
343.105
344.64
346.183
347.736
336.98
322.735
303.444
304.959
324.29
325.861
306.487
308.03
327.445
341.731
340.135
338.551
349.301
350.877
352.465
360.512
358.948
357.394
355.851
354.318
352.795
351.279
357.372
358.856
360.348
364.636
363.184
361.738
364.645
366.046
367.453
368.868
366.097
361.849
363.36
364.88
366.41
370.532
369.045
367.567
370.291
371.721
373.16
374.606
372.028
367.949
362.087
354.064
343.34
329.043
309.587
311.157
330.657
332.283
312.747
314.352
333.927
348.249
346.599
344.962
355.676
357.3
358.937
360.588
349.915
335.586
315.975
317.616
337.263
338.955
319.275
320.953
340.665
355.003
353.291
351.596
362.253
363.931
365.623
373.439
371.78
370.134
368.501
366.879
365.27
363.673
369.499
371.059
372.629
376.571
375.047
373.533
376.061
377.523
378.994
380.474
378.104
374.21
375.802
377.406
379.02
382.764
381.201
379.647
381.962
383.46
384.966
385.862
384.417
382.979
381.549
380.127
378.712
377.305
375.906
374.513
373.127
371.749
370.377
369.013
367.656
366.305
366.892
368.191
369.494
369.044
367.795
366.551
365.406
366.595
367.787
368.985
370.298
370.805
372.122
373.445
374.775
374.097
372.825
371.559
370.188
371.396
372.608
370.419
369.266
368.117
366.972
365.833
364.697
363.565
361.12
362.196
363.274
360.195
359.174
358.155
354.741
355.704
356.67
357.639
361.221
364.357
365.443
366.533
367.627
364.316
363.282
362.25
358.611
359.585
360.562
361.541
365.354
368.725
371.577
373.826
375.374
376.111
377.453
378.802
380.157
379.24
377.946
376.657
375.048
376.275
377.508
378.745
380.54
381.519
382.888
384.263
385.645
384.474
383.157
381.845
379.987
381.234
382.486
379.796
378.609
377.427
376.248
375.074
373.904
372.738
369.826
370.93
372.038
368.486
367.439
366.395
362.523
363.507
364.494
365.483
369.536
373.15
374.265
375.384
376.506
372.703
371.644
370.589
366.474
367.468
368.464
369.463
373.764
377.632
380.988
383.743
385.798
387.034
387.315
386.481
384.337
380.646
375.11
367.329
356.73
342.393
322.651
324.367
344.138
345.901
326.103
327.859
347.682
362.009
360.233
358.473
369.05
370.786
372.537
374.302
363.801
349.481
329.634
331.429
351.299
353.135
333.245
335.081
354.99
369.281
367.436
365.61
376.082
377.878
379.689
387.183
385.418
383.666
381.928
380.203
378.492
376.794
382.284
383.933
385.595
389.118
387.514
385.92
388.005
389.538
391.08
392.633
390.734
387.268
388.954
390.652
392.362
395.645
393.997
392.36
394.194
395.766
397.347
398.937
397.304
394.085
388.963
381.516
371.139
356.865
336.938
338.816
358.758
360.672
340.717
342.639
362.606
376.827
374.913
373.017
383.359
385.218
387.093
388.984
378.76
364.558
344.581
346.552
366.532
368.526
348.541
350.555
370.541
384.666
382.679
380.711
390.892
392.817
394.759
401.826
399.945
398.077
396.225
394.387
392.565
390.757
395.82
397.568
399.33
402.349
400.656
398.974
400.538
402.148
403.769
405.399
404.053
401.104
402.891
404.692
406.506
409.237
407.497
405.77
407.04
408.691
410.353
410.114
408.533
406.961
405.398
403.844
402.299
400.763
399.235
397.717
396.206
394.702
393.208
391.723
390.245
388.776
388.43
389.833
391.242
389.804
388.462
387.127
385.006
386.273
387.546
388.824
391.151
392.659
394.084
395.516
396.956
395.232
393.865
392.505
390.107
391.395
392.689
389.448
388.226
387.009
385.796
384.587
383.383
382.183
378.761
379.894
381.031
376.967
375.896
374.829
370.464
371.467
372.473
373.481
378.04
382.171
383.315
384.463
385.614
381.278
380.195
379.116
374.491
375.503
376.519
377.535
382.363
386.77
390.675
393.988
396.604
398.401
399.854
401.316
402.784
400.76
399.368
397.983
395.293
396.602
397.917
399.238
402.158
404.26
405.744
407.235
408.735
406.391
404.973
403.562
400.563
401.894
403.231
399.383
398.125
396.872
395.624
394.381
393.141
391.905
387.928
389.091
390.255
385.636
384.542
383.451
378.556
379.577
380.6
381.627
386.733
391.424
392.598
393.774
394.954
390.039
388.934
387.831
382.655
383.685
384.719
385.752
391.147
396.138
400.645
404.573
407.815
410.242
411.704
412.024
410.989
408.334
403.724
396.716
386.672
372.578
352.59
354.653
374.633
376.713
356.737
358.846
378.814
392.808
390.743
388.698
398.692
400.685
402.696
404.725
394.893
380.937
360.98
363.141
383.082
385.252
365.323
367.533
387.442
401.269
399.123
396.998
406.772
408.837
410.921
417.451
415.441
413.448
411.471
409.511
407.566
405.637
410.175
412.031
413.9
416.318
414.529
412.753
413.707
415.401
417.104
418.819
418.119
415.784
417.682
419.595
421.522
423.598
421.759
419.932
420.545
422.281
424.029
425.788
425.45
423.464
419.477
413.024
403.436
389.656
369.768
372.029
391.894
394.153
374.316
376.63
396.437
410.064
407.834
405.624
415.146
417.288
419.447
421.626
412.315
398.747
378.969
381.336
401.076
403.434
383.729
386.148
405.814
419.204
416.885
414.59
423.825
426.045
428.286
434.15
432
429.869
427.755
425.661
423.584
421.521
425.421
427.394
429.382
431.087
429.194
427.316
427.559
429.341
431.135
432.94
432.992
431.385
433.404
435.439
437.49
438.792
436.845
434.912
434.757
436.586
438.427
436.689
434.955
433.231
431.517
429.812
428.118
426.433
424.758
423.093
421.438
419.792
418.156
416.529
414.913
413.304
411.757
413.28
414.81
412.127
410.684
409.246
405.922
407.276
408.633
409.998
413.577
416.348
417.894
419.448
421.011
417.969
416.498
415.034
411.367
412.743
414.124
409.605
408.312
407.023
405.738
404.459
403.183
401.912
397.327
398.518
399.712
394.488
393.371
392.259
386.789
387.828
388.869
389.912
395.607
400.91
402.112
403.317
404.526
398.981
397.854
396.729
390.957
392.004
393.052
394.102
400.11
405.738
410.903
415.51
419.447
422.582
424.161
425.748
427.343
423.92
422.422
420.931
416.902
418.3
419.703
421.111
425.425
428.947
430.559
432.179
433.807
429.98
428.455
426.937
422.525
423.944
425.369
420.11
418.782
417.458
416.139
414.823
413.512
412.206
406.954
408.173
409.395
403.514
402.377
401.242
395.154
396.207
397.262
398.318
404.653
410.62
411.849
413.081
414.315
408.082
406.937
405.794
399.376
400.434
401.493
402.553
409.229
415.552
421.441
426.799
431.512
435.444
438.433
440.281
440.753
439.557
436.319
430.547
421.545
408.218
388.596
391.07
410.648
413.105
393.568
396.098
415.584
428.709
426.298
423.91
432.829
435.132
437.456
439.803
431.144
418.091
398.652
401.234
420.623
423.181
403.843
406.48
425.766
438.598
436.089
433.604
442.172
444.563
446.978
452.035
449.73
447.446
445.181
442.937
440.712
438.506
441.64
443.741
445.858
446.721
444.717
442.728
442.146
444.023
445.913
447.815
448.74
447.992
450.143
452.311
454.496
454.882
452.82
450.772
449.729
451.656
453.594
455.545
456.958
456.7
454.36
449.415
441.134
428.378
409.144
411.837
431.019
433.688
414.554
417.302
436.385
448.901
446.285
443.696
451.877
454.362
456.872
459.407
451.544
439.111
420.077
422.882
441.866
444.653
425.715
428.578
447.472
459.644
456.914
454.216
461.965
464.549
467.158
471.215
468.745
466.297
463.867
461.459
459.072
456.705
458.92
461.158
463.414
463.276
461.155
459.05
457.507
459.481
461.466
463.461
465.411
465.686
467.975
470.281
472.603
471.896
469.722
467.56
465.467
467.483
469.507
465.752
463.874
462
460.133
458.275
456.425
454.582
452.748
450.924
449.111
447.306
445.511
443.727
441.952
440.188
437.089
438.742
440.404
436.147
434.595
433.05
428.234
429.675
431.12
432.57
437.706
442.074
443.753
445.438
447.13
442.415
440.84
439.271
434.025
435.483
436.945
430.859
429.505
428.154
426.805
425.459
424.116
422.777
416.792
418.034
419.279
412.676
411.526
410.377
403.613
404.673
405.733
406.792
413.827
420.525
421.773
423.022
424.271
417.278
416.128
414.978
407.851
408.907
409.962
411.014
418.427
425.521
432.215
438.411
443.996
448.831
450.539
452.252
453.973
448.768
447.173
445.582
439.881
441.352
442.826
444.3
450.366
455.7
457.43
459.167
460.904
455.169
453.569
451.966
445.776
447.25
448.719
441.693
440.347
438.997
437.643
436.286
434.929
433.572
426.77
428.018
429.264
421.856
420.716
419.573
412.061
413.105
414.143
415.172
422.991
430.507
431.746
432.979
434.202
426.348
425.238
424.118
416.197
417.207
418.206
409.85
408.955
408.046
407.125
406.193
405.253
404.305
403.351
402.392
401.429
400.462
399.492
398.52
397.547
396.571
395.595
394.619
393.642
392.665
391.688
390.711
389.735
388.759
387.785
386.811
385.838
384.866
383.895
382.926
381.958
380.991
380.025
379.062
378.099
377.138
376.179
375.221
374.264
373.31
372.357
371.405
370.456
369.508
368.562
367.618
366.675
365.734
364.796
363.858
362.923
361.99
361.058
360.129
359.201
358.275
357.351
356.429
355.51
354.592
353.676
352.763
351.852
350.943
346.82
347.675
348.533
344.031
343.227
342.424
337.801
338.553
339.306
340.059
344.836
349.391
350.252
351.114
351.978
347.262
346.452
345.644
340.814
341.57
342.327
337.218
336.512
335.807
335.103
334.399
333.697
332.994
328.043
328.696
329.351
324.198
323.59
322.983
317.847
318.409
318.971
319.533
324.806
330.006
330.662
331.317
331.972
326.628
326.021
325.412
320.095
320.655
321.217
321.778
327.235
332.628
337.924
343.085
348.073
352.844
353.711
354.58
355.45
350.512
349.698
348.885
343.843
344.602
345.362
346.123
351.328
356.322
357.195
358.07
358.946
353.78
352.961
352.144
346.884
347.646
348.409
342.877
342.168
341.46
340.752
340.044
339.337
338.63
333.285
333.941
334.597
329.057
328.45
327.843
322.338
322.898
323.458
324.017
329.664
335.254
335.91
336.566
337.223
331.483
330.877
330.271
324.575
325.133
325.691
319.877
319.366
318.854
318.342
317.829
317.315
316.801
316.286
315.77
315.254
314.738
314.221
313.703
313.185
312.667
307.471
307.947
308.422
303.155
302.721
302.286
297.137
297.533
297.928
298.322
303.589
308.897
309.371
309.844
310.317
304.884
304.453
304.021
298.715
299.107
299.498
294.182
293.83
293.476
293.122
292.766
292.409
292.051
287.05
287.371
287.692
282.729
282.444
282.157
277.394
277.648
277.901
278.152
283.014
288.011
288.329
288.646
288.962
283.859
283.579
283.297
278.402
278.65
278.897
279.142
284.138
289.276
294.534
299.888
305.314
310.789
311.26
311.731
312.2
306.599
306.172
305.744
300.276
300.664
301.05
301.436
307.025
312.669
313.137
313.604
314.069
308.296
307.874
307.45
301.819
302.202
302.583
296.955
296.613
296.27
295.926
295.58
295.232
294.884
289.589
289.9
290.21
284.966
284.691
284.415
279.386
279.628
279.869
280.108
285.239
290.519
290.826
291.132
291.436
286.048
285.78
285.51
280.345
280.581
280.815
281.047
286.314
291.738
297.295
302.963
308.718
314.534
320.386
326.247
332.089
337.879
343.585
349.172
354.599
359.823
360.701
361.581
362.463
357.062
356.24
355.419
349.935
350.7
351.464
352.229
357.885
363.345
364.229
365.114
366
360.358
359.533
358.708
352.995
353.76
354.527
348.55
347.84
347.131
346.422
345.713
345.003
344.294
338.535
339.191
339.847
333.903
333.299
332.694
326.804
327.359
327.914
328.468
334.507
340.502
341.157
341.813
342.468
336.314
335.713
335.11
329.021
329.573
330.125
330.675
336.915
343.121
349.26
355.294
361.184
366.888
367.777
368.667
369.558
363.666
362.837
362.012
356.059
356.827
357.594
358.361
364.494
370.45
371.342
372.237
373.131
366.983
366.153
365.323
359.129
359.896
360.664
354.218
353.511
352.803
352.095
351.386
350.678
349.968
343.775
344.428
345.081
338.713
338.116
337.517
331.224
331.771
332.319
332.864
339.312
345.733
346.384
347.035
347.684
341.098
340.504
339.908
333.409
333.952
334.493
327.898
327.408
326.915
326.421
325.925
325.429
324.93
324.43
323.927
323.425
322.921
322.416
321.91
321.403
320.895
314.998
315.46
315.921
309.974
309.557
309.138
303.342
303.719
304.094
304.468
310.39
316.382
316.84
317.298
317.754
311.63
311.217
310.805
304.84
305.211
305.58
299.63
299.302
298.972
298.64
298.306
297.971
297.634
292.039
292.337
292.635
287.102
286.842
286.579
281.277
281.506
281.732
281.957
287.361
292.93
293.223
293.515
293.805
288.126
287.873
287.618
282.18
282.4
282.619
282.834
288.377
294.091
299.956
305.947
312.039
318.209
318.661
319.112
319.563
313.257
312.853
312.447
306.311
306.675
307.036
307.395
313.66
320.011
320.457
320.901
321.343
314.854
314.459
314.06
307.752
308.105
308.458
302.178
301.868
301.555
301.24
300.922
300.602
300.28
294.377
294.66
294.941
289.116
288.872
288.626
283.049
283.26
283.47
283.676
289.357
295.219
295.495
295.769
296.04
290.066
289.833
289.596
283.881
284.082
284.281
278.706
278.54
278.371
278.199
278.025
277.848
277.669
277.488
277.304
277.117
276.929
276.739
276.547
276.353
276.157
275.958
275.759
275.557
275.353
275.148
274.941
274.732
274.522
274.31
274.097
273.882
273.665
273.447
273.228
273.007
272.784
268.348
268.541
268.732
264.434
264.271
264.106
260.079
260.217
260.354
260.489
264.595
268.921
269.109
269.296
269.481
265.07
264.913
264.755
260.622
260.754
260.884
256.945
256.839
256.732
256.623
256.513
256.401
256.287
252.749
252.84
252.929
249.621
249.553
249.483
246.507
246.558
246.608
246.655
249.688
253.017
253.103
253.187
253.27
249.88
249.817
249.754
246.702
246.747
246.791
246.833
249.94
253.352
257.048
261.013
265.225
269.664
269.846
270.026
270.204
265.68
265.53
265.378
261.14
261.265
261.389
261.511
265.828
270.381
270.556
270.729
270.901
266.263
266.12
265.975
261.631
261.749
261.866
257.731
257.638
257.544
257.448
257.351
257.252
257.151
253.431
253.509
253.586
250.113
250.057
250
246.873
246.913
246.95
246.986
250.168
253.661
253.734
253.806
253.876
250.322
250.272
250.221
247.021
247.054
247.086
244.183
244.167
244.15
244.131
244.112
244.09
244.068
244.043
244.018
243.991
243.963
243.933
243.901
243.869
243.835
241.477
241.497
241.515
239.459
239.454
239.447
237.767
237.764
237.759
237.752
239.463
241.531
241.547
241.56
241.573
239.467
239.467
239.465
237.745
237.736
237.725
236.39
236.409
236.425
236.441
236.455
236.468
236.48
235.604
235.587
235.569
235.053
235.075
235.095
235.03
235.549
235.528
235.506
235.482
234.954
234.981
235.006
234.927
235.458
236.371
237.714
239.465
241.584
241.593
241.602
241.609
239.454
239.459
239.463
237.701
237.687
237.672
237.655
239.447
241.614
241.619
241.622
241.624
239.421
239.431
239.44
237.638
237.619
237.599
236.204
236.231
236.257
236.282
236.306
236.329
236.35
235.432
235.405
235.377
234.837
234.868
234.898
234.805
235.348
235.318
235.287
235.254
234.703
234.738
234.772
234.667
235.221
236.176
237.579
239.409
241.624
244.197
247.116
250.371
253.945
257.821
261.981
266.404
271.07
271.238
271.404
271.568
266.817
266.681
266.544
262.094
262.206
262.315
262.422
266.951
271.73
271.89
272.048
272.204
267.34
267.212
267.082
262.529
262.632
262.733
258.406
258.328
258.248
258.167
258.083
257.997
257.91
254.012
254.077
254.14
250.506
250.463
250.417
247.145
247.173
247.199
247.223
250.548
254.202
254.262
254.32
254.376
250.664
250.627
250.589
247.246
247.267
247.287
247.306
250.7
254.431
258.482
262.833
267.465
272.357
272.508
272.657
272.804
267.828
267.709
267.588
262.931
263.026
263.119
263.21
267.945
272.948
273.09
273.229
273.365
268.279
268.17
268.058
263.299
263.385
263.468
258.956
258.894
258.831
258.765
258.698
258.627
258.556
254.483
254.535
254.584
250.795
250.766
250.733
247.323
247.337
247.352
247.364
250.824
254.63
254.676
254.718
254.759
250.898
250.875
250.851
247.374
247.383
247.391
244.25
244.257
244.261
244.264
244.266
244.266
244.266
244.263
244.26
244.255
244.249
244.241
244.232
244.222
244.21
241.624
241.622
241.618
239.369
239.384
239.397
237.557
237.534
237.51
237.485
239.353
241.614
241.608
241.602
241.594
239.3
239.319
239.336
237.459
237.432
237.405
235.953
235.987
236.021
236.054
236.085
236.117
236.146
235.187
235.153
235.117
234.554
234.592
234.63
234.515
235.08
235.043
235.005
234.966
234.393
234.434
234.475
234.35
234.926
235.918
237.376
239.28
241.584
241.574
241.563
241.55
239.214
239.237
239.259
237.347
237.316
237.285
237.253
239.19
241.536
241.521
241.504
241.488
239.113
239.14
239.165
237.221
237.187
237.153
235.653
235.693
235.732
235.77
235.808
235.845
235.882
234.886
234.845
234.804
234.221
234.265
234.308
234.177
234.762
234.72
234.677
234.633
234.041
234.087
234.132
233.995
234.589
235.612
237.118
239.085
241.468
244.243
247.396
250.92
254.798
259.014
263.55
268.385
273.499
278.87
284.477
290.297
296.307
302.485
308.807
315.248
321.783
328.387
335.033
341.692
348.333
354.925
361.431
367.813
374.027
374.924
375.822
376.72
370.306
369.475
368.644
362.198
362.965
363.732
364.498
371.137
377.619
378.518
379.418
380.319
373.63
372.799
371.968
365.264
366.029
366.793
359.851
359.15
358.448
357.745
357.042
356.337
355.631
348.981
349.628
350.273
343.462
342.874
342.283
335.571
336.107
336.642
337.174
344.049
350.917
351.56
352.201
352.841
345.799
345.218
344.635
337.704
338.232
338.757
339.279
346.377
353.478
360.55
367.557
374.461
381.219
382.12
383.021
383.922
376.949
376.12
375.291
368.319
369.08
369.84
370.598
377.777
384.823
385.723
386.622
387.52
380.251
379.428
378.603
371.354
372.108
372.859
365.385
364.702
364.016
363.327
362.636
361.943
361.247
354.113
354.746
355.377
348.097
347.526
346.953
339.799
340.315
340.827
341.336
348.663
356.005
356.629
357.25
357.867
350.341
349.786
349.227
341.841
342.341
342.837
335.385
334.946
334.502
334.053
333.599
333.141
332.68
332.214
331.745
331.274
330.799
330.321
329.841
329.359
328.874
322.221
322.656
323.089
316.413
316.027
315.639
309.154
309.498
309.839
310.176
316.796
323.52
323.947
324.371
324.793
317.925
317.552
317.176
310.511
310.842
311.17
304.551
304.266
303.978
303.686
303.39
303.092
302.79
296.572
296.834
297.093
290.97
290.749
290.525
284.67
284.859
285.046
285.229
291.188
297.348
297.6
297.848
298.093
291.82
291.613
291.403
285.408
285.584
285.756
285.923
292.022
298.333
304.831
311.493
318.295
325.21
325.624
326.034
326.44
319.378
319.021
318.66
311.813
312.128
312.438
312.743
319.73
326.842
327.238
327.63
328.015
320.753
320.418
320.076
313.043
313.337
313.625
306.656
306.413
306.163
305.907
305.645
305.379
305.107
298.568
298.799
299.025
292.602
292.413
292.22
286.086
286.245
286.398
286.547
292.785
299.246
299.461
299.67
299.872
293.298
293.133
292.962
286.689
286.826
286.956
287.08
293.456
300.069
306.893
313.906
321.081
328.394
335.819
343.327
350.891
358.48
366.064
373.607
381.073
388.418
389.313
390.207
391.098
383.52
382.707
381.891
374.353
375.094
375.832
376.565
384.328
391.987
392.872
393.753
394.629
386.725
385.933
385.134
377.293
378.013
378.727
370.676
370.037
369.391
368.737
368.076
367.41
366.739
359.089
359.692
360.29
352.507
351.974
351.435
343.811
344.289
344.76
345.223
353.033
360.881
361.465
362.041
362.608
354.559
354.059
353.551
345.678
346.124
346.559
346.982
355.047
363.166
371.306
379.434
387.512
395.5
396.364
397.221
398.068
389.82
389.06
388.291
380.131
380.818
381.494
382.156
390.568
398.906
399.73
400.542
401.338
392.72
392.02
391.301
382.803
383.433
384.044
375.349
374.823
374.276
373.711
373.13
372.534
371.926
363.712
364.247
364.766
356.437
355.988
355.524
347.394
347.791
348.173
348.538
356.87
365.271
365.759
366.227
366.673
358.049
357.678
357.284
348.884
349.208
349.509
341.084
340.848
340.589
340.306
340.005
339.685
339.35
339.001
338.638
338.264
337.878
337.483
337.078
336.666
336.246
328.767
329.133
329.49
322.023
321.717
321.403
314.18
314.446
314.703
314.951
322.32
329.839
330.179
330.507
330.826
323.148
322.884
322.606
315.191
315.418
315.633
308.307
308.136
307.954
307.76
307.557
307.344
307.122
300.256
300.437
300.608
293.883
293.749
293.607
287.196
287.305
287.405
287.496
294.008
300.771
300.923
301.064
301.194
294.319
294.227
294.123
287.578
287.649
287.708
287.755
294.399
301.31
308.464
315.836
323.401
331.131
331.423
331.7
331.961
324.068
323.862
323.639
316.025
316.199
316.355
316.493
324.258
332.202
332.425
332.626
332.802
324.691
324.57
324.423
316.611
316.707
316.778
309.086
309.064
309.013
308.94
308.847
308.736
308.608
301.413
301.5
301.571
294.55
294.516
294.465
287.789
287.806
287.811
287.796
294.565
301.623
301.655
301.664
301.653
294.496
294.541
294.564
287.766
287.714
287.64
281.109
281.206
281.282
281.339
281.377
281.4
281.407
281.402
281.384
281.352
281.311
281.26
281.198
281.128
281.049
280.964
280.872
280.772
280.666
280.555
280.438
280.317
280.19
280.059
279.923
279.784
279.64
279.493
279.342
279.188
279.03
273.629
273.757
273.881
268.686
268.588
268.488
263.628
263.704
263.777
263.847
268.78
274.002
274.12
274.234
274.345
269.043
268.959
268.871
263.914
263.978
264.038
259.351
259.311
259.269
259.223
259.175
259.124
259.07
254.834
254.868
254.9
250.97
250.955
250.938
247.4
247.402
247.403
247.401
250.983
254.929
254.956
254.98
255.002
251.007
251.002
250.993
247.398
247.392
247.385
247.375
251.01
255.02
259.387
264.095
269.123
274.451
274.554
274.651
274.745
269.339
269.271
269.199
264.148
264.197
264.242
264.283
269.402
274.833
274.916
274.994
275.065
269.56
269.513
269.46
264.319
264.351
264.377
259.535
259.527
259.514
259.497
259.475
259.45
259.42
255.035
255.047
255.056
251.003
251.009
251.011
247.363
247.349
247.332
247.313
250.995
255.061
255.063
255.061
255.054
250.949
250.969
250.983
247.29
247.265
247.237
243.927
243.962
243.996
244.026
244.055
244.081
244.105
244.127
244.147
244.166
244.183
244.198
244.211
244.223
244.234
241.449
241.428
241.406
238.996
239.027
239.056
237.082
237.046
237.009
236.971
238.965
241.382
241.358
241.331
241.304
238.864
238.899
238.932
236.932
236.893
236.853
235.315
235.359
235.402
235.446
235.488
235.53
235.571
234.545
234.5
234.455
233.855
233.902
233.949
233.808
234.409
234.364
234.317
234.271
233.665
233.713
233.76
233.616
234.224
235.27
236.812
238.828
241.275
241.245
241.213
241.179
238.714
238.754
238.792
236.77
236.728
236.684
236.64
238.674
241.144
241.107
241.068
241.027
238.543
238.588
238.632
236.594
236.548
236.5
234.94
234.989
235.038
235.086
235.133
235.18
235.225
234.176
234.129
234.08
233.47
233.519
233.568
233.42
234.032
233.983
233.933
233.882
233.269
233.32
233.37
233.217
233.831
234.889
236.451
238.496
240.983
243.888
247.205
250.927
255.043
259.538
264.397
269.601
275.13
275.189
275.24
275.284
269.686
269.664
269.636
264.413
264.42
264.422
264.416
269.698
275.319
275.346
275.362
275.367
269.683
269.698
269.701
264.404
264.381
264.35
259.386
259.43
259.465
259.493
259.514
259.528
259.536
255.027
255.005
254.979
250.832
250.868
250.9
247.17
247.13
247.087
247.039
250.79
254.946
254.907
254.861
254.808
250.63
250.69
250.743
246.986
246.927
246.863
246.793
250.562
254.746
259.334
264.31
269.659
275.363
275.345
275.316
275.271
269.512
269.574
269.623
264.259
264.196
264.121
264.032
269.436
275.21
275.134
275.039
274.924
269.107
269.235
269.344
263.929
263.811
263.674
258.642
258.782
258.907
259.017
259.114
259.198
259.271
254.676
254.597
254.506
250.311
250.403
250.487
246.715
246.631
246.537
246.435
250.208
254.405
254.291
254.164
254.023
249.828
249.967
250.094
246.322
246.2
246.065
242.736
242.865
242.983
243.092
243.191
243.283
243.368
243.445
243.517
243.583
243.644
243.701
243.753
243.802
243.847
240.937
240.888
240.837
238.342
238.396
238.447
236.4
236.347
236.293
236.236
238.287
240.782
240.723
240.661
240.594
238.099
238.165
238.227
236.177
236.116
236.051
234.491
234.554
234.615
234.673
234.73
234.784
234.838
233.779
233.725
233.671
233.056
233.111
233.164
233.001
233.615
233.557
233.497
233.435
232.823
232.884
232.943
232.759
233.37
234.425
235.983
238.029
240.523
240.446
240.364
240.275
237.79
237.875
237.954
235.911
235.835
235.753
235.666
237.698
240.179
240.075
239.963
239.842
237.379
237.494
237.6
235.573
235.473
235.365
233.836
233.938
234.033
234.121
234.204
234.282
234.355
233.303
233.232
233.156
232.549
232.623
232.693
232.471
233.076
232.991
232.9
232.802
232.204
232.299
232.388
232.101
232.696
233.725
235.249
237.255
239.708
242.596
245.917
249.675
253.866
258.484
263.519
268.959
274.788
280.989
287.542
294.425
301.616
309.088
316.82
324.785
332.951
341.293
349.784
358.395
367.094
375.852
384.633
393.4
402.114
410.729
419.192
427.445
435.418
443.03
450.185
456.769
462.641
467.635
471.538
474.081
474.94
473.704
469.792
462.404
450.324
431.469
434.4
453.21
456.133
437.363
440.362
459.09
470.867
468.016
465.194
472.45
475.133
477.839
480.566
473.748
462.086
443.4
446.482
465.119
468.193
449.609
452.788
471.302
482.55
479.59
476.655
483.311
486.072
488.846
491.565
488.984
486.407
483.839
481.281
478.739
476.213
477.291
479.654
482.028
480.693
478.482
476.277
473.577
475.619
477.665
479.711
482.909
484.411
486.8
489.192
491.584
489.55
487.342
485.127
481.753
483.79
485.815
487.823
491.744
493.971
494.145
491.627
485.528
474.448
456.018
459.308
477.626
480.831
462.655
466.058
484.054
494.504
491.514
488.518
494.408
497.181
499.936
502.658
497.473
487.28
469.512
472.998
490.491
493.659
476.498
479.977
496.758
506.061
503.276
500.404
505.332
507.937
510.45
511.352
509.088
506.726
504.291
501.801
499.272
496.716
496.345
498.7
501.022
498.181
496.07
493.92
489.807
491.758
493.667
495.517
500.242
503.302
505.523
507.666
509.709
505.949
504.148
502.237
497.295
498.981
500.551
493.87
492.529
491.064
489.499
487.855
486.146
484.387
482.59
480.764
478.916
477.052
475.176
473.294
471.408
469.52
464.38
466.117
467.849
461.541
459.957
458.366
451.646
453.099
454.537
455.962
463.112
469.573
471.287
472.984
474.661
467.716
466.205
464.668
457.367
458.748
460.099
451.951
450.754
449.522
448.262
446.979
445.677
444.36
436.622
437.809
438.98
430.638
429.593
428.528
420.16
421.108
422.03
422.928
431.656
440.128
441.25
442.337
443.387
434.507
433.597
432.643
423.791
424.613
425.39
426.115
435.368
444.393
453.107
461.412
469.196
476.311
477.926
479.496
481.011
473.347
472.021
470.632
462.681
463.894
465.037
466.098
474.595
482.454
483.81
485.059
486.177
477.693
476.79
475.749
467.06
467.901
468.601
459.056
458.544
457.888
457.109
456.225
455.256
454.211
445.341
446.224
447.033
437.555
436.902
436.17
426.781
427.371
427.879
428.293
438.115
447.747
448.356
448.84
449.16
439.016
438.876
438.565
428.587
428.732
428.756
428.618
439.024
449.291
459.373
469.131
478.43
487.132
495.055
501.975
507.612
511.619
513.488
512.837
508.723
499.743
483.391
486.68
502.568
505.174
489.773
492.592
507.506
515.516
513.501
511.218
515.058
517.071
518.817
520.159
517.177
509.48
495.045
496.766
510.696
511.119
497.475
496.806
510.253
517.457
518.294
518.061
520.799
520.919
520.073
519.313
520.224
520.191
519.756
518.717
517.219
515.457
513.36
514.883
516.119
511.31
510.353
509.096
503.211
504.216
504.873
505.142
511.8
516.87
517.148
517.02
515.954
510.286
511.575
511.947
505.134
504.463
502.974
500.683
508.011
513.746
517.152
517.949
515.26
507.771
493.841
489.764
503.626
496.824
482.398
471.298
488.104
498.223
505.298
511.256
514.219
509.048
502.96
495.934
490.42
478.857
459.633
448.878
469.396
460.017
439.823
410.525
402.107
431.028
450.674
462.837
472.445
481.714
487.774
478.785
469.207
471.171
480.511
489.143
496.864
503.447
508.949
513.598
510.424
506.21
501.047
495.971
500.896
504.864
497.649
493.806
489.041
483.319
489.995
494.754
487.377
479.086
470.053
466.575
475.169
483.02
476.687
469.232
461.066
454.172
461.918
468.991
475.303
480.785
485.411
489.183
492.167
494.458
496.085
497.021
497.302
497.186
496.79
496.045
487.887
488.37
488.56
479.238
479.202
478.953
469.426
469.513
469.331
468.781
478.905
488.489
487.922
486.785
485.074
475.059
476.844
478.115
467.833
466.448
464.582
453.789
455.732
457.223
458.305
459.019
459.401
459.49
449.265
448.997
448.45
437.721
438.408
438.833
428.282
427.719
426.909
425.819
436.741
447.595
446.393
444.807
442.799
431.706
433.767
435.434
424.421
422.686
420.584
418.09
429.222
440.334
451.35
462.182
472.705
482.765
479.787
476.073
471.585
461.713
466.07
469.725
459.204
455.609
451.379
446.515
456.657
466.322
460.309
453.594
446.25
437.568
444.536
450.919
441.03
434.953
428.333
418.706
425.005
430.801
436.053
440.739
444.849
448.382
437.377
433.91
429.916
418.998
422.884
426.288
415.182
411.842
408.063
403.841
414.633
425.394
420.356
414.818
408.814
398.76
404.491
409.791
399.184
394.105
388.627
382.778
392.63
402.383
411.95
421.227
430.084
438.363
445.858
452.311
457.386
460.443
461.295
459.195
453.007
441.513
423.163
396.036
391.21
387.104
358.227
357.111
324.374
294.385
275.403
278.945
259.393
241.332
230.601
226.83
237.552
233.349
223.666
226.925
244.112
242.819
230.138
220.13
224.502
227.892
218.989
222.448
238.676
236.65
249.973
234.359
268.146
294.911
264.49
294.867
301.547
274.914
257.739
262.23
245.54
229.781
225.746
231.836
251.545
278.229
276.918
256.158
239.73
225.516
227.928
247.67
262.783
286.141
265.285
311.499
307.968
331.808
330.757
328.908
356.326
354.316
372.669
377.812
382.449
401.043
408.413
415.709
432.382
423.271
414.221
422.961
432.956
443.009
448.895
438.464
428.037
417.706
413.108
405.326
393.794
386.468
396.539
387.915
379.185
367.347
351.761
348.546
331.926
330.752
313.634
293.168
297.686
277.199
282.584
261.224
240.683
227.624
233.159
221.569
206.464
193.294
189.497
196.175
192.386
199.727
202.665
197.057
189.862
194.082
187.076
191.396
195.103
188.162
191.892
185.627
189.494
201.993
198.005
207.821
197.674
203.909
213.166
201.124
220.52
236.494
231.302
247.64
227.008
243.985
269.688
286.835
300.536
299.746
313.916
314.361
328.652
325.817
322.436
312.457
310.331
300.513
288.918
275.233
258.319
264.312
246.586
228.791
217.526
204.686
194.69
188.876
182.116
186.238
190.007
184.141
187.865
199.792
191.647
195.514
189.421
183.232
187.422
180.975
184.945
178.786
183.116
186.885
180.829
184.673
179.107
182.896
194.529
186.686
190.523
184.723
178.989
183.206
177.258
181.341
175.553
179.945
185.11
194.876
190.344
197.828
186.905
188.268
193.511
200.924
221.549
205.608
198.062
190.16
188.577
194.042
202.739
191.001
193.013
198.562
206.494
213.803
228.849
210.164
215.011
223.217
236.976
218.487
213.08
223.22
232.41
247.199
260.923
255.271
269.134
271.848
280.671
280.133
278.42
289.564
299.284
297.438
289.496
288.381
294.909
300.461
304.194
307.49
314.414
318.627
325.558
330.75
335.724
340.421
344.738
355.922
361.739
371.908
379.442
384.643
393.93
403.419
407.525
397.536
387.752
388.994
399.029
409.246
419.616
430.093
440.605
451.051
450.425
440.154
429.757
427.683
437.809
447.75
443.096
433.545
423.771
413.866
417.475
419.344
408.997
398.761
388.674
387.078
397.119
407.269
403.912
393.97
384.093
374.322
377.182
378.772
379.162
378.178
375.545
371.09
364.625
357.321
349.9
343.759
337.528
331.224
324.882
320.186
314.675
309.912
305.154
309.048
312.169
318.528
321.494
328.542
335.662
342.832
350.051
354.732
362.85
366.631
368.818
359.67
357.904
349.359
346.748
338.899
331.178
323.581
316.114
314.523
307.635
305.819
303.339
300.199
296.39
291.876
286.578
280.355
272.975
264.441
253.486
239.811
246.552
231.995
216.069
206.241
212.179
203.245
191.52
180.459
176.643
181.931
178.056
183.776
187.156
184.36
188.21
182.757
177.191
181.419
175.617
179.622
174.06
178.355
172.511
176.658
180.506
175.538
179.443
173.922
177.858
172.861
176.799
171.245
165.314
159.039
152.351
157.687
151.025
156.456
149.811
155.244
148.656
153.382
158.61
151.963
157.307
150.679
156.071
149.447
154.841
148.265
152.931
159.606
164.267
158.104
151.517
156.851
150.295
155.702
149.155
154.556
148.065
152.817
158.019
151.486
156.869
150.383
155.834
149.371
154.863
148.43
153.931
147.538
152.381
157.643
151.242
156.652
150.32
155.862
149.54
155.099
148.74
154.296
147.946
152.879
158.192
151.797
157.279
150.929
156.468
150.086
155.661
149.252
154.817
148.388
153.343
158.66
152.208
157.693
151.312
156.915
150.526
156.165
149.75
155.365
148.957
154.031
159.431
153.015
158.58
152.202
157.86
151.476
157.149
150.73
156.426
150.024
155.173
160.627
154.203
159.845
153.475
159.244
152.866
158.648
152.206
157.989
151.506
156.748
162.288
155.776
161.536
155.036
160.879
154.351
160.22
153.646
159.526
152.901
158.26
163.907
157.261
163.139
156.581
162.583
156.017
162.053
155.469
161.515
154.886
160.894
154.239
159.755
166.397
172.42
167.173
173.034
167.728
173.526
168.236
174.028
168.73
174.454
169.305
175.093
170.118
164.902
170.866
165.726
171.538
166.387
172.08
166.963
172.646
167.615
173.258
168.332
163.232
169.119
164.067
169.748
164.666
170.287
165.204
170.754
165.833
171.476
166.688
161.637
167.459
162.479
168.177
163.187
168.803
163.851
169.463
164.595
170.191
165.411
160.462
166.308
161.425
167.105
162.186
167.83
162.902
168.489
163.701
169.373
164.739
159.842
165.694
160.868
166.543
161.672
167.283
162.437
168.036
163.26
168.829
164.147
159.28
165.101
160.287
165.921
161.06
166.659
161.798
167.332
162.616
168.289
163.727
158.883
164.762
159.998
165.75
160.96
166.676
161.93
167.652
162.976
168.698
164.14
159.398
165.385
160.735
166.559
161.887
167.704
163.025
168.776
174.15
170.074
165.749
161.128
167.021
162.32
168.188
163.544
169.364
164.816
160.071
166.168
161.511
167.44
162.736
168.666
163.979
169.843
174.278
178.587
173.072
177.158
171.849
176.198
170.606
174.77
178.624
173.873
177.807
172.511
176.467
171.6
175.481
185.875
179.489
183.338
178.332
173.191
177.463
172.081
176.137
170.953
175.29
169.824
174.008
177.871
173.222
177.167
172.001
175.963
171.341
175.41
170.201
174.321
169.539
173.627
184.088
177.833
172.552
176.845
171.912
176.369
171.221
175.509
170.49
175.005
169.685
174.002
177.973
173.466
177.529
172.495
176.571
172.039
176.181
171.059
175.202
170.489
174.598
184.844
178.902
173.724
178.101
173.135
177.656
172.451
176.747
171.726
176.281
170.966
175.371
179.441
174.923
179.058
174.015
178.162
173.661
177.919
172.823
177.121
172.439
176.728
187.114
181.198
175.973
180.45
175.535
180.196
175.072
179.564
174.54
179.265
173.929
178.482
182.653
178.122
182.388
177.352
181.644
177.097
181.496
176.335
180.75
175.964
180.367
190.883
185.041
179.788
184.48
179.434
184.272
178.996
183.603
178.509
183.357
178.015
182.7
177.441
171.734
165.517
158.867
164.858
158.224
164.277
157.631
163.714
157.024
163.095
156.315
161.879
168.638
173.989
167.695
160.949
167.041
160.279
166.447
159.641
165.824
158.928
164.643
170.594
163.713
169.914
163.031
169.341
162.401
168.751
161.749
168.099
161.013
166.897
172.96
165.845
172.158
165.06
171.467
164.33
170.759
163.538
169.526
175.737
168.557
175.06
167.887
174.492
167.238
173.852
166.523
172.71
179.086
171.753
178.402
171.079
177.843
170.458
177.203
169.71
176.024
183.453
190.163
184.207
190.709
184.711
191.081
185.241
191.627
185.927
179.989
186.546
180.706
187.097
181.257
187.491
181.755
187.99
182.418
176.677
183.167
177.523
183.83
178.144
184.334
178.794
184.996
179.613
173.96
180.314
174.728
180.903
175.309
181.339
175.795
181.803
176.357
182.307
176.98
171.502
177.702
172.262
178.248
172.811
178.733
173.331
179.171
184.628
179.863
174.82
169.468
175.362
169.983
175.851
170.525
176.319
171.071
176.871
182.436
186.831
181.704
186.11
181.482
186.024
180.845
185.443
180.657
185.214
195.94
190.014
194.396
189.389
184.237
189.202
183.849
188.669
183.392
188.471
182.886
187.803
192.321
187.569
192.192
186.915
191.576
186.783
191.572
186.148
190.952
185.844
190.631
201.847
195.704
190.087
195.146
189.697
194.924
189.185
194.209
188.554
193.917
198.689
193.279
198.157
193.17
198.155
192.566
197.59
192.343
197.415
208.974
202.836
197.022
202.337
196.732
202.235
196.357
201.665
195.842
189.486
182.536
175.036
181.834
174.283
181.185
173.538
180.428
172.63
179.087
185.709
177.891
184.74
176.905
183.842
175.866
182.427
189.178
181.189
188.267
180.245
187.382
179.24
185.977
192.878
184.676
191.848
183.643
190.919
182.566
189.5
196.64
188.266
195.731
187.243
194.762
186.08
193.157
200.389
191.637
199.102
190.271
197.452
206.155
213.95
207.342
214.986
208.524
201.768
209.502
202.825
210.256
203.614
210.788
204.352
197.741
205.152
198.669
205.815
199.519
206.656
200.488
194.054
201.294
194.964
202.007
195.75
202.629
196.566
190.312
197.446
191.258
198.096
192.064
198.867
192.983
186.825
193.765
187.68
194.391
188.302
194.837
188.843
195.327
201.472
206.469
200.868
205.941
200.727
205.912
200.105
205.348
199.782
204.986
217.176
210.541
204.427
209.958
203.955
209.699
203.341
208.943
214.099
208.639
213.948
207.915
213.384
207.597
213.068
225.808
218.876
212.462
218.196
211.933
217.92
211.386
217.348
222.875
217.192
222.872
216.534
222.303
216.095
221.832
235.346
227.968
221.108
227.246
220.478
213.089
204.928
196.077
203.896
194.945
202.795
193.618
201.054
210.12
218.316
211.322
219.111
212.19
219.834
226.957
232.684
226.238
232.156
225.926
231.871
224.973
217.186
208.667
199.477
207.388
198.001
205.571
213.345
203.853
211.905
202.188
209.849
219.453
226.743
217.764
208.061
216.317
206.394
214.333
222.5
212.508
220.979
210.726
218.793
228.935
238.032
230.453
239.076
231.715
224.134
232.903
225.486
233.861
241.519
234.955
228.11
220.92
229.124
222.1
214.863
223.194
216.071
224.029
230.743
237.338
230.034
236.559
242.637
236.116
242.179
256.313
248.752
254.774
248.09
240.85
247.724
240.067
246.89
253.226
246.402
252.808
245.239
236.617
227.108
216.791
225.448
214.857
223.164
231.765
221.047
229.886
218.879
227.23
238.161
246.122
235.781
224.57
233.058
244.086
253.897
262.76
255.528
248.009
240.101
249.398
241.637
233.66
243.033
235.216
244.104
251.45
258.68
250.564
257.767
264.491
257.088
263.75
279.612
270.986
277.707
270.089
261.682
252.387
242.028
230.697
239.963
228.301
237.122
246.187
234.145
243.058
252.514
240.413
250.288
237.747
247.026
259.558
268.531
256.612
243.662
253.105
263.179
250.097
260.561
247.138
257.113
267.403
253.436
263.32
273.706
259.463
269.76
280.631
265.975
276.653
288.071
273.155
284.493
296.419
280.985
292.526
304.784
288.839
301.042
313.994
297.274
310.116
292.253
302.966
313.991
326.79
303.716
316.185
291.74
275.351
259.334
266.964
276.216
260.617
270.324
285.818
300.239
290.864
282.221
296.42
305.013
313.732
326.701
318.661
332.148
353.298
338.643
346.563
335.05
322.536
309.705
295.885
281.056
265.396
276.264
288.013
271.976
283.558
299.666
311.515
295.867
279.315
291.258
303.902
286.783
299.11
316.239
332.136
320.027
307.896
323.362
335.182
346.968
358.721
344.18
328.688
312.137
294.619
307.305
320.737
302.77
315.928
333.963
347.27
329.804
311.329
325.017
339.61
320.663
335.076
354.04
371.457
357.422
343.52
360.544
373.952
387.52
402.372
389.349
376.416
363.518
350.523
337.647
324.822
341.074
353.266
365.788
380.135
368.213
356.272
370.456
382.15
393.771
405.481
392.538
378.573
391.085
403.569
416.038
428.491
416.58
404.623
417.049
428.459
439.681
450.834
440.284
428.419
415.488
401.205
385.597
368.636
350.398
330.909
345.873
361.668
341.532
356.57
377.096
392.938
372.522
390.089
369.041
386.728
405.665
384.037
403.022
423.413
401.156
421.687
443.564
420.632
442.804
466.582
443.185
467.446
493.405
469.676
496.778
525.574
502.663
533.78
509.998
541.45
563.453
592.473
573.885
551.057
584.945
619.307
598.846
635.522
651.97
663.717
635.261
605.036
620.434
647.093
671.917
694.529
690.069
682.68
671.611
656.206
694.951
681.015
721.156
756.51
752.013
786.695
786.507
818.556
822.076
849.439
857.401
877.277
887.765
898.495
909.831
912.089
922.262
915.595
903.639
887.953
891.099
891.602
872.118
851.155
829.349
829.66
851.406
872.019
869.549
849.445
827.934
823.934
844.732
863.809
881.114
895.693
906.582
895.693
900.524
887.998
886.306
873.612
866.083
854.61
840.848
831.733
813.213
806.858
785.141
781.847
758.113
728.959
733.104
704.433
710.398
734.577
754.928
757.336
776.885
791.5
799.575
811.953
822.049
831.027
842.929
847.64
860.687
861.464
874.884
870.75
883.612
874.408
885.73
872.091
855.813
837.784
817.996
810.488
829.374
846.63
861.855
850.477
862.23
849.439
857.421
843.856
847.906
834.296
834.576
821.541
819.002
806.911
801.507
790.824
782.84
770.92
764.079
750.873
733.977
713.627
714.565
731.771
745.696
756.528
764.298
773.734
779.998
782.864
794.84
795.771
808.589
807.214
820.682
816.472
830.225
822.816
836.198
825.78
838.372
825.014
836.285
819.883
801.852
783.005
790.556
797.011
802.126
805.504
806.91
806.408
783.416
761.851
741.903
739.328
710.764
675.095
666.319
625.906
677.548
713.445
743.446
763.014
784.273
783.307
762.353
742.85
741.798
760.489
780.722
776.423
756.802
738.275
711.797
677.591
625.949
671.903
705.318
734.91
752.225
770.937
764.335
746.376
729.199
724.32
740.016
756.955
774.592
792.352
809.452
798.418
813.067
800.736
812.809
799.753
809.39
795.805
802.794
789.379
793.985
780.745
783.126
770.444
770.936
769.047
757.978
754.525
748.387
739.596
728.051
713.708
696.684
677.257
655.685
632.222
607.307
581.157
553.966
570.816
545.166
519.098
537.501
514.025
490.167
509.618
487.395
465.263
484.829
464.223
443.684
462.971
443.645
424.472
443.472
425.481
407.64
426.371
409.545
427.127
411.111
395.542
380.429
365.392
383.22
397.567
412.107
427.723
413.752
399.75
414.916
428.578
442.225
456.004
442.35
427.43
443.02
458.378
443.26
459.418
443.364
460.452
477.715
461.691
479.992
498.257
482.414
501.844
521.087
505.521
526.172
546.613
531.72
553.449
574.758
561.258
584.681
606.804
595.451
618.885
640.999
661.571
680.238
681.197
665.14
647.225
627.74
634.17
615.636
595.844
604.615
586.012
566.62
577.14
558.924
540.17
551.826
534.304
516.402
528.821
512.004
494.96
507.975
491.822
475.577
488.922
473.7
486.226
471.818
457.264
469.873
483.617
497.123
506.476
493.832
480.909
467.973
454.977
441.85
428.666
441.013
453.713
466.222
475.98
464.129
452.081
462.208
473.589
484.701
495.604
487.56
478.547
490.678
502.685
514.447
521.256
510.35
499.041
506.285
516.76
526.817
536.44
531.834
525.954
518.844
510.32
500.42
514.48
504.06
519.065
533.686
523.759
539.138
554.256
545.274
561.255
576.832
568.928
585.398
601.128
594.651
611.238
626.782
622.199
638.568
653.537
651.289
666.853
680.655
678.892
666.962
665.788
654.16
641.134
642.139
629.601
615.897
618.816
605.729
591.699
596.403
582.989
568.938
574.783
561.386
547.709
554.843
541.997
528.45
536.273
523.312
530.858
537.146
547.85
542.68
554.088
548.71
560.569
571.853
567.295
579.388
590.74
587.526
599.501
610.561
608.861
620.36
630.828
630.808
641.734
651.484
653.444
663.312
671.782
675.798
684.341
689.047
692.831
695.48
696.81
711.315
723.244
732.749
725.298
717.574
707.636
703.014
711.141
717.309
721.473
730.841
739.807
744.497
746.721
746.836
758.93
757.667
754.313
767.514
762.42
775.959
768.916
782.331
773.417
786.581
775.538
788.197
774.985
786.814
771.623
782.21
765.495
748.795
732.634
717.099
696.391
666.732
618.575
655.718
684.209
710.682
724.925
740.162
755.902
745.958
760.745
749.71
763.061
751.145
762.855
750.315
760.275
747.387
755.618
742.636
749.224
736.374
741.443
744.997
732.615
734.824
735.359
734.167
723.641
724.092
723.044
711.519
712.988
713.069
711.833
708.88
704.076
697.504
691.217
696.414
700.034
691.018
688.367
684.299
678.788
672.579
666.88
659.843
655.503
648.504
640.302
637.744
629.749
620.63
619.764
610.974
601.31
601.886
592.671
582.648
584.503
574.992
564.799
567.739
558.097
560.841
551.701
542.023
545.6
554.263
562.404
569.995
569.407
577.376
576.761
585.128
592.84
593.285
601.347
608.613
610.308
617.83
624.443
627.528
634.305
640.096
644.651
650.471
655.212
661.298
665.905
669.35
676.969
680.088
681.909
682.562
692.244
702.029
702.649
702.068
700.26
689.275
691.361
692.367
682.232
680.877
678.565
668.133
670.625
672.267
672.996
672.798
671.661
663.144
661.545
658.894
651.645
648.751
644.908
638.942
634.996
630.165
625.472
620.663
615.042
611.572
606.074
599.841
597.513
591.483
584.749
583.51
577.042
575.894
569.688
562.954
555.719
547.981
539.761
531.085
521.98
512.466
502.577
492.468
481.995
471.148
460.39
449.876
439.237
428.36
417.282
406.099
394.896
383.643
372.295
360.885
349.391
337.828
326.21
314.596
303.117
291.897
306.33
317.261
328.568
341.711
330.306
319.515
332.02
342.682
354.124
365.08
352.94
339.985
351.377
362.682
373.866
385.929
375.07
364.064
375.885
386.559
397.009
407.117
397.131
386.83
376.37
365.818
354.957
344.361
356.033
370.069
377.858
366.855
376.896
386.992
395.901
404.779
387.927
389.157
373.525
359.724
340.057
346.601
333.97
322.027
338.533
326.505
341.075
329.124
316.932
330.877
319.289
307.902
321.562
310.642
299.373
312.609
301.77
291.174
304.184
294.149
283.946
296.618
286.843
277.202
289.652
280.284
270.527
282.486
273.017
284.394
275.231
265.911
277.309
286.105
294.817
302.543
293.206
301.566
292.064
300.476
320.873
309.458
298.66
307.991
316.472
306.508
315.418
336.698
325.49
314.132
324.503
333.995
323.573
333.336
355.872
343.973
332.219
343.226
353.252
342.6
353.271
376.436
365.38
352.821
365.034
350.796
363.498
375.377
403.31
389.414
403.69
428.691
419.04
433.783
422.607
404.36
396.313
386.821
396.879
406.828
416.427
424.863
415.618
405.943
414.089
423.735
432.423
440.666
433.726
425.691
416.822
407.217
396.578
384.924
395.82
406.53
417.191
427.34
417.276
407.022
417.219
427.01
436.699
446.215
437.465
427.914
438.515
448.867
459.029
467.147
457.408
447.505
455.687
465.016
474.237
480.249
471.755
463.001
454.121
445.006
435.747
426.351
434.752
443.636
452.388
458.762
450.612
442.293
448.724
456.505
464.105
471.507
466.711
460.937
469.263
477.357
485.193
489.124
481.905
474.43
478.644
485.525
492.158
494.393
488.331
482.04
475.442
468.514
461.357
454.064
446.655
439.131
431.416
437.927
448.352
444.744
451.391
461.606
458.64
465.115
474.134
472.223
478.68
484.7
490.416
495.929
496.873
491.829
486.698
481.525
483.214
486.734
488.098
492.534
495.237
497.426
501.594
501.698
501.244
500.217
498.525
496.068
492.742
488.493
483.205
476.746
469.133
479.256
489.264
498.952
504.258
495.393
486.212
491.907
500.317
508.413
516.18
512.79
508.304
517.308
525.935
534.162
536.197
528.78
520.972
523.598
530.652
537.323
537.658
531.67
525.313
518.6
511.546
504.166
496.477
500.04
507.059
513.772
515.195
509.101
502.719
504.61
510.398
515.91
521.131
520.978
520.165
526.227
531.944
537.329
536.397
531.593
526.439
526.067
530.67
534.936
538.87
540.835
542.343
543.286
543.597
543.202
541.966
549.327
556.223
562.66
561.634
555.932
549.779
549.481
554.944
559.943
564.5
566.833
568.609
574.014
578.901
581.507
586.556
589.332
594.54
599.126
602.871
607.552
611.553
616.328
620.345
623.626
629.472
632.673
635.087
642.017
644.242
645.6
653.613
654.612
654.816
663.757
663.552
662.487
660.611
657.976
648.094
650.837
652.903
654.245
645.095
645.976
646.132
637.738
637.57
636.731
629.151
628.029
626.182
619.533
617.534
614.878
609.151
606.428
603.088
598.271
594.94
591.035
587.095
583.262
579.54
575.791
571.554
568.607
572.263
575.467
571.11
568.392
565.254
561.697
557.719
553.325
548.52
546.961
551.197
555.045
551.994
548.638
544.917
542.468
545.724
548.64
551.236
554.986
558.502
561.567
564.243
566.531
561.89
559.911
557.617
553.549
555.606
557.422
553.136
551.425
549.496
547.392
545.079
542.537
539.695
536.533
533.054
529.26
525.157
520.741
516.008
511.03
505.771
506.309
511.083
515.613
514.802
510.69
506.352
506.124
502.949
509.898
509.827
513.805
516.982
518.594
519.858
523.816
527.479
530.854
528.462
525.429
522.184
520.457
515.726
520.711
523.148
526.064
528.221
531.141
533.923
536.709
539.21
541.457
537.783
535.779
533.63
530.592
524.479
527.62
532.286
534.339
535.58
539.519
543.491
545.317
547.279
540.658
548.979
549.761
554.34
558.862
563.558
568.463
573.408
578.217
582.8
585.571
590.398
593.173
595.425
601.032
603.227
604.868
611.264
612.78
613.681
620.884
621.557
621.669
629.583
629.429
628.66
637.251
636.112
634.356
643.524
641.306
638.502
629.21
632.037
623.042
625.418
627.307
618.703
620.216
621.219
613.129
613.829
614.007
606.522
606.473
605.957
599.092
598.389
597.161
591
589.663
587.857
582.373
580.518
575.296
570.063
571.276
576.803
577.93
583.792
584.784
585.324
591.86
592.244
592.243
599.319
599.115
598.468
606.084
605.184
603.856
611.941
610.313
608.304
616.723
614.336
611.663
620.252
617.123
625.948
635.177
644.745
654.639
664.852
675.369
686.192
697.326
708.773
720.538
716.717
728.909
723.874
717.674
729.988
722.469
734.776
725.879
737.966
727.659
739.335
727.612
738.612
725.611
735.848
721.833
731.078
716.61
702.561
695.401
708.173
699.475
712.459
703.101
715.43
705.455
716.724
705.971
716.173
704.932
714.035
702.511
710.493
698.828
705.698
711.725
699.93
704.87
693.368
688.49
682.822
694.092
687.498
680.375
691.288
683.318
693.947
685.068
695.371
685.684
695.621
685.79
693.89
683.039
690.945
679.313
686.899
671.061
645.994
601.489
632.435
656.261
670.646
664.842
675.978
667.227
676.049
667.237
649.316
665.932
674.999
673.003
662.806
669.779
676.536
665.919
671.934
677.412
682.201
671.364
666.665
661.386
655.707
649.671
659.573
653.078
646.638
655.69
630.337
637.377
627.158
644.161
640.655
645.827
651.18
656.256
660.866
650.679
646.209
641.324
631.898
636.527
640.857
631.42
627.32
622.893
618.841
627.097
636.205
630.907
622.336
608.983
613.827
603.898
614.833
618.619
622.393
613.683
610.613
596.124
606.719
605.808
608.772
601.07
587.653
597.976
595.784
603.354
605.977
598.032
600.199
602.157
594.296
595.999
597.409
589.846
591.016
591.835
584.735
585.283
585.48
578.814
578.855
578.598
572.541
572.142
566.522
565.92
564.943
560.019
560.73
561.099
561.494
566.818
566.589
572.54
572.325
571.843
578.5
577.932
577.014
583.83
582.559
581.059
588.417
586.793
585.088
592.329
590.694
577.904
588.341
578
568.21
579.883
574.265
575.631
569.182
558.048
567.645
561.117
565.572
566.08
560.248
550.92
559.513
552.856
561.111
555.959
555.771
555.307
550.768
542.333
525.674
530.113
529.557
536.732
540.893
520.475
507.178
521.166
506.526
517.125
515.025
503.81
510.619
506.412
497.039
500.139
494.388
487.768
486.656
479.408
477.628
467.914
454.49
470.805
475.021
460.099
441.74
421.775
398.967
376.807
388.161
376.445
412.694
430.321
431.624
446.547
450.354
461.048
470.848
461.871
480.72
484.812
465.159
490.021
489.927
463.163
489.736
485.44
503.95
500.286
522.537
540.994
542.736
550.996
550.897
539.585
536.205
547.771
545.151
532.764
554.488
550.297
563.292
547.508
572.33
566.106
580.4
560.282
587.694
578.285
593.409
568.565
597.825
612.846
599.948
614.827
631.88
647.155
657.869
627.812
641.201
620.659
582.128
606.446
597.381
571.674
584.838
513.384
542.544
519.93
539.402
515.91
472.49
496.055
472.418
429.443
455.242
480.002
545.1
556.705
570.44
572.839
571.797
558.517
478.634
412.039
384.813
349.669
312.381
276.537
243.803
214.793
189.627
168.102
169.643
168.91
194.247
193.377
221.649
225.095
262.594
255.059
294.155
308.318
339.211
388.201
164.872
183.999
205.947
196.183
177.317
160.577
155.67
150.462
145.153
155.869
162.945
170.17
186.236
176.548
167.361
179.464
191.086
203.68
217.027
230.678
257.825
286.556
315.337
285.17
262.554
239.42
222.09
206.204
191.888
204.216
221.358
240.778
258.791
235.83
215.915
226.391
248.773
274.921
305.514
341.57
362.15
374.78
427.272
497.49
495.537
429.119
378.527
336.801
332.328
321.709
287.933
259.365
235.076
241.535
266.987
296.924
301.492
271.336
245.537
247.032
272.395
301.756
335.903
375.743
422.81
408.793
367.613
355.128
390.703
371.25
403.399
436.464
405.75
432.128
458.803
497.698
520.147
508.049
531.045
485.939
508.616
479.311
517.979
533.497
481.697
454.169
438.025
420.63
400.079
372.246
389.436
404.868
418.353
428.426
434.257
435.388
433.148
425.135
409.483
404.066
372.467
355.122
335.118
343.961
369.204
389.366
384.633
365.001
336.447
320.725
310.636
303.376
295.828
287.47
279.256
270.758
261.857
272.344
263.605
254.934
265.512
257.253
248.719
259.035
250.738
260.515
269.434
276.302
268.268
275.497
267.354
274.705
292.003
282.723
273.555
281.777
289.228
280.968
288.471
306.127
297.162
306.084
290.184
318.632
328.096
305.781
292.316
283.377
276.726
284.067
292.374
304.851
315.142
322.171
302.596
293.504
279.846
265.334
259.094
252.176
259.758
267.549
260.095
267.877
253.809
254.017
260.572
267.863
279.072
299.928
279.787
291.04
279.816
266.079
272.209
292.561
301.422
316.546
310.964
322.836
311.338
296.016
278.406
269.101
256.661
243.36
237.659
231.33
238.278
245.456
238.569
245.837
232.815
239.014
246.013
233.584
256.513
276.701
257.019
267.585
256.764
244.057
249.72
268.546
277.761
285.984
292.302
277.19
305.697
308.96
299.994
289.033
274.214
256.105
247.586
235.628
229.02
235.594
223.287
223.311
229.198
235.299
224.138
256.285
236.279
225.916
219.394
219.936
226.712
214.749
214.944
220.569
226.827
215.607
236.392
255.069
236.836
245.911
245.421
253.615
236.738
228.494
217.569
211.646
217.94
206.526
212.084
218.362
207.116
212.458
218.482
207.675
228.383
237.399
219.277
209.563
203.173
203.666
209.555
198.814
204.172
210.529
199.497
199.697
204.887
210.679
200.331
219.584
236.802
228.103
236.163
220.14
212.554
202.385
196.894
202.951
197.576
203.598
193.089
198.25
203.864
193.608
193.633
198.634
203.9
222.483
213.841
221.378
213.476
220.771
213.398
220.88
212.612
220.186
228.174
235.745
228.126
235.253
244.511
235.506
222.728
206.064
196.196
190.595
191.19
197.295
187.019
192.057
197.567
187.78
192.702
198.709
188.469
188.691
193.545
198.975
189.316
207.266
223.081
207.171
214.457
206.127
215.244
223.392
208.086
201.113
191.712
186.66
192.581
187.639
193.558
183.674
188.592
194.117
184.317
184.441
189.225
194.488
185.318
212.709
196.038
187.756
182.106
183.068
189.26
184.359
189.98
180.285
180.65
185.438
191.581
181.576
182.025
186.731
192.315
182.895
200.179
215.432
208.055
216.923
201.513
194.992
186.205
181.501
187.543
182.894
188.998
179.424
184.282
190.065
180.304
180.643
185.391
191.007
181.793
209.508
199.979
206.757
198.693
205.098
197.691
204.08
195.95
202.486
210.069
218.72
212.281
220.513
231.075
223.493
212.269
195.416
185.412
179.297
180.887
187.495
182.795
188.976
179.843
184.655
191.367
181.154
182.055
186.864
192.884
200.442
215.235
208.345
218.394
202.467
196.477
188.114
183.614
190.27
180.001
180.886
185.828
192.7
183.296
179.558
175.347
180.848
187.431
182.938
190.268
185.634
192.524
182.103
183.268
188.29
195.913
185.02
186.433
191.537
198.319
205.801
220.541
203.313
208.741
200.144
215.7
197.932
204.601
194.509
184.724
188.195
202.929
208.886
200.932
206.92
198.368
204.458
212.114
221.98
216.182
225.676
211.406
234.513
240.057
231.232
237.396
228.379
235.072
225.832
233.042
238.176
242.815
239.773
244.227
241.649
245.994
243.869
248.15
246.446
243.126
237.765
231.074
242.178
235.807
225.868
220.408
208.875
214.214
240.997
246.794
255.263
251.917
260.367
257.681
266.229
266.888
266.877
261.561
261.834
256.904
250.652
252.852
246.521
249.402
250.736
253.976
253.806
257.359
257.461
261.299
264.309
265.915
269.234
271.236
272.569
273.197
279.136
277.278
274.871
277.945
281.248
284.151
288.417
284.624
280.557
276.269
274.31
271.989
268.736
266.734
263.818
262.15
260.057
258.187
256.405
254.805
253.317
251.114
250.745
248.739
248.662
246.862
246.98
245.396
245.683
244.307
241.751
237.047
229.9
236.051
228.557
235.315
227.501
234.778
226.607
213.972
197.503
204.407
198.052
206.196
199.575
225.869
234.057
224.434
210.914
203.102
209.877
202.659
209.543
201.487
208.49
216.112
223.95
217.01
234.394
241.02
234.33
240.512
244.817
246.292
244.059
240.081
234.431
240.009
243.496
244.665
243.172
240.089
243.046
240.402
243.165
240.93
243.569
244.77
244.513
244.225
244.205
244.08
244.207
244.243
244.529
243.629
242.103
244.121
245.136
245.351
246.038
244.933
243.691
246.066
247.259
247.483
245.814
241.748
234.677
242.607
235.05
243.594
249.875
252.329
248.394
250.51
247.012
248.9
250.439
251.025
252.395
253.199
254.622
254.363
251.669
245.998
253.533
247.259
255.58
248.708
257.727
250.2
259.785
250.904
236.701
228.67
236.564
228.93
236.949
228.427
236.504
244.878
252.327
244.081
264.855
274.113
267.438
277.616
270.012
281.095
271.903
256.172
247.296
246.952
264.597
285.17
295.027
296.567
290.106
291.022
285.349
285.834
281.004
280.998
276.815
270.702
262.436
267.511
272.874
276.547
278.542
278.913
283.631
284.392
289.124
290.342
295.048
296.898
301.408
302.512
308.247
304.019
304.642
311.784
315.48
315.745
323.373
320.181
312.915
304.155
294.352
296.257
297.162
289.084
290.317
282.535
283.987
276.524
278.201
271.03
272.896
273.89
273.803
272.348
269.235
264.416
265.824
261.662
262.683
259.036
259.773
256.58
257.088
255.652
255.547
258.421
258.577
261.478
261.896
264.809
265.527
268.435
269.484
269.266
263.602
265.028
259.551
261.157
255.87
257.63
252.539
254.432
249.542
251.545
252.804
248.965
250.395
246.707
248.289
249.112
248.732
247.455
246.47
244.759
240.747
243.114
244.935
241.77
239.334
236.501
232.208
235.361
238.233
240.732
242.737
240.006
236.988
239.607
241.803
243.45
241.844
243.592
242.228
244.062
245.194
244.91
246.264
246.159
247.732
247.861
249.623
250.04
251.969
252.664
250.075
247.153
247.641
244.837
245.659
242.971
244.106
241.534
242.972
240.498
238.624
236.726
239.97
238.39
241.728
240.468
243.917
242.976
246.557
249.941
253.043
255.819
256.522
259.523
260.558
261.381
265.18
266.307
270.413
271.812
267.224
262.538
262.038
257.645
257.389
257.024
253.271
253.216
249.671
245.932
242.055
238.079
239.244
235.403
236.857
233.128
234.88
231.243
233.297
235.456
237.667
239.842
237.085
239.549
236.863
233.87
230.643
234.039
237.45
234.539
231.364
227.998
223.958
227.462
230.841
227.246
223.731
220.141
216.51
220.374
224.499
228.851
233.37
237.959
242.472
239.732
244.51
241.823
246.868
244.234
241.198
246.971
243.968
250.043
247.083
253.464
250.557
257.251
254.408
261.424
268.043
266.007
263.329
260.153
268.455
265.334
274.073
271.015
280.218
277.247
286.953
284.088
273.767
263.656
267.505
257.97
261.801
252.794
256.607
248.09
251.881
255.436
258.656
251.153
247.593
243.823
239.916
235.93
244.142
240.096
248.802
244.693
253.931
249.751
259.565
269.897
280.637
291.598
302.485
312.86
322.106
329.421
332.208
330.859
341.716
339.062
351.934
347.153
330.715
320.754
332.363
321.053
304.376
296.699
311.619
334.918
356.062
348.531
342.048
376.121
391.459
404.041
409.86
391.082
390.085
385.795
376.084
363.623
362.688
355.966
350.378
343.433
339.466
332.237
322.384
321.26
332.903
332.196
344.62
344.425
357.866
370.031
372.929
373.525
372.009
353.075
356.396
358.109
342.53
339.259
334.866
317.679
322.657
326.865
330.123
315.696
318.97
305.605
308.926
311.411
299.844
296.469
292.518
288.114
301.604
297.061
311.614
306.888
301.641
286.779
292.095
278.323
283.355
270.557
275.37
279.958
284.259
288.178
276.744
272.522
268.063
256.901
261.393
265.745
255.305
250.934
246.493
242.012
252.317
263.431
258.668
253.8
265.571
260.442
273.065
267.609
281.168
295.957
312.053
329.528
348.389
368.554
389.755
411.373
410.222
405.849
398.432
388.392
376.281
362.692
347.829
326.155
339.271
351.411
362.429
372.076
380.041
386.014
363.392
356.709
348.701
327.805
335.612
342.518
323.375
316.515
309.02
300.952
319.206
339.563
329.457
318.498
306.759
289.314
299.916
309.893
292.341
283.205
273.565
263.453
278.132
294.309
312.169
331.933
353.874
378.335
355.747
378.699
351.708
325.364
340.665
312.039
322.716
331.274
299.205
271.035
246.444
244.142
267.339
293.489
285.659
261.664
240.084
220.847
223.694
225.055
225.132
223.448
219.844
214.375
207.219
198.686
189.174
179.106
168.87
158.783
149.072
139.876
134.721
129.749
125.001
130.9
136.562
142.624
150.849
143.554
136.875
130.777
125.64
120.507
116.285
112.344
108.687
112.195
116.301
120.778
125.223
120.175
115.597
118.872
123.937
129.579
135.863
142.857
150.637
159.282
167.747
157.674
148.744
154.41
164.493
176.009
183.786
170.89
159.706
149.983
145.566
140.824
133.793
127.546
121.991
124.918
130.952
137.794
141.508
134.102
127.615
121.919
119.587
117.047
114.327
111.451
108.44
105.309
102.203
99.3575
96.7592
99.078
101.904
105.017
107.703
104.318
101.263
98.5102
96.5176
94.3928
92.2421
90.291
88.5236
90.2138
92.1059
94.2005
96.0294
93.7948
91.7822
93.2329
95.3607
97.7302
100.37
103.313
106.593
110.25
112.645
108.72
105.22
106.98
110.69
114.87
116.907
112.488
108.583
105.126
103.682
102.095
99.303
96.8053
94.5689
95.7922
98.1292
100.747
102.059
99.3323
96.9039
97.905
100.414
103.237
106.422
110.022
114.101
118.736
124.014
130.041
136.938
144.854
153.965
164.481
176.651
190.778
196.701
181.573
168.588
171.905
185.488
201.328
204.523
188.293
174.353
162.361
160.231
157.41
147.763
139.41
132.158
133.94
141.473
150.169
152.022
143.091
135.359
136.399
144.245
153.302
163.773
175.894
189.941
206.234
206.526
190.465
176.542
176.385
190.055
205.74
203.806
188.775
175.566
163.984
164.489
164.472
154.007
144.932
137.056
137.339
145.163
154.154
153.85
145.001
137.279
130.546
130.527
130.212
129.589
128.649
127.397
125.847
120.339
115.518
111.288
112.374
116.728
121.701
122.813
117.724
113.276
109.377
108.551
107.565
104.28
101.374
98.7961
99.5778
102.211
105.184
105.949
102.926
100.251
100.818
103.519
106.575
110.044
113.994
118.504
123.667
124.257
119.065
114.529
114.88
119.409
124.59
124.674
119.544
115.055
111.118
110.912
110.555
107.066
103.993
101.28
101.643
104.355
107.426
107.658
104.608
101.913
102.092
104.756
107.767
111.182
115.064
119.493
124.551
130.329
136.931
144.469
153.071
162.871
174.011
186.643
200.912
216.951
234.873
254.746
276.555
300.179
287.81
309.96
332.774
314.798
334.601
315.21
297.948
280.504
294.915
275.395
256.618
266.736
247.028
228.858
222.328
238.867
230.534
246.504
263.247
251.56
266.876
282.278
297.47
281.259
267.782
254.099
242.191
254.416
266.454
252.934
242.116
231.135
220.143
229.968
240.447
227.05
236.602
222.232
208.619
215.521
201.578
207.102
212.292
197.323
183.892
171.91
169.373
180.66
193.219
188.76
177.075
166.502
156.992
159.286
161.272
151.861
143.561
136.258
135.331
142.358
150.312
148.485
140.909
134.187
132.867
139.264
146.443
154.467
163.389
173.252
184.082
195.88
190.134
201.76
214.103
206.244
217.931
209.292
198.719
188.543
195.045
184.436
174.491
179.296
169.286
160.116
156.753
165.257
161.229
169.739
178.859
173.455
182.302
191.563
201.153
210.969
220.895
230.807
240.581
250.111
259.309
268.124
276.527
284.509
292.071
299.197
305.87
289.887
283.469
276.72
262.788
269.164
275.292
261.967
256.135
250.118
243.895
256.151
269.638
262.221
254.462
246.37
234.6
242.059
249.245
237.451
230.776
223.879
214.098
220.496
226.709
232.735
238.579
244.261
249.79
255.181
243.792
248.841
238.185
242.95
247.662
237.503
232.966
228.401
219.421
223.787
228.141
232.487
236.83
241.169
245.485
236.311
240.517
231.887
236
227.874
231.905
224.248
228.206
232.166
236.099
239.971
243.717
247.275
240.224
243.777
237.099
240.648
234.325
237.866
231.89
235.42
238.759
233.301
236.645
231.503
234.849
230.02
226.516
222.914
227.991
224.373
229.781
226.145
222.443
228.233
224.503
230.648
226.887
233.398
229.605
236.502
232.672
228.783
221.913
225.765
219.283
223.088
216.978
220.741
214.987
218.714
213.301
216.996
220.696
215.581
219.257
214.463
218.121
221.762
225.352
220.915
217.285
213.638
209.472
213.106
216.747
212.864
209.227
205.613
202.037
205.863
209.999
206.386
210.812
207.187
211.911
208.267
203.602
199.289
202.813
198.77
202.292
198.508
195.033
191.617
195.303
191.896
195.822
200.069
204.664
209.631
206.003
211.286
207.624
213.238
209.537
215.498
211.75
218.075
224.88
220.988
217.125
213.304
220.314
216.417
223.859
219.875
227.781
223.694
232.096
227.89
219.632
212.015
215.926
208.757
212.564
205.813
209.532
203.173
206.818
210.52
214.275
208.052
204.41
200.827
197.302
193.835
199.583
196.045
202.143
198.52
204.993
201.265
208.138
215.601
223.699
219.522
215.35
211.175
203.601
207.593
211.59
204.29
200.46
196.637
190.23
193.896
197.569
191.381
194.935
189.099
192.553
187.048
190.418
185.225
188.529
191.884
195.294
198.764
202.295
205.887
200.464
204.015
198.908
202.426
197.619
201.113
196.592
192.415
189.073
193.178
189.828
194.189
190.822
195.452
192.061
196.975
193.549
190.185
185.465
188.732
184.28
187.52
183.32
186.542
182.581
185.795
182.06
185.274
188.553
184.976
188.264
184.897
188.204
191.576
195.009
198.502
202.047
205.638
209.265
212.916
216.573
220.218
223.823
227.357
230.78
234.041
231.259
234.565
232.094
229.735
226.078
228.591
224.989
227.803
224.24
220.609
216.942
213.261
210.197
213.905
217.619
221.322
218.611
222.361
219.923
223.736
227.518
225.453
229.317
227.522
231.486
229.95
234.035
232.745
236.973
241.168
245.305
249.353
249.003
253.248
253.165
252.996
257.786
257.79
262.87
267.93
272.947
277.9
282.76
287.487
292.045
295.092
289.871
284.567
285.972
291.78
297.576
299.494
293.202
286.958
280.772
280.171
279.206
273.815
268.414
263.021
262.962
268.65
274.392
274.653
268.616
262.682
256.81
257.342
257.661
252.329
252.725
247.669
248.185
248.621
244.044
244.68
240.308
235.912
231.512
227.125
228.505
224.27
225.847
221.743
223.535
219.543
221.562
217.663
215.563
213.596
217.655
215.875
220.056
218.444
222.765
221.306
225.785
230.312
234.873
239.455
238.585
243.376
242.646
241.827
247.047
246.289
251.774
251.039
245.374
239.821
240.893
235.589
236.678
237.669
232.748
233.827
229.114
224.457
223.114
227.894
226.625
231.608
230.385
229.06
234.381
233.038
238.593
244.283
250.102
256.048
262.12
268.312
274.588
280.988
287.506
294.123
300.835
301.589
308.784
309.263
316.946
324.792
332.806
340.993
342.003
350.733
350.951
360.134
369.539
369.063
359.558
350.266
348.537
357.896
367.45
364.683
355.197
345.885
336.768
339.385
341.186
341.996
333.28
333.471
325.145
317.024
316.473
324.774
323.632
332.307
330.438
327.846
319.127
321.707
313.188
315.167
306.913
308.362
309.114
301.395
301.752
294.428
294.525
287.599
287.278
286.464
293.849
292.697
300.434
298.877
291.047
283.429
285.166
277.836
279.257
280.269
280.831
274.195
267.668
261.281
260.155
266.695
273.4
272.234
265.394
258.736
257.028
263.769
270.704
268.821
276.02
273.831
281.271
288.926
296.797
304.884
302.318
310.616
307.505
315.955
324.605
333.445
342.466
351.663
361.011
370.486
380.062
389.706
399.375
409.017
418.569
427.953
437.082
430.021
421.318
412.34
405.3
413.874
422.16
413.697
405.809
397.631
389.232
396.516
403.168
393.872
384.515
375.149
369.506
378.564
387.585
380.672
371.999
363.266
356.55
364.948
373.269
381.464
389.484
397.281
404.79
395.569
388.421
380.991
372.25
379.331
386.139
376.591
370.102
363.353
356.383
364.943
373.333
365.496
357.524
349.464
342.106
349.827
357.454
349.235
341.947
334.561
327.111
334.327
341.358
348.119
354.519
360.456
365.819
356.561
347.403
338.373
333.701
342.523
351.452
345.795
337.127
328.544
320.079
325.016
329.499
320.791
312.258
303.915
299.908
308.105
316.48
311.748
303.564
295.546
290.893
298.703
306.668
314.767
322.985
331.304
339.693
333.242
325.147
317.108
310.996
318.742
326.529
319.634
312.158
304.718
297.339
303.325
309.158
301.313
293.589
286.009
280.954
288.286
295.75
290.045
282.854
275.786
268.857
273.771
278.587
283.25
287.707
291.899
295.77
299.261
291.229
294.234
286.368
278.72
271.29
264.076
266.603
259.592
261.829
255.042
252.794
250.305
257.081
254.324
261.267
268.429
275.81
283.411
280.1
287.83
284.088
280.056
272.603
276.481
269.084
272.584
265.286
258.207
251.349
244.71
247.601
241.1
243.747
246.208
248.459
250.48
252.257
253.778
255.041
248.947
242.999
237.2
235.634
241.518
247.566
245.957
239.837
233.895
228.131
229.916
231.551
226.056
227.62
222.34
223.862
225.286
220.298
221.734
216.943
218.417
219.865
215.345
216.883
212.525
214.173
209.96
211.738
207.654
209.577
211.608
213.773
216.1
212.286
214.85
211.095
207.363
204.737
208.495
206.079
209.907
207.691
205.608
201.696
203.821
200.006
202.293
198.56
201.024
203.665
206.511
209.588
205.937
202.321
198.75
195.697
199.253
202.86
200.011
196.408
192.862
189.379
192.199
195.231
191.77
188.371
185.037
182.089
185.392
188.763
185.962
182.612
179.334
176.753
180.011
183.342
186.745
190.218
193.759
197.362
194.888
191.28
187.741
185.408
188.949
192.563
196.25
194.07
197.849
195.798
199.678
203.632
201.74
205.814
204.032
208.239
206.552
210.906
209.295
213.809
212.254
207.674
203.206
204.879
200.567
202.289
198.121
199.909
195.875
197.745
193.832
191.934
190.086
194.053
192.264
196.361
194.615
198.852
197.134
201.52
206.032
210.667
215.423
213.846
218.79
217.2
215.524
220.713
218.978
224.364
222.545
217.137
211.907
213.758
208.705
210.49
212.203
207.351
209.035
204.356
199.813
195.407
191.138
192.876
188.746
190.497
186.5
188.278
184.406
186.224
188.088
190.007
191.996
188.276
190.366
186.742
183.198
179.737
181.944
184.274
180.882
177.565
174.327
172.037
175.258
178.561
176.361
173.071
169.868
167.808
170.993
174.269
177.636
181.094
184.641
182.629
186.271
184.34
182.468
178.819
180.692
177.145
179.08
175.627
172.271
169.011
165.848
163.98
167.118
170.359
173.701
171.848
175.279
173.475
177.004
180.647
178.87
182.624
180.875
184.746
183.011
187.006
185.274
189.397
193.666
198.082
202.643
200.889
205.612
203.818
201.972
206.852
204.936
209.974
215.197
220.606
226.202
231.986
237.961
244.125
242.078
235.899
229.919
227.706
233.665
239.832
237.405
231.278
225.363
219.66
221.952
224.138
218.554
213.165
207.97
205.906
211.054
216.402
214.165
208.877
203.793
201.646
206.65
211.86
217.279
222.91
228.756
234.819
232.098
238.293
235.354
241.661
248.188
254.934
261.901
258.314
265.354
261.44
268.515
275.788
271.335
264.266
257.386
253.238
259.902
266.75
262.082
255.472
249.036
242.783
246.763
250.704
254.568
247.905
251.488
244.878
238.486
235.218
241.454
237.953
244.225
240.484
236.719
230.849
234.407
228.532
231.89
226.038
229.198
232.313
226.358
229.269
223.404
226.124
220.368
217.758
215.104
220.622
217.803
223.393
220.398
214.969
209.748
212.427
207.263
209.801
212.329
214.829
209.503
204.388
199.48
197.31
202.108
207.114
204.709
199.827
195.148
193.011
197.559
202.308
199.927
204.735
202.235
207.088
212.142
217.4
222.863
219.7
225.175
221.846
227.31
232.964
238.803
244.822
251.017
257.378
263.895
270.558
277.351
284.259
291.262
298.337
305.47
312.63
319.786
326.907
333.963
340.919
347.737
354.382
360.815
367
372.901
378.487
383.728
388.6
393.083
397.167
400.846
404.12
406.997
409.494
411.627
413.417
414.892
416.076
416.995
417.676
418.142
418.417
418.522
418.49
418.347
418.073
417.699
417.24
416.706
416.11
415.455
414.755
414.011
413.233
412.423
411.587
402.869
403.599
404.3
395.286
394.687
394.057
385.196
385.732
386.234
386.701
395.85
404.968
405.599
406.185
406.721
397.279
396.852
396.374
387.125
387.503
387.827
378.406
378.177
377.893
377.562
377.187
376.774
376.328
367.489
367.852
368.18
359.248
358.998
358.712
350.03
350.244
350.421
350.559
359.458
368.469
368.715
368.911
369.052
359.789
359.738
359.624
350.648
350.683
350.675
350.604
359.791
369.121
378.573
388.09
397.645
407.2
407.61
407.947
408.197
398.286
398.166
397.944
388.284
388.389
388.416
388.352
398.319
408.329
408.363
408.281
408.051
397.708
398.05
398.249
388.176
387.874
387.433
377.264
377.793
378.186
378.457
378.618
378.68
378.66
369.133
369.069
368.918
359.351
359.58
359.725
350.463
350.247
349.947
349.556
359.026
368.67
368.315
367.841
367.236
357.383
358.053
358.597
349.063
348.459
347.735
338.319
339.09
339.744
340.292
340.74
341.101
341.379
341.584
341.722
341.799
341.82
341.797
341.731
341.62
341.473
333.07
333.157
333.201
324.872
324.874
324.848
316.833
316.817
316.765
316.674
324.829
333.211
333.179
333.096
332.961
324.42
324.608
324.742
316.541
316.36
316.128
308.113
308.382
308.601
308.775
308.907
309.001
309.06
301.55
301.453
301.323
294.04
294.2
294.328
287.418
287.266
287.083
286.866
293.845
301.156
300.949
300.699
300.401
293.016
293.337
293.611
286.612
286.318
285.983
285.6
292.646
300.05
307.789
315.841
324.173
332.766
332.503
332.17
331.758
323.03
323.485
323.864
315.49
315.073
314.584
314.014
322.493
331.259
330.669
329.974
329.168
320.309
321.139
321.864
313.361
312.614
311.768
303.572
304.425
305.183
305.857
306.446
306.962
307.409
299.643
299.177
298.644
291.199
291.742
292.223
285.167
284.68
284.135
283.526
290.589
298.038
297.358
296.595
295.744
288.307
289.148
289.907
282.851
282.104
281.28
280.376
287.379
294.8
302.619
310.815
319.365
328.244
337.423
346.875
356.574
366.489
376.586
386.837
397.206
407.656
407.074
406.289
405.276
394.555
395.648
396.526
386.07
385.113
383.952
382.564
393.223
404.012
402.473
400.639
398.485
387.601
389.765
391.633
380.934
379.043
376.876
366.347
368.508
370.411
372.071
373.503
374.721
375.744
365.582
364.504
363.24
353.196
354.494
355.616
345.876
344.72
343.398
341.899
351.709
361.776
360.097
358.19
356.044
345.997
348.12
350.021
340.212
338.328
336.236
333.931
343.643
353.648
363.917
374.419
385.123
395.994
393.15
389.942
386.363
375.695
379.178
382.318
371.66
368.589
365.206
361.508
371.872
382.412
378.093
373.417
368.4
358.419
363.223
367.713
357.501
353.191
348.592
338.961
343.362
347.497
351.355
354.926
358.212
361.207
350.994
348.077
344.894
335.137
338.216
341.051
331.406
328.659
325.688
322.494
331.816
341.446
337.737
333.773
329.566
320.443
324.46
328.254
319.08
315.455
311.626
303.144
306.787
310.245
313.509
316.573
319.434
322.089
324.54
326.789
328.84
330.7
332.377
333.878
335.213
336.391
327.19
325.999
324.661
315.775
317.106
318.3
309.749
308.561
307.245
305.796
314.3
323.168
321.512
319.685
317.681
308.939
310.887
312.672
304.207
302.471
300.586
292.642
294.459
296.138
297.681
299.097
300.387
301.56
293.757
292.609
291.349
284.024
285.242
286.359
279.386
278.307
277.134
275.863
282.699
289.977
288.485
286.869
285.126
278.053
279.717
281.265
274.492
273.016
271.434
269.743
276.271
283.255
290.685
298.547
306.824
315.496
313.125
310.566
307.82
299.453
302.081
304.538
296.352
294
291.492
288.829
296.655
304.888
301.774
298.483
295.024
287.288
290.566
293.691
286.016
283.056
279.957
273.045
275.969
278.766
281.429
283.956
286.341
288.585
281.254
279.12
276.858
270.209
272.349
274.37
267.944
266.034
264.016
261.892
267.954
274.468
271.952
269.315
266.562
260.515
263.102
265.584
259.664
257.333
254.905
249.73
252.006
254.193
256.285
258.282
260.181
261.979
263.677
265.275
266.774
268.175
269.48
270.692
271.815
272.852
273.805
274.68
275.479
276.208
276.871
277.471
278.012
278.499
278.934
279.323
279.668
279.973
280.239
280.472
280.673
280.845
274.628
274.443
274.231
268.377
268.596
268.789
263.344
263.147
262.926
262.679
268.129
273.988
273.713
273.403
273.056
267.197
267.542
267.852
262.404
262.099
261.761
256.758
257.084
257.381
257.65
257.892
258.111
258.308
253.692
253.499
253.286
249.115
249.319
249.505
245.755
245.577
245.384
245.171
248.891
253.051
252.793
252.508
252.196
248.078
248.374
248.643
244.938
244.684
244.405
244.102
247.754
251.853
256.399
261.388
266.814
272.667
272.234
271.755
271.223
265.407
265.921
266.39
260.977
260.525
260.029
259.488
264.84
270.638
269.995
269.29
268.519
262.807
263.545
264.221
258.896
258.251
257.551
252.751
253.414
254.024
254.585
255.1
255.573
256.005
251.478
251.069
250.622
246.595
247.015
247.401
243.77
243.409
243.015
242.587
246.137
250.135
249.606
249.031
248.408
244.517
245.101
245.64
242.122
241.617
241.07
238.058
238.57
239.042
239.477
239.877
240.244
240.583
240.892
241.176
241.436
241.674
241.892
242.092
242.275
242.442
239.565
239.407
239.237
236.813
236.973
237.12
235.122
234.985
234.836
234.673
236.64
239.05
238.846
238.624
238.382
236.016
236.243
236.45
234.495
234.302
234.089
232.631
232.831
233.014
233.182
233.336
233.477
233.606
232.582
232.458
232.323
231.738
231.869
231.99
231.595
232.176
232.015
231.84
231.647
231.079
231.267
231.438
230.873
231.436
232.411
233.858
235.769
238.117
237.828
237.513
237.169
234.883
235.205
235.499
233.604
233.327
233.025
232.694
234.533
236.796
236.389
235.946
235.466
233.283
233.735
234.151
232.334
231.941
231.513
230.177
230.586
230.962
231.305
231.62
231.908
232.171
231.205
230.952
230.674
230.128
230.4
230.647
229.831
230.371
230.038
229.675
229.279
228.76
229.149
229.505
228.336
228.846
229.731
231.048
232.794
234.947
237.504
240.479
243.885
247.734
252.034
256.79
262.006
267.679
266.766
265.777
264.708
259.185
260.198
261.138
255.968
255.081
254.125
253.1
258.097
263.557
262.32
260.995
259.58
254.349
255.681
256.929
252.001
250.827
249.576
245.255
246.428
247.53
248.561
249.525
250.424
251.259
247.006
246.222
245.379
241.677
242.468
243.202
239.84
239.151
238.411
237.616
240.83
244.475
243.508
242.474
241.374
237.922
238.954
239.923
236.765
235.854
234.884
233.851
236.824
240.205
244.008
248.247
252.933
258.074
256.476
254.785
253.003
248.172
249.844
251.431
246.838
245.35
243.782
242.136
246.415
251.129
249.166
247.117
244.983
240.655
242.655
244.575
240.41
238.609
236.734
233.206
234.967
236.659
238.277
239.821
241.292
242.687
238.966
237.657
236.276
233.131
234.43
235.661
232.755
231.595
230.37
229.079
231.764
234.825
233.304
231.713
230.054
227.264
228.83
230.331
227.723
226.303
224.818
222.699
224.112
225.463
226.751
227.975
229.136
230.233
231.269
232.244
233.159
234.016
234.817
235.564
236.259
236.905
234.384
233.776
233.122
231.069
231.689
232.263
230.544
229.997
229.407
228.769
230.401
232.417
231.66
230.85
229.983
228.087
228.912
229.683
228.082
227.345
226.554
225.4
226.165
226.878
227.54
228.154
228.722
229.248
228.376
227.866
227.313
226.828
227.372
227.874
226.238
226.714
226.068
225.373
224.626
224.179
224.916
225.602
223.389
223.825
224.581
225.709
227.206
229.059
228.076
227.032
225.928
224.213
225.27
226.268
224.806
223.847
222.828
221.749
223.095
224.761
223.533
222.242
220.889
219.374
220.675
221.916
220.61
219.411
218.151
217.231
218.46
219.628
220.737
221.786
222.776
223.707
222.969
222.057
221.087
220.684
221.643
222.544
219.667
220.058
218.969
217.822
216.614
216.259
217.454
218.59
215.004
215.347
215.943
216.831
218.012
219.475
221.223
223.27
225.633
228.329
231.375
234.787
238.58
242.769
247.367
252.384
257.827
263.7
270.001
276.726
283.866
291.405
299.326
307.605
316.216
325.129
334.31
343.72
353.32
363.063
357.432
351.536
345.406
336.489
342.328
347.947
338.596
333.243
327.685
321.951
330.461
339.075
332.577
325.946
319.216
311.551
317.961
324.274
316.068
310.064
303.969
296.521
302.308
308.008
313.596
319.045
324.33
329.426
320.479
315.633
310.614
302.432
307.192
311.794
303.405
299.043
294.534
289.897
297.531
305.443
300.143
294.739
289.253
282.207
287.397
292.512
285.152
280.318
275.416
270.464
276.964
283.711
290.673
297.81
305.075
312.419
305.586
298.746
291.925
285.534
292.04
298.562
291.614
285.407
279.213
273.056
279.068
285.152
278.448
271.831
265.32
260.119
266.342
272.664
266.955
260.93
254.997
249.99
255.633
261.362
267.161
273.012
278.895
284.79
278.136
272.549
266.971
261.126
266.404
271.689
265.483
260.491
255.507
250.546
255.875
261.423
255.923
250.487
245.13
240.445
245.52
250.668
245.624
240.757
235.955
231.68
236.216
240.813
245.457
250.137
254.838
259.545
264.241
268.91
273.533
278.093
282.572
286.952
291.215
295.345
287.638
283.736
279.712
272.836
276.628
280.308
273.373
269.907
266.341
262.686
268.948
275.582
271.362
267.066
262.713
256.843
260.937
264.977
258.954
255.159
251.314
246.134
249.742
253.303
256.806
260.238
263.588
266.846
260.736
257.677
254.534
249.231
252.178
255.046
249.777
247.089
244.327
241.5
246.214
251.315
248.03
244.69
241.306
236.828
240.003
243.135
238.613
235.677
232.698
229.685
233.619
237.886
242.49
247.432
252.71
258.317
253.896
249.464
245.036
240.218
244.384
248.553
243.526
239.608
235.691
231.784
236.067
240.627
236.248
231.912
227.63
223.815
227.855
231.942
227.899
224.047
220.237
216.898
220.493
224.125
227.784
231.459
235.141
238.822
234.443
230.985
227.522
223.878
227.136
230.386
226.645
223.588
220.52
217.449
220.621
224.064
220.618
217.193
213.798
210.929
214.14
217.373
214.382
211.326
208.287
205.27
207.748
210.438
213.346
216.476
219.831
223.412
227.214
231.232
235.454
239.866
244.446
249.171
254.011
258.932
252.681
246.578
240.633
236.502
242.192
248.032
243.466
237.892
232.458
227.173
230.968
234.854
229.247
223.818
218.569
215.366
220.397
225.599
222.041
217.068
212.256
209.256
213.85
218.596
223.49
228.529
233.706
239.015
234.705
229.659
224.735
221.095
225.771
230.56
226.596
222.057
217.622
213.296
216.538
219.94
215.28
210.757
206.376
203.627
207.801
212.106
209.084
204.989
201.015
197.162
199.585
202.137
204.814
207.608
210.508
213.502
216.572
211.489
214.423
209.346
204.465
199.778
195.284
197.581
193.122
195.32
190.908
188.853
186.855
190.977
188.896
193.048
197.38
201.895
206.598
203.915
208.617
205.824
203.123
198.801
201.312
196.972
199.394
195.051
190.883
186.887
183.058
184.921
181.116
182.91
184.77
186.689
188.658
190.67
192.713
194.776
196.845
198.909
200.954
202.967
198.152
200.081
195.407
197.266
199.096
194.539
196.323
191.912
187.655
183.551
179.599
181.296
177.461
179.154
175.432
177.133
173.519
175.238
171.728
170.034
168.392
171.846
170.216
173.768
172.142
175.797
174.163
177.924
181.839
185.912
190.145
188.369
192.733
190.911
189.08
193.524
191.628
196.196
194.222
189.729
185.424
187.248
183.05
184.815
186.59
182.442
184.173
180.142
176.273
174.651
178.464
176.81
180.726
179.031
177.364
181.304
179.584
183.617
187.835
192.243
190.27
185.959
181.836
180.089
184.108
188.314
186.387
182.293
178.384
174.653
176.252
177.898
174.138
175.731
172.051
173.598
175.186
171.511
173.062
169.478
171
172.563
169.008
170.554
167.094
168.632
165.264
166.802
163.523
165.07
166.675
168.338
170.061
166.762
168.524
165.308
162.199
160.501
163.576
161.917
165.068
163.439
161.875
158.809
160.328
157.337
158.882
155.961
157.538
159.199
160.946
162.784
164.717
166.753
168.9
171.168
173.572
176.129
178.854
181.769
178.569
181.656
178.482
181.753
178.595
175.502
178.911
175.824
179.431
176.342
180.16
177.058
181.1
177.976
182.255
186.879
183.629
180.427
177.268
181.965
178.743
183.715
180.413
185.677
182.277
187.85
184.329
178.888
173.868
177.133
172.382
175.551
171.055
174.147
169.893
172.922
175.989
179.098
174.904
171.879
168.896
165.951
163.039
166.894
163.922
167.989
164.941
169.23
166.089
170.61
175.506
180.811
186.564
192.811
199.6
206.987
215.031
223.799
233.362
228.469
238.654
233.411
228.048
218.428
223.497
214.431
219.147
210.605
202.771
198.515
206.128
201.585
209.636
204.753
213.253
222.552
216.908
211.111
205.164
196.988
202.535
207.958
199.773
194.686
189.498
184.221
191.328
199.078
207.536
216.777
226.888
237.963
229.288
220.413
211.427
202.681
210.864
218.957
209.497
202.087
194.607
187.125
194.49
202.427
193.517
184.795
176.351
170.709
178.423
186.376
179.713
172.443
165.382
160.371
166.846
173.509
180.299
187.157
194.019
200.829
192.878
186.599
180.282
173.94
179.771
185.58
178.875
173.487
168.089
162.719
168.129
173.978
167.74
161.621
155.673
151.28
156.753
162.384
157.417
152.226
147.184
142.328
146.008
149.943
154.136
158.59
163.301
168.261
160.587
165.091
157.255
149.979
153.358
146.133
148.981
151.776
144.24
137.466
131.408
129.845
135.561
141.927
139.549
133.585
128.211
123.39
124.734
126.009
127.187
128.24
129.136
129.846
124.217
119.277
114.939
114.667
118.887
123.684
122.988
118.355
114.27
110.665
110.95
111.124
107.765
104.805
102.186
102.203
104.771
107.671
107.479
104.659
102.155
102.045
104.474
107.207
110.288
113.769
117.704
122.155
121.21
116.953
113.18
112.521
116.124
120.177
119.08
115.234
111.807
108.754
109.319
109.835
106.867
104.23
101.882
101.675
103.937
106.472
106.032
103.604
101.434
101.166
103.242
105.561
108.153
111.055
114.303
117.939
122.004
126.536
131.572
137.145
143.276
140.445
146.655
153.375
149.619
156.257
152.12
146.01
140.29
143.418
137.671
132.384
134.747
129.553
124.845
123.161
127.553
125.592
130.079
134.977
132.382
137.289
142.564
148.189
144.471
139.292
134.43
131.721
136.202
140.972
137.691
133.297
129.167
125.312
127.541
129.9
125.708
127.849
123.687
119.888
121.503
117.796
119.188
120.596
116.775
113.348
110.278
109.49
112.383
115.605
114.444
111.423
108.702
106.253
106.892
107.529
105.066
102.859
100.878
100.579
102.464
104.56
104.049
102.064
100.275
99.9716
101.667
103.543
105.621
107.924
110.477
113.306
116.434
115.116
118.328
121.854
120.102
123.668
121.737
118.44
115.413
116.834
113.851
111.136
112.2
109.557
107.166
106.434
108.67
107.824
110.121
112.645
111.506
114.072
116.873
119.919
123.218
126.772
130.578
134.625
138.898
143.374
148.024
152.817
157.719
162.691
167.7
172.711
177.694
182.628
187.492
192.274
196.968
189.831
194.204
187.427
191.525
195.579
188.969
185.101
181.198
177.256
183.277
179.078
185.395
180.891
176.32
170.523
174.826
169.25
173.273
167.931
171.713
175.468
179.191
182.887
177.286
173.748
170.19
165.325
168.729
172.122
167.356
164.099
160.838
157.573
161.907
166.611
163.012
159.397
164.12
160.286
165.192
161.11
166.183
171.698
167.041
162.371
157.715
153.127
157.464
161.824
157.022
152.946
148.902
144.915
148.841
153.101
148.563
144.132
139.838
136.567
140.534
144.634
141.011
137.214
133.546
130.766
134.157
137.676
141.302
145.013
148.788
152.604
156.443
152.148
155.772
151.618
155.049
158.481
154.306
151.046
147.796
144.568
148.198
144.805
148.541
144.965
141.438
138.157
141.453
138.231
141.375
138.229
141.234
144.282
147.361
150.462
153.576
156.698
159.825
162.955
158.888
161.909
158.042
160.973
157.298
160.156
156.665
159.464
162.296
165.163
168.068
171.016
174.012
170.334
173.31
169.829
172.798
169.502
172.472
169.351
172.33
175.374
172.372
175.437
172.594
175.689
172.995
169.932
166.941
169.567
166.609
169.373
166.439
163.568
166.433
163.574
166.591
163.736
166.916
164.055
167.408
164.53
161.696
158.475
161.242
158.183
160.934
158.028
160.773
158.01
160.759
158.13
160.892
163.718
161.17
164.021
161.593
164.477
167.435
170.467
168.088
165.086
162.161
159.98
162.872
165.845
163.725
160.782
157.925
155.154
157.17
159.314
156.542
158.782
156.043
158.388
155.672
153.374
151.224
153.846
151.788
154.439
152.466
149.86
147.337
149.214
146.717
148.675
150.774
153.023
155.431
152.793
155.319
152.683
155.336
152.695
155.481
152.825
155.752
158.903
156.148
153.428
150.743
153.895
151.154
154.464
151.653
155.129
152.232
155.878
152.878
149.353
146.102
148.865
145.758
148.441
145.474
148.092
145.26
147.824
150.428
153.07
150.214
147.647
145.124
142.645
140.212
142.736
140.254
142.892
140.35
143.107
140.491
143.367
146.495
149.891
146.92
143.972
141.054
138.094
140.859
143.661
140.665
138.002
135.383
132.905
135.384
137.915
135.394
137.849
135.427
137.816
135.492
137.827
135.6
137.89
140.233
142.627
145.071
147.564
150.105
147.579
150.103
147.694
150.214
147.915
150.438
148.242
146.198
143.792
145.777
143.38
145.456
143.061
145.234
142.831
145.107
142.688
140.323
138.199
140.486
138.455
140.727
138.785
141.05
139.192
141.456
139.676
141.949
144.296
142.529
144.893
143.197
145.585
148.057
150.614
153.257
155.988
158.808
161.717
159.816
156.941
154.161
152.44
155.177
158.013
156.304
153.51
150.819
148.227
149.799
151.474
148.878
146.371
143.954
142.437
144.799
147.252
145.733
143.335
141.03
139.728
141.974
144.316
146.756
149.295
151.938
154.685
153.153
150.455
147.865
146.526
149.061
151.706
154.464
153.046
155.867
154.472
157.361
160.377
158.942
162.035
160.606
163.78
162.35
165.605
164.167
167.507
166.053
162.782
159.66
160.976
157.929
159.237
156.263
157.57
154.667
155.98
153.147
151.894
150.713
153.422
152.246
155.021
153.842
156.682
155.496
158.402
161.451
164.649
168
166.571
170.002
168.54
167.128
170.55
169.098
172.59
171.094
167.7
164.466
165.77
162.598
163.867
165.192
162.001
163.297
160.177
157.203
154.371
151.673
152.727
150.089
151.135
148.556
149.601
147.081
148.13
149.248
150.439
151.705
149.058
150.342
147.752
145.274
142.904
144.097
145.38
142.997
140.713
138.526
137.419
139.547
141.772
140.637
138.472
136.403
134.427
135.385
136.432
137.574
138.816
140.164
141.622
139.376
140.891
138.666
140.242
138.032
135.901
137.477
135.351
136.996
134.869
136.586
134.452
136.245
134.098
135.97
138.012
135.757
133.559
131.421
133.364
131.187
133.21
130.986
133.089
130.808
132.991
130.644
128.588
126.721
128.821
127.018
129.071
127.332
129.345
127.672
129.651
131.695
133.802
132.015
129.996
128.043
126.157
124.339
125.759
123.914
125.386
123.508
125.032
123.116
124.69
126.434
128.361
130.484
132.817
135.376
138.176
135.348
132.582
135.28
132.399
135.149
132.146
134.935
137.981
134.612
131.35
128.213
125.875
128.779
131.804
129.235
126.429
123.741
121.799
124.288
126.891
129.598
127.277
129.888
127.601
130.121
132.716
130.314
127.88
125.524
123.253
125.166
122.824
124.759
122.343
120.037
118.443
120.581
118.99
121.074
119.495
121.524
123.643
125.847
128.129
126.146
124.005
121.944
120.414
122.343
124.351
122.731
120.847
119.04
117.313
118.567
119.966
118.075
116.273
117.558
115.716
117.006
115.125
116.413
117.845
119.43
121.179
123.103
125.213
127.518
130.03
132.758
135.711
131.773
128.044
124.537
122.46
125.691
129.127
126.682
123.515
120.538
117.755
119.44
121.261
118.217
115.404
112.814
111.641
114.036
116.633
115.166
112.768
110.553
109.551
111.599
113.814
116.202
118.767
121.511
124.43
122.363
119.672
117.142
115.658
117.99
120.473
118.75
116.459
114.307
112.292
113.476
114.777
112.574
110.528
108.633
107.796
109.55
111.441
110.412
108.662
107.037
105.53
106.172
106.881
107.661
108.513
109.438
110.436
108.259
109.161
107.022
105.072
105.734
103.836
104.406
105.003
103.047
101.277
99.674
99.3869
100.9
102.568
102.11
100.541
99.1139
98.8582
100.203
101.677
103.295
102.789
104.45
106.268
105.566
107.417
106.638
104.915
103.335
103.87
102.318
100.898
101.272
99.8875
98.6221
98.4077
99.5979
99.3352
100.555
101.885
101.49
102.845
104.318
105.92
105.265
103.774
102.4
101.999
103.281
104.669
104.133
102.839
101.642
100.535
100.816
101.134
99.9677
100.245
99.1003
98.0483
98.2161
97.1895
97.3179
97.4658
97.632
97.8148
98.0121
98.221
98.4382
98.6599
98.8814
99.0976
99.3028
99.4907
99.6546
99.7876
99.882
99.9276
99.9245
99.8609
99.7291
99.5235
99.2412
98.8766
98.4236
97.8788
97.2396
96.5041
95.6704
94.737
93.7023
92.5645
91.3213
89.9698
88.5059
86.9245
85.2191
83.3816
81.402
79.2681
76.9655
74.4766
71.7806
68.8523
65.6593
62.1609
58.3001
53.993
49.1533
43.7599
37.9073
38.0545
43.8286
43.9195
38.2177
38.3967
44.0347
44.1703
38.59
38.7976
44.3262
44.5018
39.0186
39.2523
44.6955
49.5521
49.4176
49.3061
49.2213
49.1615
49.1275
49.1304
53.8593
53.7608
53.7055
57.7007
57.857
58.0565
61.8053
61.5007
61.2447
61.0345
57.5828
53.684
53.6833
53.7209
53.7852
57.4537
57.4642
57.5024
60.8681
60.7432
60.6546
60.6085
57.4737
53.8767
49.7091
44.9068
39.4988
39.7573
45.1347
45.3786
40.0271
40.3085
45.6379
45.9121
40.6011
40.9046
46.2006
46.5027
41.2186
41.5435
46.8185
51.349
51.0628
50.7927
50.5394
50.3035
50.0858
49.8873
53.9941
54.1355
54.2999
57.7095
57.6038
57.5252
60.5935
60.6056
60.6502
60.7218
57.8397
54.4859
54.6924
54.9184
55.1629
58.3658
58.1692
57.9934
60.8201
60.9429
61.0888
63.4398
63.3454
63.2767
63.2345
63.2235
63.2388
63.2855
63.3725
63.4955
63.6599
63.8675
64.1214
64.4246
64.7801
65.1907
68.2705
67.7539
67.2993
69.9111
70.4638
71.0857
73.6693
72.9432
72.2938
71.7162
69.4235
66.9033
66.5624
66.2732
66.0321
68.3108
68.6273
68.9969
71.2056
70.7576
70.3676
72.2311
72.6921
73.2162
73.8083
74.4738
75.2181
76.0467
78.2395
77.3101
76.4733
78.3109
79.2376
80.2653
82.1392
81.0158
80.0023
79.0898
77.4777
75.7226
75.0515
74.4541
73.9248
75.4686
76.0631
76.7307
78.2701
77.5356
76.8793
76.2946
74.9414
73.4583
71.8284
70.0315
68.0437
65.8362
65.682
65.5673
65.4875
67.5051
67.6442
67.8226
69.7453
69.5054
69.3084
69.1512
67.4033
65.4463
65.434
65.4484
65.4915
67.2968
67.3034
67.3354
69.0309
68.9448
68.8923
70.3147
70.4141
70.5477
70.7181
70.9281
71.1808
71.4796
73.0498
72.6948
72.3891
73.7122
74.0679
74.4762
75.7758
75.3175
74.9148
74.5633
73.4049
72.129
71.9112
71.7323
71.5896
72.738
72.9211
73.1423
74.259
73.9981
73.7775
73.5941
72.5903
71.4803
70.2463
68.8716
67.3174
65.5603
63.5579
61.2565
58.582
55.4249
51.6506
47.1473
41.8786
42.2242
47.4888
47.8428
42.5801
42.9461
48.209
48.5871
43.3223
43.7086
48.9769
49.3782
44.1049
44.511
49.7907
54.1507
53.7551
53.3715
53.0006
52.6425
52.2978
51.967
55.7037
55.9985
56.3088
59.3388
59.0695
58.8169
61.4446
61.6519
61.8775
62.1201
59.6241
56.6338
56.9727
57.3251
57.6905
60.5673
60.2391
59.9244
62.379
62.653
62.9413
63.243
60.9083
58.068
54.5581
50.2141
44.927
45.3528
50.6483
51.0931
45.7883
46.2335
51.5481
52.0133
46.6884
47.1528
52.4884
52.9733
47.6269
48.1107
53.4679
57.7045
57.2259
56.7565
56.2965
55.8463
55.4062
54.9767
58.4572
58.8575
59.2685
62.0008
61.6257
61.2613
63.5572
63.883
64.2198
64.5666
62.3859
59.6894
60.1199
60.5594
61.0074
63.5945
63.1834
62.7803
64.9226
65.2872
65.6595
67.3437
67.0098
66.6836
66.3659
66.0576
65.7595
65.4727
65.1979
64.9362
64.6886
64.456
64.2395
64.0403
63.8594
63.6982
65.6531
65.7686
65.9051
67.5282
67.4347
67.3637
68.8721
68.9005
68.9526
69.0271
67.6426
66.0613
66.2359
66.4276
66.6352
68.0978
67.9288
67.7766
69.1225
69.237
69.3694
70.4847
70.3868
70.3077
70.2488
70.2123
70.1997
70.2102
71.402
71.354
71.3347
72.3346
72.3911
72.4754
73.445
73.3278
73.2401
73.1796
72.3069
71.3349
71.3597
71.4057
71.4715
72.3521
72.316
72.3008
73.1466
73.1361
73.1446
73.1735
72.4075
71.5557
70.6
69.5182
68.2825
66.8576
67.0937
67.3424
67.6028
68.9181
68.6937
68.4815
69.6822
69.8601
70.0508
70.2531
69.1536
67.8737
68.1543
68.4436
68.7407
69.9162
69.6536
69.3991
70.4658
70.688
70.9187
71.7848
71.5833
71.3908
71.2082
71.0366
70.8773
70.7313
71.6567
71.7731
71.9036
72.6741
72.5699
72.4806
73.221
73.2856
73.3658
73.4602
72.7918
72.047
72.202
72.3675
72.5425
73.2138
73.0628
72.9217
73.5676
73.6866
73.8162
74.3635
74.253
74.1537
74.0667
73.9933
73.9348
73.8927
73.8685
73.864
73.877
73.9125
73.9742
74.0622
74.1788
74.326
74.5066
74.723
74.9784
75.2759
75.619
76.0117
76.4583
76.9634
77.5324
78.171
78.8858
79.6837
80.5725
81.5608
82.6578
83.8737
85.4793
84.1746
82.9978
84.3227
85.5753
86.9649
88.3375
86.8676
85.5439
84.352
83.1945
81.9375
80.9832
80.1257
79.3561
80.445
81.2655
82.1789
83.2792
82.3141
81.4465
82.3683
83.279
84.2917
85.4172
86.6679
88.0579
89.6031
90.7662
89.1515
87.7006
88.6467
90.1528
91.8308
92.7999
91.0654
89.5102
88.1141
87.2935
86.3959
85.2224
84.1666
83.2169
83.9978
84.9824
86.0768
86.8594
85.7311
84.716
83.8026
83.1121
82.3627
81.5497
80.6673
79.709
78.667
78.0512
77.5026
77.0154
77.9365
78.4611
79.0499
79.9685
79.3429
78.7842
78.2865
77.4708
76.5846
76.2057
75.8744
75.5871
76.3803
76.6968
77.059
77.8449
77.4546
77.1117
77.7887
78.1555
78.571
79.0396
79.5661
80.1558
80.8147
81.5952
80.9063
80.2889
80.9582
81.6002
82.3157
82.981
82.2424
81.579
80.9841
80.3831
79.7366
79.2439
78.8058
78.4178
79.0045
79.4112
79.8692
80.4517
79.9764
79.5535
80.0688
80.5055
80.9955
81.5436
82.1554
82.837
83.5954
84.4386
85.3756
86.4168
87.5742
88.8616
90.2948
91.8924
93.6759
94.4613
92.6366
91.0034
91.639
93.3004
95.158
95.7684
93.8865
92.2042
90.6975
90.1503
89.5393
88.2247
87.0432
85.9803
86.5334
87.6134
88.8142
89.3455
88.1307
87.038
87.4971
88.5979
89.8217
91.1837
92.702
94.3975
96.2949
96.7402
94.8363
93.1352
93.5071
95.2061
97.1075
97.4012
95.5103
93.8208
92.3074
91.9855
91.6121
90.2457
89.0179
87.9134
88.2899
89.3937
90.6204
90.9491
89.7282
88.6294
87.6396
87.2959
86.919
86.5061
86.0545
85.5613
85.0237
84.1627
83.3879
82.6912
83.1897
83.8984
84.6861
85.1688
84.3714
83.6538
83.0086
82.5528
82.0655
81.5043
81.0021
80.554
81.0121
81.4694
81.9813
82.4293
81.9101
81.4459
81.8579
82.3268
82.851
83.4356
84.0864
84.8099
85.6136
86.0233
85.2164
84.4899
84.8669
85.5936
86.4004
86.7477
85.9439
85.2198
84.568
84.2129
83.8362
83.2488
82.7219
82.2504
82.6256
83.0977
83.6251
83.982
83.4562
82.9854
82.5651
82.2042
81.8297
81.4397
81.0322
80.6049
80.1554
79.681
79.1787
78.6449
78.0758
77.4667
76.8122
76.1059
75.3403
75.131
74.9562
74.8134
75.5039
75.6705
75.8703
76.5528
76.3305
76.1424
75.9859
75.3679
74.7002
74.6144
74.5539
74.5184
75.1216
75.1788
75.2603
75.8586
75.7584
75.6832
76.2084
76.2997
76.4166
76.5614
76.7362
76.9435
77.1861
77.7762
77.5158
77.2914
77.8132
78.0525
78.3287
78.8481
78.5582
78.306
78.0885
77.6079
77.1003
76.9401
76.8084
76.7031
77.172
77.2896
77.4342
77.9031
77.7474
77.6192
77.5165
77.0793
76.6221
76.141
75.6311
75.0884
74.5049
74.5076
74.5293
74.5682
75.1003
75.079
75.0759
75.6021
75.5921
75.5974
75.6199
75.138
74.6228
74.6916
74.7734
74.8668
75.3352
75.2568
75.1906
75.6582
75.7107
75.776
76.195
76.1411
76.1007
76.0752
76.0662
76.0725
76.0955
76.5635
76.5269
76.5109
76.9349
76.9614
77.0096
77.4373
77.3798
77.3436
77.3273
76.9256
76.509
76.5232
76.5532
76.5971
76.9863
76.9509
76.93
77.3246
77.3376
77.3658
77.7383
77.716
77.7098
77.7172
77.7404
77.7848
77.8498
77.937
78.0482
78.1854
78.3504
78.5457
78.7736
79.0368
79.3382
79.8024
79.4914
79.2192
79.6456
79.9251
80.2438
80.6649
80.3404
80.0554
79.8067
79.4022
78.9827
78.7792
78.6064
78.462
78.8629
79.0133
79.1922
79.5918
79.4081
79.2534
79.6351
79.793
79.98
80.1984
80.4507
80.7396
81.0682
81.4557
81.1248
80.8336
81.2059
81.4978
81.8295
82.1914
81.8605
81.5692
81.3145
80.9507
80.5791
80.3587
80.1697
80.0099
80.3792
80.5397
80.7294
81.0938
80.9045
80.7443
80.6113
80.2458
79.8772
79.5042
79.1254
78.7392
78.3438
78.2499
78.1786
78.1281
78.5086
78.5638
78.6401
79.0223
78.9423
78.8836
78.8455
78.4743
78.0988
78.0876
78.0885
78.1059
78.4704
78.457
78.4593
78.8274
78.8231
78.8334
79.1961
79.1878
79.1935
79.2137
79.2546
79.3157
79.3983
79.7697
79.6854
79.6228
79.9896
80.0527
80.1376
80.5033
80.4187
80.3558
80.3129
79.9465
79.5803
79.5589
79.5524
79.5595
79.9243
79.9177
79.9246
80.2912
80.2845
80.2914
80.3141
79.9469
79.5824
79.2201
78.8592
78.4988
78.1377
77.7746
77.4077
77.035
76.6538
76.2611
75.853
75.4248
74.9709
74.4839
73.9552
73.3737
72.7258
71.9941
71.1568
70.1859
69.0447
67.6845
66.0389
64.013
61.4634
58.1918
53.972
48.6042
49.1076
54.4855
55.0084
49.6209
50.1444
55.5406
56.0822
50.6784
51.2232
56.6332
57.1938
51.7791
52.3466
57.7641
61.8278
61.2857
60.7509
60.2235
59.7037
59.1917
58.6876
61.9269
62.3976
62.8749
65.3069
64.8698
64.4383
66.4245
66.8158
67.212
67.6126
65.7491
63.3584
63.8478
64.3427
64.8428
67.101
66.6467
66.1959
68.0167
68.424
68.8337
69.2453
67.5585
65.3476
62.377
58.3443
52.9263
53.5189
58.9347
59.5356
54.1249
54.7454
60.1474
60.7704
55.3811
56.0331
61.4053
62.0525
56.7026
57.3907
62.7125
66.4215
65.822
65.23
64.6451
64.0675
63.4969
62.9334
65.857
66.3707
66.8883
68.9448
68.4807
68.0185
69.6583
70.0721
70.4863
70.9004
69.4102
67.4097
67.9346
68.4628
68.9943
70.8115
70.3439
69.8767
71.314
71.7267
72.1382
73.1417
72.7784
72.4131
72.0459
71.6774
71.3079
70.938
70.5681
70.1989
69.8308
69.4646
69.1009
68.7403
68.3835
68.0314
69.3548
69.6701
69.9899
71.0289
70.7431
70.4618
71.4015
71.6517
71.9067
72.1656
71.3184
70.3134
70.6397
70.9683
71.2984
72.2017
71.9055
71.6109
72.4276
72.692
72.9581
73.6035
73.3639
73.1263
72.8914
72.6598
72.4325
72.2103
72.9164
73.1135
73.3161
73.8968
73.7162
73.5415
74.1026
74.2574
74.4187
74.5856
74.0826
73.5233
73.7343
73.9484
74.1647
74.6622
74.466
74.2726
74.7572
74.9327
75.1115
75.2927
74.8605
74.3827
73.8442
73.225
72.4986
71.6294
71.9607
72.2916
72.6217
73.3884
73.0926
72.7958
73.4924
73.7594
74.0257
74.2908
73.6829
72.9505
73.2775
73.6023
73.9247
74.5538
74.2659
73.9755
74.5542
74.8155
75.0746
75.5186
75.2836
75.0466
74.808
74.568
74.327
74.0856
74.6017
74.8211
75.0403
75.4616
75.2607
75.0601
75.4759
75.6604
75.8458
76.0315
75.6624
75.2591
75.4769
75.6935
75.9086
76.2611
76.0624
75.8628
76.2174
76.403
76.5882
76.7729
76.4587
76.1221
75.7515
75.3311
74.8389
74.2442
73.5024
72.548
71.2792
69.5286
67.0283
63.3861
58.099
58.8289
64.0738
64.7765
59.5821
60.3604
65.4948
66.2294
61.1659
62.0004
66.9808
67.7497
62.8664
63.7659
68.5367
71.4876
70.8283
70.1761
69.5313
68.8941
68.2645
67.6425
70.0658
70.6055
71.1476
72.68
72.2138
71.7467
72.956
73.3618
73.765
74.1655
73.1451
71.6918
72.2377
72.7849
73.3329
74.5294
74.0703
73.6087
74.5627
74.9565
75.3464
75.7318
74.9854
73.8809
72.1534
69.3419
64.7014
65.6751
70.1653
71.0067
66.689
67.7454
71.8654
72.7404
68.8461
69.9918
73.6296
74.5303
71.1829
72.4181
75.4391
76.8902
76.2199
75.5428
74.8622
74.1809
73.5012
72.8249
74.4282
74.9736
75.5158
76.327
75.8852
75.4377
76.1124
76.4875
76.8563
77.218
76.7619
76.0533
76.5841
77.1059
77.6161
78.0093
77.6049
77.1884
77.5717
77.9161
78.2501
78.4231
78.1364
77.8415
77.5392
77.23
76.9146
76.5935
76.267
75.9356
75.5997
75.2594
74.9151
74.567
74.2154
73.8604
74.5606
74.8737
75.1833
75.6754
75.3998
75.121
75.5849
75.8358
76.0838
76.3289
75.9475
75.4892
75.7914
76.0895
76.3837
76.7429
76.4813
76.2161
76.5711
76.8104
77.047
77.3177
77.1004
76.8812
76.6598
76.4363
76.2104
75.9821
76.3338
76.5438
76.752
77.0444
76.8503
76.6551
76.9569
77.1404
77.3234
77.5061
77.2375
76.9585
77.1635
77.3671
77.5697
77.813
77.6216
77.4298
77.6886
77.8712
78.0543
78.2381
78.0045
77.7715
77.5333
77.2809
77.0011
76.6736
76.9591
77.2401
77.5163
77.7546
77.5069
77.2557
77.5123
77.7414
77.9684
78.1935
77.9989
77.7877
78.0539
78.3147
78.5699
78.7118
78.4774
78.2398
78.4169
78.6389
78.8599
79.0196
78.8071
78.5954
78.384
78.1724
77.9603
77.7474
77.9728
78.174
78.3755
78.5832
78.3892
78.1964
78.4232
78.6099
78.7986
78.9899
78.7789
78.5777
78.7811
78.9861
79.1931
79.3812
79.1774
78.9768
79.1842
79.3819
79.5835
79.7995
79.5993
79.4036
79.2118
79.0236
78.8386
78.6562
78.4761
78.2979
78.1211
77.9453
77.7704
77.5958
77.4216
77.2474
77.0732
76.899
76.7248
76.5507
76.3769
76.2037
76.0314
75.8604
75.6913
75.5246
75.3609
75.2009
75.0453
74.8949
74.7506
74.6133
75.0844
75.2063
75.3358
75.7496
75.633
75.5244
75.9405
76.0374
76.1429
76.2559
75.8732
75.4718
75.6135
75.7602
75.911
76.2781
76.1382
76.003
76.3755
76.501
76.6317
76.9762
76.8533
76.736
76.625
76.521
76.4251
76.3381
76.7219
76.8004
76.8883
77.248
77.1669
77.0955
77.462
77.5274
77.6029
77.6875
77.3379
76.9845
77.0883
77.1988
77.3153
77.6517
77.5405
77.4357
77.7804
77.8807
77.9876
78.1005
77.7684
77.437
77.1039
76.7667
76.422
76.0654
76.2226
76.3821
76.5435
76.8715
76.7192
76.5692
76.9056
77.0477
77.1925
77.3397
77.0257
76.7063
76.8702
77.0349
77.2002
77.4967
77.3386
77.1815
77.4889
77.6399
77.7923
78.0897
77.9417
77.7957
77.6518
77.5102
77.3715
77.2359
77.5632
77.6936
77.8274
78.1462
78.0162
77.8902
78.2185
78.3413
78.4682
78.5988
78.2796
77.9644
78.1041
78.2463
78.3908
78.697
78.5552
78.416
78.7327
78.8697
79.0094
79.3286
79.1904
79.0551
78.9231
78.7946
78.67
78.5498
78.4346
78.3248
78.2213
78.1246
78.0357
77.9552
77.8842
77.8237
78.1826
78.2394
78.3068
78.6589
78.5942
78.5405
78.8985
78.9501
79.0128
79.0856
78.7335
78.3839
78.4698
78.5636
78.6646
79.0079
78.9089
78.8171
79.1676
79.2579
79.3556
79.7082
79.6112
79.5219
79.441
79.3693
79.3079
79.2578
79.6192
79.6685
79.7292
80.0929
80.0324
79.9834
80.3508
80.4001
80.4609
80.532
80.1638
79.8002
79.8806
79.9695
80.0661
80.4295
80.3329
80.244
80.6125
80.7017
80.7986
80.9024
80.533
80.1696
79.812
79.4601
79.1136
78.772
78.8851
79.0034
79.1262
79.4637
79.3421
79.2252
79.5707
79.6867
79.8075
79.9328
79.5896
79.2532
79.3839
79.5179
79.6551
79.9892
79.8527
79.7194
80.062
80.1948
80.3309
80.6804
80.5444
80.4118
80.2828
80.1579
80.0374
79.922
80.2793
80.3946
80.515
80.8788
80.7583
80.6428
81.0126
81.1284
81.2493
81.3748
81.0039
80.6399
80.7688
80.9015
81.0376
81.4023
81.266
81.1331
81.5044
81.6377
81.7744
81.9142
81.5417
81.1768
80.8195
80.4701
80.1287
79.7952
79.4696
79.1517
78.8411
78.5373
78.2394
77.9462
77.6559
77.366
77.5324
77.6992
77.8667
78.1393
77.9771
77.816
78.1015
78.2582
78.4163
78.5761
78.3028
78.0349
78.2042
78.3747
78.5468
78.803
78.6343
78.4677
78.7378
78.9015
79.0676
79.3413
79.1771
79.0155
78.8563
78.6993
78.5442
78.3909
78.6859
78.8366
78.9894
79.2873
79.1363
78.9876
79.2965
79.4438
79.5936
79.746
79.4408
79.1444
79.3017
79.4617
79.6245
79.9174
79.7556
79.5968
79.901
80.0589
80.2199
80.3842
80.0824
79.7904
79.5085
79.2365
78.9741
78.721
78.8974
79.0767
79.2591
79.5054
79.3249
79.1479
79.4083
79.5837
79.7627
79.946
79.6898
79.4451
79.6351
79.8295
80.0286
80.2702
80.0719
79.8786
80.1337
80.3262
80.5237
80.7888
80.5919
80.4002
80.2133
80.031
79.853
79.6789
79.9598
80.1329
80.31
80.5996
80.4232
80.2509
80.5521
80.7238
80.8996
81.0799
80.7805
80.4915
80.6777
80.8688
81.065
81.3521
81.1565
80.966
81.2649
81.4548
81.6498
81.9578
81.7633
81.574
81.3895
81.2098
81.0344
80.8632
80.6958
80.5321
80.3717
80.2144
80.06
79.9085
79.7596
79.6133
79.9381
80.0837
80.232
80.5642
80.4162
80.2711
80.6123
80.7572
80.905
81.0555
80.7149
80.383
80.5369
80.6937
80.8537
81.1848
81.025
80.8685
81.209
81.3654
81.5249
81.874
81.7146
81.5582
81.4048
81.2543
81.1065
80.9616
81.319
81.464
81.6119
81.9775
81.8295
81.6842
82.057
82.2027
82.3511
82.5022
82.1283
81.7625
81.9159
82.0724
82.2318
82.5981
82.4385
82.282
82.656
82.8128
82.9725
83.1354
82.7609
82.3946
82.0368
81.6878
81.3479
81.0171
81.1841
81.3549
81.5298
81.8596
81.685
81.5145
81.8543
82.0245
82.1988
82.3774
82.0385
81.7092
81.8931
82.082
82.2759
82.6039
82.4105
82.2221
82.5606
82.7486
82.9415
83.2885
83.096
82.9084
82.7256
82.5473
82.3732
82.2031
82.5608
82.7308
82.9047
83.2708
83.097
82.9271
83.3017
83.4716
83.6453
83.8231
83.4487
83.0828
83.2653
83.4526
83.6447
84.0099
83.818
83.631
84.0053
84.1921
84.3836
84.7658
84.5745
84.3879
84.2058
84.028
83.8543
83.6843
83.5179
83.3549
83.1949
83.0379
82.8837
82.7322
82.5834
82.4373
82.294
82.1537
82.0165
81.8826
81.7525
81.6265
81.505
81.3886
81.2779
81.1734
81.0759
80.9862
80.905
80.8333
80.772
80.722
80.6846
80.6611
80.6535
80.6596
80.6804
80.7223
80.7842
80.8678
80.9746
81.1065
81.2653
81.4531
81.6722
81.9251
82.2144
82.5431
82.9143
83.3318
83.7994
84.3217
84.9037
85.5509
86.2698
87.0677
87.9528
88.9348
90.0246
91.235
92.5809
94.0802
95.7542
97.6276
97.791
95.9433
94.2909
94.4576
96.0813
97.8947
97.9449
96.172
94.5832
93.1564
93.001
92.8104
91.4813
90.2858
89.2089
89.4549
90.5152
91.6924
91.8729
90.7172
89.6759
89.8762
90.8956
92.0257
93.2793
94.6718
96.2213
97.9485
97.9148
96.2354
94.7292
94.7605
96.2206
97.8449
97.7476
96.1811
94.7702
93.4989
93.446
93.3742
92.1535
91.0525
90.0584
90.2244
91.1908
92.2607
92.3513
91.3145
90.3773
89.53
89.3511
89.1606
88.9566
88.7371
88.4988
88.2383
87.3631
86.5739
85.8626
86.1571
86.8584
87.6364
87.8901
87.1258
86.4367
85.8159
85.5256
85.2222
84.6463
84.1294
83.6666
83.9915
84.4479
84.9576
85.2577
84.7567
84.3081
84.6181
85.0574
85.5483
86.0952
86.7033
87.3783
88.1268
88.3499
87.6185
86.9592
87.2066
87.8493
88.5619
88.7643
88.0724
87.4479
86.8853
86.6278
86.3652
85.831
85.3516
84.9226
85.2232
85.6408
86.1075
86.3795
85.9261
85.5208
85.8167
86.2093
86.6488
87.139
87.6841
88.2889
88.9589
89.7004
90.5204
91.4269
92.4289
93.537
94.7633
96.1219
97.6288
97.4945
96.049
94.744
94.716
95.9667
97.3499
97.2002
95.8796
94.6835
93.5994
93.5838
93.5641
92.4969
91.5309
90.6563
90.7874
91.6293
92.5584
92.6163
91.7246
90.916
91.0441
91.8192
92.6733
93.6139
94.6499
95.7914
97.0498
96.9027
95.7058
94.6184
94.5914
95.6257
96.7624
96.6317
95.5538
94.5714
93.6761
93.6501
93.63
92.7316
91.9151
91.1734
91.3054
92.014
92.7934
92.8604
92.1175
91.4416
90.8273
90.6619
90.5001
90.341
90.1831
90.0249
89.8646
89.1484
88.5009
87.9165
88.1468
88.7104
89.3346
89.5193
88.9188
88.3765
87.8877
87.6389
87.3898
86.9162
86.4915
86.1122
86.4078
86.7732
87.1823
87.4485
87.055
86.7038
87.0012
87.338
87.7156
88.1373
88.6066
89.1273
89.7039
89.8898
89.3373
88.8382
89.072
89.5495
90.0781
90.2698
89.7649
89.3088
88.8978
88.6417
88.3884
87.9843
87.6226
87.3003
87.6017
87.9095
88.2552
88.5288
88.1989
87.9055
87.646
87.3291
87.0147
86.7024
86.392
86.0829
85.7748
85.4673
85.1597
84.851
84.5402
84.2262
83.908
83.5842
83.2535
82.8861
82.561
82.275
82.6201
82.9018
83.2221
83.5524
83.2379
82.9616
82.7205
82.3741
82.025
81.8086
81.6232
81.4666
81.8257
81.9792
82.1613
82.5122
82.3342
82.1845
82.5436
82.6889
82.8621
83.0652
83.3005
83.5706
83.8782
84.2006
83.9008
83.6378
83.9743
84.2295
84.5208
84.8397
84.5575
84.3106
84.0964
83.7525
83.4089
83.2117
83.044
82.9036
83.2649
83.3999
83.5618
83.9126
83.7572
83.628
83.5233
83.155
82.7886
82.4241
82.0609
81.6987
81.3368
81.2319
81.1501
81.0898
81.4588
81.5169
81.5964
81.9618
81.8852
81.8298
81.7951
81.4211
81.0497
81.0302
81.025
81.034
81.4102
81.3995
81.4035
81.7797
81.7772
81.7901
82.1737
82.1582
82.1591
82.1718
82.2032
82.2555
82.3286
82.6973
82.6281
82.5793
82.9583
83.0032
83.0682
83.4415
83.3809
83.3404
83.3204
82.9344
82.5516
82.5413
82.5429
82.5611
82.9523
82.9313
82.9264
83.3148
83.3231
83.3472
83.7457
83.7185
83.7065
83.7095
83.7256
83.7612
83.8172
83.8939
83.993
84.116
84.2648
84.4413
84.6474
84.8855
85.1579
85.4763
85.214
84.9851
85.3242
85.5437
85.7958
86.1166
85.8751
85.6652
85.4849
85.1351
84.7874
84.6186
84.4768
84.3601
84.7295
84.8396
84.9742
85.3319
85.2046
85.1012
85.4753
85.5719
85.6919
85.8368
86.0083
86.2083
86.4389
86.7631
86.5433
86.3532
86.7003
86.8805
87.0895
87.4182
87.2201
87.0496
86.9051
86.5468
86.1907
86.0541
85.9417
85.8517
86.2304
86.3135
86.4184
86.7849
86.6874
86.6112
86.5549
86.168
85.7829
85.4003
85.0201
84.6423
84.2668
84.1954
84.1443
84.1138
84.505
84.5303
84.5763
84.9598
84.9191
84.8988
84.8929
84.496
84.1017
84.1013
84.1171
84.1476
84.5528
84.519
84.4994
84.9005
84.9238
84.9611
85.3722
85.3315
85.3044
85.2924
85.2952
85.3109
85.3456
85.7339
85.7051
85.6939
86.094
86.1017
86.1247
86.5179
86.5003
86.496
86.5056
86.0989
85.6943
85.7108
85.7417
85.7859
86.202
86.1543
86.1196
86.5305
86.5691
86.6202
87.0403
86.9857
86.9433
86.9142
86.8997
86.9006
86.9132
86.9437
86.9939
87.0634
87.1535
87.2656
87.4012
87.5619
87.7493
87.9653
88.2119
88.4912
88.8054
89.1571
89.549
89.9841
90.4657
90.9973
91.5828
92.2267
92.9339
93.7097
94.5603
95.4922
96.5132
96.4088
95.4426
94.5596
94.5696
95.4061
96.3199
96.2478
95.3842
94.5926
93.8678
93.8046
93.7522
93.0152
92.3428
91.7301
91.884
92.4665
93.1052
93.2045
92.5983
92.0452
92.2138
92.7387
93.3137
93.9423
94.6287
95.3777
96.1932
97.0815
96.9942
97.9046
98.8936
98.7151
99.7232
99.511
98.5645
97.69
97.7853
96.9279
96.1378
96.1564
95.386
94.6781
94.7411
95.41
95.4502
96.1377
96.8825
96.8573
97.6183
98.4412
99.3304
100.291
101.327
102.446
103.652
104.953
106.353
107.861
109.481
111.22
113.082
115.07
117.186
115.77
113.814
111.976
110.981
112.683
114.493
113.346
111.668
110.091
108.611
109.386
110.253
108.643
107.141
105.741
105.195
106.498
107.893
107.224
105.926
104.713
104.29
105.422
106.631
107.922
109.297
110.762
112.319
113.969
112.937
114.56
113.528
115.123
116.803
115.666
114.099
112.612
111.203
112.018
110.59
111.403
109.956
108.593
107.971
109.242
108.612
109.87
109.237
110.483
111.799
113.189
114.654
116.194
117.811
119.504
121.273
119.966
121.701
120.431
122.138
120.908
122.589
121.401
123.061
124.79
126.587
128.452
130.385
132.385
130.823
132.812
131.314
133.297
131.861
133.844
132.466
134.454
136.52
135.131
137.213
135.878
137.978
136.691
134.653
132.699
133.86
131.924
133.131
131.209
129.365
130.553
128.714
129.951
128.114
129.402
127.561
128.904
127.054
125.272
124.089
125.791
124.653
126.348
125.255
126.949
125.899
127.596
126.586
128.29
130.068
129.034
130.827
129.831
131.641
133.533
135.51
134.429
132.512
130.68
129.81
131.583
133.441
132.542
130.742
129.025
127.386
128.118
128.93
127.258
128.1
126.446
127.319
125.679
124.866
124.138
125.662
124.96
126.502
125.823
124.334
122.913
123.49
122.086
122.684
123.356
124.111
124.956
123.396
124.274
122.719
123.632
122.078
123.027
121.47
122.456
123.56
121.916
120.34
118.83
119.809
118.285
119.297
117.755
118.797
117.233
118.303
116.714
115.739
114.876
116.281
115.439
116.829
116.009
117.387
116.592
117.961
119.394
120.892
119.979
118.554
117.192
115.891
114.652
115.287
114.042
114.695
113.443
114.113
112.851
113.537
114.316
115.199
113.756
112.384
111.083
110.454
111.675
112.962
112.263
111.053
109.904
109.426
110.509
111.651
111.116
112.25
111.726
112.855
112.343
113.47
112.971
114.096
115.276
116.513
117.81
119.169
120.591
119.81
121.231
120.479
121.904
121.18
122.612
121.914
121.295
119.97
120.538
119.224
119.813
118.508
119.118
117.819
118.452
117.155
115.917
115.395
116.579
116.074
117.262
116.775
117.971
117.501
118.706
118.252
119.47
120.748
120.265
121.558
121.09
122.402
123.776
125.217
126.73
128.317
129.98
131.724
133.554
135.471
137.482
139.588
141.796
144.107
146.526
145.38
147.852
146.722
145.666
143.316
144.312
142.013
143.021
140.769
138.621
136.573
134.62
133.843
135.74
137.731
139.821
138.946
141.078
140.214
142.393
144.681
143.764
146.102
145.187
147.577
146.661
149.105
148.182
150.681
153.306
156.064
158.96
157.801
160.76
159.576
158.45
161.385
160.229
163.219
166.358
169.651
173.105
176.727
180.522
184.497
182.655
178.802
175.123
173.578
177.138
180.867
179.139
175.536
172.094
168.808
170.18
171.613
168.265
165.073
162.03
160.898
163.847
166.939
165.672
162.679
159.824
157.1
158.087
159.13
156.366
157.38
154.667
155.655
156.699
153.96
154.983
152.3
149.747
147.316
145.003
145.803
143.539
144.334
142.119
142.911
140.745
141.537
139.417
138.682
138.005
140.011
139.334
141.385
140.704
142.801
142.114
144.256
146.506
148.869
151.352
150.459
152.994
152.082
151.223
153.733
152.851
155.407
154.5
152.021
149.655
150.415
148.091
148.831
149.62
147.275
148.046
145.748
143.56
142.91
145.04
144.378
146.552
145.875
145.241
147.397
146.745
148.94
151.238
153.645
156.166
158.806
161.571
164.466
167.499
170.675
173.999
177.477
175.885
179.393
177.743
181.271
184.953
188.796
192.801
190.64
194.641
192.407
196.39
200.526
198.041
194.088
190.276
188.252
191.898
195.675
193.432
189.823
186.336
182.968
184.735
186.604
188.573
184.885
186.795
183.103
179.564
177.939
181.341
179.666
183.068
181.345
179.717
176.582
178.08
174.939
176.398
173.256
174.675
176.17
172.915
174.363
171.128
172.529
169.32
168.032
166.809
169.797
168.535
171.541
170.238
167.34
164.558
165.652
162.888
163.948
165.069
166.253
163.321
160.519
157.842
156.932
159.525
162.236
161.208
158.585
156.073
155.263
157.698
160.238
159.323
161.887
160.943
163.526
166.213
169.008
171.916
170.653
173.563
172.267
175.172
178.183
181.302
184.529
187.865
191.313
194.873
198.545
202.328
206.221
210.221
214.326
218.53
222.828
219.264
215.196
211.213
208.287
212.061
215.911
212.769
209.125
205.548
202.043
204.594
207.32
203.521
199.82
196.218
194.034
197.465
200.985
198.613
195.263
191.993
190.09
193.21
196.403
199.665
202.995
206.388
209.84
207.119
203.846
200.624
198.43
201.494
204.602
202.282
199.327
196.408
193.53
195.414
197.457
194.35
191.304
188.322
186.684
189.538
192.449
190.696
187.909
185.173
182.488
183.889
185.406
187.043
188.805
190.696
192.718
189.319
186.023
182.829
181.236
184.296
187.45
185.701
182.682
179.747
176.896
178.268
179.736
176.742
173.847
171.05
169.909
172.604
175.391
174.128
171.443
168.842
167.846
170.359
172.949
175.616
178.358
181.177
184.072
182.557
179.777
177.067
175.869
178.48
181.153
179.856
177.28
174.76
172.298
173.32
174.425
171.853
169.35
166.918
166.056
168.413
170.835
169.892
167.545
165.258
164.52
166.743
169.022
171.354
173.739
176.175
178.662
181.198
183.782
186.411
189.084
191.798
194.55
197.337
200.154
202.997
205.862
208.744
211.639
214.539
217.439
220.333
223.214
226.074
228.906
231.704
234.46
237.167
239.817
242.405
244.924
240.48
238.119
235.692
231.94
234.218
236.433
232.77
230.689
228.547
226.347
229.603
233.204
230.664
228.074
225.443
222.297
224.776
227.214
224.095
221.796
219.454
216.9
219.119
221.295
223.422
225.498
227.518
229.478
226.539
224.688
222.779
220.373
222.185
223.939
221.66
219.991
218.265
216.484
218.506
220.814
218.797
216.732
214.622
212.608
214.62
216.587
214.651
212.77
210.843
208.874
210.556
212.475
214.644
217.075
219.781
222.776
220.081
217.361
214.626
212.071
214.663
217.235
214.663
212.224
209.763
207.287
209.469
211.883
209.134
206.386
203.647
201.632
204.243
206.858
204.8
202.305
199.81
198.169
200.562
202.949
205.326
207.688
210.032
212.353
210.292
208.077
205.835
204.194
206.345
208.467
206.867
204.826
202.754
200.658
202.021
203.574
201.295
199.002
196.702
195.399
197.619
199.828
198.54
196.404
194.254
193.259
195.348
197.422
199.476
201.505
203.508
205.48
207.416
209.312
211.166
212.974
214.733
216.44
218.092
219.687
218.002
216.47
214.881
213.576
215.112
216.591
215.452
214.015
212.522
210.974
211.985
213.237
211.542
209.796
208.004
206.909
208.649
210.342
209.373
207.722
206.023
205.357
207.024
208.643
210.212
211.729
213.19
214.595
214.021
212.637
211.197
210.891
212.319
213.69
209.408
209.702
208.154
206.556
204.909
204.652
206.286
207.872
202.971
203.217
203.644
204.28
205.124
206.169
204.294
202.382
200.437
199.54
201.436
203.299
202.495
200.672
198.814
196.926
197.613
198.463
196.464
194.444
192.406
191.689
193.684
195.66
195.009
193.068
191.108
190.67
192.604
194.518
196.407
198.267
200.096
201.89
201.483
199.71
197.9
197.688
199.487
201.249
195.858
196.059
194.188
192.292
190.376
190.207
192.113
193.998
188.281
188.441
188.719
189.132
189.679
190.354
191.158
192.094
193.172
194.396
195.776
197.317
199.029
200.919
198.208
195.517
192.851
191.302
193.859
196.436
194.832
192.357
189.898
187.458
188.769
190.214
187.609
185.039
182.506
181.342
183.786
186.262
185.04
182.647
180.283
179.325
181.618
183.935
186.275
188.631
191.003
193.386
192.091
189.79
187.496
186.486
188.711
190.941
189.929
187.762
185.596
183.436
184.269
185.213
182.944
180.693
178.465
177.698
179.87
182.062
181.284
179.144
177.02
174.914
175.545
176.259
177.06
177.95
178.933
180.015
177.565
175.159
172.8
171.94
174.231
176.562
175.649
173.384
171.157
168.967
169.692
170.487
168.222
166.005
163.839
163.216
165.329
167.488
166.819
164.711
162.646
162.128
164.15
166.211
168.31
170.446
172.618
174.823
174.079
171.928
169.806
169.235
171.311
173.415
172.828
170.765
168.729
166.719
167.188
167.718
165.663
163.643
161.661
161.242
163.19
165.172
164.738
162.788
160.871
160.546
162.436
164.358
166.308
168.286
170.289
172.315
174.363
176.429
178.511
180.606
182.711
184.821
186.935
189.048
188.293
186.226
184.156
183.596
185.629
187.658
187.143
185.145
183.141
181.136
181.562
182.087
180.023
177.967
175.921
175.493
177.508
179.532
179.133
177.135
175.145
174.881
176.852
178.831
180.814
182.798
184.779
186.753
186.491
184.533
182.567
182.434
184.391
186.341
180.473
180.598
178.628
176.662
174.703
174.601
176.552
178.511
172.658
172.754
172.919
173.165
173.49
173.89
171.874
169.879
167.905
167.583
169.533
171.503
171.2
169.251
167.321
165.413
165.656
165.955
164.03
162.133
160.265
160.028
161.876
163.753
163.528
161.668
159.835
159.688
161.509
163.356
165.228
167.122
169.038
170.971
170.816
168.894
166.988
166.911
168.811
170.727
165.032
165.104
163.241
161.402
159.589
159.532
161.341
163.175
157.751
157.804
157.895
158.031
158.209
158.428
158.688
158.988
159.33
159.716
160.148
160.625
161.15
161.724
162.35
163.029
163.763
164.555
165.407
166.321
167.301
168.347
169.464
166.76
167.85
165.152
162.554
160.054
157.649
158.46
156.075
156.862
154.5
153.783
153.108
155.334
154.639
156.886
159.219
161.641
164.153
163.216
165.737
164.777
163.879
161.515
162.337
159.979
160.783
158.435
156.17
153.986
151.879
152.474
150.389
150.966
151.58
152.234
152.929
153.668
154.452
155.284
152.839
150.502
148.269
147.638
149.81
152.079
151.364
149.159
147.046
145.023
145.561
146.134
144.092
144.648
142.644
143.183
143.76
141.743
142.306
140.331
140.882
141.476
139.49
140.074
138.131
138.708
136.808
137.381
135.522
136.095
136.719
137.399
138.14
136.164
136.914
134.979
133.135
132.491
134.283
133.649
135.478
134.85
134.276
132.544
133.07
131.375
131.906
130.247
130.785
131.379
132.035
132.758
130.983
129.292
127.679
127.107
128.671
130.312
129.706
128.113
126.594
125.146
125.616
126.142
124.676
123.28
121.949
121.549
122.84
124.194
123.766
122.451
121.197
120.888
122.108
123.386
124.728
126.135
127.611
129.159
128.666
127.16
125.725
125.358
126.756
128.222
129.761
129.321
130.894
130.456
132.064
133.751
133.272
134.997
134.515
136.279
135.793
137.597
137.104
138.949
138.447
136.649
134.932
135.345
133.667
134.073
132.432
132.833
131.229
131.627
130.06
129.7
129.372
130.867
130.535
132.065
131.728
133.293
132.95
134.551
136.227
137.982
139.819
139.342
141.218
140.728
140.271
142.139
141.668
143.572
143.084
141.227
139.447
139.845
138.1
138.485
138.898
137.149
137.55
135.837
134.199
132.633
131.136
131.419
129.956
130.233
128.804
129.075
127.679
127.946
128.24
128.565
128.924
127.462
127.822
126.393
125.03
123.73
124.024
124.355
123.05
121.805
120.616
120.379
121.538
122.752
122.489
121.303
120.172
119.992
121.098
122.256
123.468
124.738
126.068
125.777
127.138
126.846
126.583
125.281
125.516
124.245
124.477
123.236
122.051
120.918
119.835
119.7
120.761
121.87
123.031
122.848
124.037
123.852
125.071
126.346
126.132
127.438
127.219
128.557
128.332
129.703
129.471
130.875
132.341
133.874
135.475
135.139
136.776
136.428
136.105
137.74
137.405
139.074
140.813
142.627
144.518
146.49
148.547
150.692
150.059
147.972
145.968
145.478
147.431
149.464
148.906
146.924
145.018
143.184
143.601
144.045
142.199
140.426
138.725
138.398
140.064
141.797
141.42
139.724
138.092
137.805
139.405
141.067
142.793
144.586
146.448
148.381
147.889
149.848
149.34
151.321
153.374
155.499
157.7
157.012
159.226
158.523
160.746
163.041
162.259
160.03
157.867
157.256
159.364
161.532
160.858
158.745
156.689
154.69
155.21
155.769
156.369
154.283
154.871
152.8
150.799
150.31
152.264
151.764
153.735
153.224
152.749
150.863
151.297
149.428
149.853
148.004
148.42
148.864
146.995
147.428
145.582
146.001
144.181
143.801
143.446
145.19
144.823
146.591
146.213
144.48
142.803
143.114
141.462
141.762
142.084
142.427
140.736
139.107
137.537
137.286
138.828
140.426
140.136
138.566
137.051
136.832
138.322
139.865
139.612
141.181
140.919
142.513
144.159
145.861
147.616
147.256
149.032
148.665
150.462
152.309
154.209
156.164
158.173
160.234
159.659
157.644
155.68
155.234
157.159
159.131
158.648
156.715
154.827
152.984
153.358
153.765
151.903
150.09
148.327
148.016
149.749
151.53
151.188
149.436
147.73
147.469
149.151
150.876
152.644
154.456
156.311
158.208
157.811
155.946
154.12
153.819
155.618
157.455
157.14
155.327
153.551
151.814
152.059
152.335
150.593
148.893
147.233
147.021
148.661
150.34
150.115
148.454
146.832
145.251
145.422
145.616
145.831
146.069
146.33
146.614
146.922
145.229
145.533
143.862
142.243
140.675
139.156
139.376
137.882
138.094
136.628
136.437
136.26
137.685
137.501
138.952
140.449
141.993
143.586
143.331
144.949
144.69
144.453
142.881
143.096
141.549
141.762
140.24
138.764
137.332
135.945
136.096
134.738
134.884
135.042
135.212
135.395
135.591
135.801
136.025
136.265
136.522
136.797
137.091
135.522
135.803
134.267
134.537
134.827
133.292
133.572
132.071
130.634
129.257
127.938
128.126
126.839
127.02
125.763
125.938
124.713
124.883
123.687
123.54
123.409
124.561
124.424
125.605
125.462
126.674
126.523
127.765
129.061
130.412
131.822
131.59
133.033
132.791
132.567
134.015
133.78
135.259
135.013
133.561
132.164
132.358
130.992
131.176
131.376
130.017
130.207
128.88
127.607
127.462
128.714
128.56
129.842
129.679
129.529
130.82
130.661
131.983
133.357
134.784
134.569
133.166
131.814
131.657
132.988
134.369
134.182
132.822
131.51
130.246
130.375
130.513
129.259
129.389
128.165
128.287
128.418
127.205
127.328
126.145
126.26
126.386
125.213
125.332
124.189
124.3
123.187
123.291
122.207
122.305
122.417
122.544
122.687
121.572
121.711
120.624
119.584
119.484
120.505
120.402
121.449
121.342
121.249
120.236
120.313
119.327
119.399
118.439
118.507
118.589
118.686
118.8
118.934
119.09
119.272
119.482
119.723
120
120.317
120.679
119.467
119.84
118.647
119.031
117.855
116.732
117.09
115.981
116.35
115.253
115.634
114.546
114.941
113.859
114.267
114.737
113.611
112.538
111.516
111.899
110.879
111.271
110.251
110.651
109.63
110.037
109.013
108.658
108.357
109.28
108.982
109.907
109.615
110.542
110.256
111.188
112.165
113.191
112.828
111.846
110.908
110.015
109.164
109.369
108.524
108.732
107.892
108.103
107.266
107.479
107.736
108.04
108.398
108.814
109.296
109.85
108.682
107.579
108.06
106.949
107.425
106.307
106.776
107.312
106.109
104.98
103.922
103.604
104.596
105.652
105.255
104.265
103.334
102.46
102.675
102.93
103.231
103.58
103.981
104.438
103.226
102.099
101.053
100.818
101.797
102.85
102.523
101.538
100.619
99.7631
99.9063
100.082
99.1803
98.3443
97.5697
97.543
98.2729
99.0594
98.9666
98.2259
97.538
97.5523
98.202
98.9002
99.6501
100.455
101.318
102.242
102.003
101.135
100.323
100.223
100.987
101.803
101.64
100.871
100.151
99.4762
99.5084
99.5659
98.8591
98.2005
97.5864
97.6388
98.2182
98.8412
98.8457
98.2566
97.7081
97.1975
97.0996
97.0166
96.9494
96.8988
96.8661
96.8526
96.1886
96.1539
95.5055
94.9077
94.8177
94.2362
94.1264
94.0285
93.433
92.888
92.3902
92.5744
93.0462
93.5625
93.7024
93.2133
92.7663
92.3588
92.1443
91.9366
91.7356
91.5415
91.3539
91.1726
90.6663
90.2076
89.7932
90.0416
90.4358
90.8722
91.0837
90.669
90.2944
89.9573
89.6867
89.42
89.0852
88.7864
88.5212
88.8333
89.0848
89.3685
89.6554
89.3864
89.1482
89.466
89.6911
89.9457
90.2319
90.5517
90.9073
91.3011
91.5243
91.1508
90.8136
91.08
91.3994
91.7534
91.9885
91.6532
91.3509
91.0796
90.7932
90.5106
90.2397
89.9989
89.7866
90.1097
90.3098
90.537
90.8377
90.6235
90.4353
90.7632
90.9398
91.1415
91.3697
91.626
91.9119
92.2293
92.5799
92.9658
93.3892
93.8523
94.3576
94.4903
95.0108
95.5759
95.661
96.2399
96.3074
95.76
95.2545
95.1265
94.6341
94.1815
94.0121
93.5737
93.1728
93.387
93.7665
93.9672
94.3601
94.7886
94.9531
95.3942
95.8725
96.3902
96.4877
95.9978
95.5449
95.7061
96.135
96.599
96.7232
96.2836
95.877
95.5021
95.3104
95.1272
94.7431
94.5475
94.1755
93.8356
93.608
93.2808
93.0412
92.8074
92.4756
92.1754
91.9052
92.1883
92.4435
92.7272
92.9839
92.7158
92.475
92.2601
91.9602
91.6633
91.4483
91.2587
91.0932
91.425
91.5799
91.7579
92.0699
91.9031
91.7584
92.0933
92.228
92.3842
92.5628
92.7651
92.9921
93.2453
93.526
93.7764
94.0692
94.391
94.6131
94.9466
95.1574
94.8415
94.5533
94.3086
94.0317
93.7811
93.5112
93.2722
93.0582
93.354
93.5556
93.842
94.0547
94.2914
94.5552
94.8028
95.0757
95.3749
95.7016
96.0571
96.4426
96.8595
97.3092
97.7932
98.3129
98.8698
99.4673
100.105
100.786
101.511
102.285
103.108
103.983
104.913
105.901
105.551
106.535
106.18
107.162
108.199
107.781
106.803
105.878
105.002
105.253
104.377
104.622
103.746
102.921
102.771
103.551
103.393
104.174
104.01
104.794
105.623
106.498
107.422
107.117
106.241
105.411
105.239
106.028
106.859
106.646
105.854
105.103
104.39
104.492
104.625
103.881
103.177
103.269
102.569
102.655
101.959
102.037
102.145
101.414
100.728
100.084
100.086
100.696
101.346
101.304
100.687
100.107
99.5636
99.5121
99.4795
98.9142
98.386
97.893
98.0065
98.4746
98.976
99.0542
98.5776
98.1326
98.2702
98.6937
99.1473
99.632
100.149
100.7
101.287
101.909
101.884
102.512
102.48
103.114
103.784
103.715
103.076
102.471
101.899
101.882
101.316
101.292
100.733
100.209
100.284
100.784
100.852
101.36
101.421
101.936
102.483
103.062
103.673
104.318
104.999
105.716
106.471
106.332
107.092
106.953
107.719
107.581
108.353
108.217
108.996
109.815
110.673
111.574
112.518
113.508
113.206
114.205
113.913
114.922
114.639
115.661
115.387
116.423
117.509
117.208
118.311
118.02
119.142
118.858
117.768
116.726
116.949
115.928
116.156
115.152
114.192
114.397
113.453
113.663
112.733
112.949
112.03
112.253
111.344
110.477
110.316
111.153
110.996
111.844
111.691
112.551
112.402
113.276
113.13
114.02
114.952
114.784
115.733
115.569
116.536
117.55
118.612
118.398
117.364
116.375
116.24
117.205
118.214
118.057
117.07
116.127
115.225
115.317
115.431
114.529
114.644
113.761
113.878
113.011
112.917
112.843
113.667
113.594
114.436
114.363
113.538
112.75
112.788
112.019
112.056
112.11
112.184
112.28
111.469
111.567
110.769
110.869
110.085
110.187
109.415
109.518
109.65
108.862
108.11
107.394
107.474
106.766
106.846
106.146
106.225
105.532
105.609
104.923
104.874
104.848
105.48
105.452
106.093
106.063
106.712
106.68
107.339
108.031
108.757
108.678
107.976
107.307
106.669
106.061
106.053
105.456
105.445
104.857
104.843
104.264
104.248
104.249
104.272
103.654
103.068
102.514
102.563
103.094
103.656
103.677
103.138
102.627
102.705
103.197
103.716
103.771
104.299
104.35
104.888
104.935
105.483
105.526
106.086
106.675
107.293
107.942
108.623
109.337
109.282
110.008
109.954
110.694
110.639
111.394
111.34
111.303
110.585
110.604
109.901
109.919
109.231
109.247
108.574
108.589
107.928
107.298
107.317
107.931
107.948
108.574
108.589
109.23
109.243
109.899
109.909
110.581
111.283
111.277
111.997
111.989
112.727
113.499
114.306
115.151
116.034
116.958
117.923
117.81
116.864
115.959
115.899
116.787
117.715
117.636
116.725
115.854
115.02
115.05
115.093
114.265
113.474
112.716
112.717
113.461
114.238
114.222
113.458
112.728
112.747
113.465
114.216
115
115.82
116.677
117.572
117.52
116.64
115.797
115.783
116.613
117.478
118.383
118.337
119.266
119.216
120.171
121.167
121.096
122.119
122.042
123.093
123.009
124.088
123.998
125.106
125.008
123.917
122.868
122.935
121.914
121.974
120.981
121.034
120.068
120.115
119.174
119.141
119.114
120.028
119.995
120.935
120.896
121.862
121.816
122.809
123.843
124.92
126.04
125.943
127.092
126.988
126.891
128.053
127.949
129.139
129.027
127.853
126.721
126.803
125.699
125.774
125.855
124.765
124.839
123.777
122.756
121.776
120.834
120.862
119.946
119.968
119.078
119.093
118.228
118.237
118.252
118.272
118.301
117.424
117.447
116.594
115.778
114.996
114.99
114.991
114.219
113.481
112.775
112.808
113.503
114.23
114.248
113.532
112.847
112.192
112.143
112.099
112.061
112.03
112.006
111.992
111.301
111.283
110.61
110.589
109.933
109.306
109.269
108.658
108.618
108.022
107.979
107.398
107.351
106.783
106.734
106.697
106.126
105.582
105.066
104.994
104.489
104.413
103.919
103.839
103.354
103.269
102.795
102.896
103.007
103.451
103.556
104.01
104.111
104.576
104.672
105.148
105.65
106.179
106.242
105.728
105.24
104.776
104.337
104.22
103.793
103.671
103.254
103.127
102.722
102.589
102.463
102.347
102.24
102.144
102.06
101.991
101.497
101.031
100.935
100.477
100.374
99.9251
99.8141
99.716
99.2541
98.8219
98.4184
98.5762
98.9611
99.3734
99.5042
99.1103
98.7427
98.917
99.2685
99.6452
100.048
100.181
100.593
100.719
101.139
101.586
101.688
101.259
100.854
100.475
100.324
99.954
99.7955
99.4348
99.0984
99.2859
99.6083
99.7881
100.12
100.292
100.634
100.999
101.388
101.801
101.924
101.525
101.151
101.309
101.671
102.055
102.194
101.823
101.474
101.147
100.971
100.799
100.471
100.164
99.9736
99.6767
99.4789
99.1917
98.9863
98.7855
98.59
98.4005
98.2177
98.0425
97.8756
97.718
97.5704
97.4339
97.0071
96.6115
96.2457
96.442
96.7894
97.1651
97.3327
96.9755
96.6455
96.3415
96.1219
95.9084
95.5986
95.3151
95.0568
95.3147
95.5593
95.8281
96.0626
95.8078
95.5762
95.8407
96.0601
96.3018
96.5666
96.8555
97.1693
97.509
97.6933
97.3699
97.0713
97.2923
97.5766
97.8848
98.0828
97.7889
97.518
97.2692
97.031
96.7966
96.5451
96.3158
96.1079
96.3774
96.5743
96.7919
97.0419
96.8353
96.6486
96.4812
96.2003
95.9207
95.6427
95.3668
95.0933
94.8226
94.6115
94.3316
94.1312
93.9528
93.6523
93.4846
93.1754
92.868
92.7005
92.5546
92.4293
92.7661
92.8824
93.0185
93.3379
93.2112
93.1036
93.0144
92.6688
92.3235
91.9788
91.6349
91.292
90.9504
90.6103
90.2719
89.9353
89.601
89.2688
88.9391
88.6119
88.2873
88.0829
87.906
87.7549
88.1108
88.2523
88.4189
88.7572
88.6008
88.4685
88.3588
87.9926
87.6281
87.524
87.4412
87.3785
87.7647
87.8208
87.8964
88.2704
88.2019
88.1522
88.5411
88.5844
88.6459
88.7267
88.8281
88.9514
89.0978
89.4405
89.3038
89.1894
89.5521
89.6579
89.7852
90.1317
90.0135
89.9162
89.8385
89.4668
89.0961
89.0227
88.9681
88.9314
89.3229
89.3525
89.4006
89.7794
89.7379
89.7151
89.7072
89.3106
88.9136
88.5171
88.1215
87.7272
87.3345
87.3103
87.3018
87.3054
87.7125
87.704
87.7089
88.1086
88.1073
88.121
88.1491
87.7362
87.3245
87.3577
87.4039
87.4619
87.8849
87.8234
87.7735
88.1904
88.244
88.309
88.7339
88.6655
88.6082
88.5629
88.5304
88.5118
88.5086
88.9088
88.9172
88.9405
89.3512
89.3233
89.3096
89.7109
89.7297
89.7621
89.8073
89.3922
88.9773
89.0266
89.0876
89.1593
89.5851
89.5099
89.4454
89.8643
89.9324
90.0109
90.4365
90.3547
90.2831
90.2223
90.1731
90.1362
90.1126
90.1035
90.1076
90.1242
90.1589
90.2111
90.2813
90.3705
90.4798
90.8292
90.7285
90.6472
91.0138
91.0875
91.1799
91.5315
91.4471
91.3808
91.3317
90.9579
90.5842
90.5387
90.5111
90.5001
90.8914
90.8982
90.919
91.2998
91.285
91.282
91.672
91.671
91.6805
91.7054
91.748
91.8071
91.8838
92.2365
92.1674
92.1152
92.4819
92.5275
92.5896
92.9426
92.8875
92.8483
92.8263
92.4531
92.0793
92.0609
92.0554
92.0617
92.4504
92.4387
92.4404
92.8183
92.8211
92.8381
92.8682
92.4759
92.0823
91.6876
91.2922
90.8961
90.4998
90.5142
90.5426
90.5837
90.994
90.9486
90.9156
91.3166
91.3539
91.4035
91.4644
91.0511
90.637
90.7015
90.7766
90.8617
91.2862
91.1978
91.1193
91.5362
91.6182
91.7098
92.1322
92.0374
91.9521
91.8768
91.812
91.7585
91.7168
92.116
92.1619
92.2194
92.6254
92.5641
92.514
92.9106
92.9647
93.0299
93.1055
92.6975
92.2879
92.3667
92.4554
92.5533
92.9727
92.8717
92.7798
93.1911
93.2862
93.3903
93.5029
93.0823
92.6599
92.2359
91.8104
91.3838
90.9562
90.5279
90.0992
89.6702
89.2413
88.8126
88.3845
87.9572
87.531
87.1062
86.6829
86.2615
85.8422
85.4253
85.0111
84.5997
84.1915
83.7866
83.3853
82.9876
82.5939
82.2041
81.8183
81.4365
81.0586
81.0971
81.1481
81.2104
81.5923
81.5287
81.4764
81.8599
81.9138
81.9789
82.0541
81.6661
81.2831
81.3651
81.4557
81.554
81.9402
81.8409
81.7493
82.1386
82.2315
82.3319
82.729
82.6272
82.533
82.447
82.3702
82.3034
82.2477
82.6397
82.6974
82.7661
83.1664
83.0957
83.0358
83.4359
83.4982
83.5709
83.6533
83.2468
82.8446
82.9322
83.028
83.1312
83.5384
83.4336
83.3361
83.7445
83.8437
83.9501
84.0631
83.6498
83.2412
82.8376
82.4393
82.0464
81.6592
81.7707
81.8879
82.0101
82.3999
82.2769
82.1589
82.5528
82.6718
82.7959
82.9244
82.5275
82.1368
82.2676
82.4021
82.54
82.9329
82.7944
82.6591
83.0569
83.193
83.3324
83.738
83.5977
83.4606
83.3271
83.1976
83.0725
82.9523
83.3572
83.4786
83.6049
84.0174
83.8899
83.7672
84.1819
84.3061
84.435
84.5681
84.1493
83.7355
83.8701
84.0082
84.1495
84.5665
84.4242
84.285
84.705
84.8454
84.9888
85.4161
85.2714
85.1298
84.9916
84.8572
84.7269
84.6013
84.4809
84.3663
84.2582
84.1572
84.064
83.9795
83.9045
83.8399
84.2475
84.3146
84.3919
84.8079
84.7282
84.6585
85.0727
85.145
85.2272
85.3183
84.8968
84.4786
84.5737
84.6767
84.7866
85.2107
85.0989
84.994
85.4177
85.5246
85.6383
86.0692
85.9535
85.8446
85.743
85.6495
85.5648
85.4898
85.9097
85.9874
86.0746
86.5021
86.4124
86.3319
86.7563
86.8395
86.9319
87.0326
86.6004
86.1704
86.2743
86.3854
86.503
86.9395
86.8198
86.7065
87.1411
87.2565
87.3783
87.5059
87.0651
86.6267
86.1909
85.7582
85.3287
84.9029
85.0249
85.152
85.2838
85.7144
85.5811
85.4524
85.8836
86.014
86.1489
86.2877
85.8518
85.4196
85.5592
85.7021
85.848
86.2842
86.137
85.9928
86.4302
86.5759
86.7245
87.1684
87.0184
86.8712
86.7272
86.5868
86.4502
86.3181
86.7557
86.8896
87.0278
87.4717
87.3317
87.196
87.6388
87.7763
87.9181
88.0637
87.6155
87.1699
87.3155
87.4642
87.6157
88.0661
87.913
87.7627
88.2126
88.3646
88.5193
88.6765
88.2218
87.7698
87.321
86.8757
86.4341
85.9966
85.5635
85.1351
84.7117
84.2937
83.8813
83.4748
83.0746
82.6809
82.8248
82.9714
83.1206
83.5162
83.3663
83.2191
83.62
83.768
83.9185
84.0715
83.6686
83.2726
83.4272
83.5846
83.7448
84.1421
83.9815
83.8237
84.2271
84.3854
84.5465
84.9576
84.796
84.6372
84.4809
84.3272
84.176
84.0273
84.4406
84.5901
84.7421
85.1629
85.01
84.8596
85.284
85.4354
85.5892
85.7453
85.3181
84.8966
85.0535
85.213
85.3751
85.7988
85.636
85.4758
85.9039
86.0648
86.2283
86.3946
85.9644
85.5401
85.1221
84.7105
84.3058
83.9082
84.0747
84.2448
84.4186
84.8168
84.6429
84.4726
84.8777
85.0482
85.2223
85.4004
84.9947
84.5964
84.7784
84.9649
85.1562
85.5543
85.3632
85.1767
85.5825
85.769
85.9601
86.3732
86.182
85.9954
85.8131
85.6349
85.4605
85.2896
85.7081
85.8794
86.0542
86.4799
86.3047
86.133
86.5637
86.736
86.9117
87.091
86.6588
86.2327
86.4152
86.602
86.7933
87.2201
87.0286
86.8416
87.2743
87.4616
87.6533
88.0927
87.9006
87.7129
87.5292
87.3494
87.1731
87.0002
86.8303
86.6634
86.499
86.3372
86.1778
86.0207
85.8659
85.7135
86.1478
86.3013
86.4572
86.8982
86.7412
86.5865
87.0294
87.1854
87.3435
87.5039
87.0574
86.6153
86.7757
86.9384
87.1036
87.5487
87.3826
87.2188
87.6664
87.8312
87.9984
88.4523
88.2841
88.1181
87.9544
87.7928
87.6334
87.4761
87.9263
88.085
88.2458
88.702
88.5398
88.3797
88.836
88.9976
89.1613
89.327
88.8663
88.4087
88.5736
88.7408
88.9102
89.3717
89.2011
89.0326
89.4948
89.6646
89.8366
90.0109
89.5448
89.0821
88.623
88.168
87.7174
87.2714
87.442
87.6156
87.7925
88.2409
88.0633
87.8888
88.3404
88.5157
88.6941
88.876
88.422
87.973
88.1572
88.3454
88.5379
88.9886
88.7956
88.6068
89.0615
89.2509
89.4445
89.9053
89.7111
89.521
89.3347
89.152
88.9726
88.7964
89.2565
89.4338
89.6141
90.0801
89.8988
89.7204
90.1877
90.3673
90.5498
90.7356
90.2647
89.7977
89.9848
90.1758
90.3709
90.8407
90.6448
90.4529
90.9248
91.1177
91.3145
91.792
91.5941
91.4002
91.2098
91.0229
90.8391
90.6583
90.4801
90.3044
90.131
89.9598
89.7906
89.6233
89.4581
89.2949
89.1338
88.9749
88.8185
88.6648
88.5141
88.3668
88.2232
88.0837
87.9489
87.8192
87.6953
87.5776
87.4668
87.3635
87.2686
87.1825
87.6104
87.6993
87.7969
88.2316
88.1313
88.0396
88.4699
88.5644
88.6674
88.7782
88.3399
87.9026
88.0158
88.1357
88.2619
88.706
88.5776
88.4554
88.8962
89.0207
89.1513
89.5975
89.4647
89.3378
89.2174
89.104
88.9984
88.901
89.3327
89.4329
89.5412
89.9787
89.8676
89.7646
90.1965
90.3024
90.4161
90.5372
90.0972
89.6571
89.78
89.9093
90.0444
90.4916
90.3541
90.2225
90.665
90.7991
90.9388
91.0838
90.6342
90.1848
89.7357
89.2873
88.8398
88.3936
88.5304
88.6718
88.8174
89.2696
89.1221
88.9787
89.4283
89.5737
89.7232
89.8762
89.4207
88.9666
89.1191
89.2746
89.4327
89.8923
89.7324
89.5751
90.0325
90.1917
90.3535
90.8159
90.6522
90.4911
90.3329
90.1778
90.0263
89.8788
90.3301
90.4797
90.6332
91.0891
90.9334
90.7817
91.2335
91.3874
91.5452
91.7065
91.2482
90.7903
90.9505
91.1136
91.2792
91.7433
91.5756
91.4105
91.8708
92.038
92.2077
92.6723
92.5005
92.3311
92.1646
92.0012
91.8412
91.6851
91.5332
91.3859
91.2438
91.1074
90.977
90.8534
90.7369
90.6283
91.0595
91.171
91.2901
91.7262
91.6043
91.49
91.9196
92.0367
92.1612
92.2926
91.855
91.4164
91.5492
91.6881
91.8326
92.2785
92.1317
91.9904
92.4305
92.5743
92.7235
93.1673
93.0157
92.8694
92.729
92.595
92.4678
92.3479
92.7748
92.8975
93.0273
93.458
93.3255
93.2001
93.6234
93.7515
93.8867
94.0285
93.5972
93.164
93.3069
93.4556
93.6096
94.0503
93.8938
93.7426
94.1764
94.3301
94.489
94.6528
94.2117
93.7686
93.3239
92.8778
92.4304
91.9821
92.1363
92.2947
92.4569
92.912
92.7476
92.5869
93.0366
93.1995
93.3662
93.5363
93.0798
92.6225
92.7912
92.9627
93.1367
93.6006
93.4244
93.2507
93.7095
93.8854
94.0638
94.5261
94.3454
94.1672
93.9917
93.8193
93.6503
93.4851
93.9321
94.0997
94.2711
94.7212
94.5475
94.3775
94.8211
94.9934
95.1695
95.3489
94.8983
94.4458
94.6236
94.8041
94.9872
95.4468
95.2613
95.0784
95.5314
95.7168
95.9046
96.0948
95.6345
95.1725
94.7091
94.2446
93.7791
93.3129
92.8464
92.3797
91.9132
91.4472
90.9819
90.5176
90.0546
89.5932
89.756
89.9209
90.0877
90.5543
90.3857
90.2191
90.6839
90.8523
91.0226
91.1948
90.7247
90.2566
90.4273
90.6001
90.775
91.248
91.0715
90.8971
91.3689
91.5449
91.723
92.1999
92.02
91.8422
91.6664
91.4924
91.3203
91.1501
91.6173
91.7894
91.9634
92.4353
92.2594
92.0853
92.5538
92.7299
92.9079
93.0877
92.6131
92.1393
92.317
92.4966
92.6782
93.1578
92.9743
92.7928
93.2693
93.4528
93.6382
93.8257
93.3434
92.862
92.3819
91.9033
91.4266
90.9521
91.1317
91.3139
91.499
91.9779
91.7914
91.6077
92.086
92.2712
92.4591
92.6501
92.1674
91.6872
91.8788
92.0739
92.2728
92.7567
92.5566
92.3602
92.8443
93.042
93.2434
93.7326
93.5298
93.3307
93.135
92.9425
92.753
92.5662
93.048
93.2365
93.4277
93.9144
93.7215
93.5312
94.0155
94.2076
94.4024
94.5999
94.1102
93.6218
93.8191
94.0197
94.2239
94.717
94.5113
94.3091
94.8006
95.0044
95.2117
95.7077
95.4987
95.2931
95.0907
94.8912
94.6946
94.5005
94.3088
94.1193
93.9319
93.7463
93.5627
93.3808
93.2008
93.0226
93.4913
93.6716
93.8538
94.3265
94.1421
93.9596
94.4274
94.6121
94.7988
94.9872
94.5127
94.0378
94.2235
94.4112
94.6007
95.0822
94.8905
94.7007
95.1774
95.3695
95.5634
96.0441
95.8479
95.6535
95.461
95.2703
95.0813
94.8942
95.36
95.5494
95.7407
96.2099
96.0162
95.8244
96.2871
96.4814
96.6775
96.8756
96.4054
95.9338
96.1287
96.3255
96.524
97.0029
96.8019
96.6028
97.0754
97.277
97.4805
97.6859
97.2059
96.7246
96.2423
95.7593
95.2759
94.7923
94.986
95.1821
95.3807
95.8706
95.6699
95.4718
95.9574
96.1577
96.3605
96.5659
96.0739
95.5821
95.7864
95.9938
96.2046
96.7022
96.4895
96.2802
96.7742
96.9855
97.2001
97.698
97.4815
97.2681
97.0577
96.8501
96.6452
96.4426
96.9272
97.1321
97.3393
97.8276
97.6181
97.4109
97.8933
98.103
98.3149
98.5294
98.0397
97.5491
97.7617
97.9772
98.1958
98.693
98.4723
98.2546
98.7465
98.9665
99.1894
99.4155
98.917
98.4177
97.9179
97.418
96.9182
96.4189
95.9203
95.4227
94.9264
94.4318
93.9391
93.4487
92.9608
92.4757
91.9938
91.5154
91.0408
90.5702
90.1039
89.6424
89.1859
88.7348
88.2892
87.8496
87.4162
86.9892
86.5691
86.156
85.7503
85.3523
84.9621
84.5802
84.2067
83.842
83.4862
83.1396
82.8025
82.475
82.1575
81.8501
81.553
81.2666
80.991
80.7266
80.4737
80.2328
80.0044
79.7894
79.5885
79.4028
79.2332
79.0801
78.9431
78.8193
78.701
78.5722
78.3994
78.1113
77.5493
76.3517
73.6961
75.0133
77.2614
78.1606
76.3617
77.7331
79.0396
79.8861
79.1152
80.4908
80.6855
81.4151
81.8325
83.0836
82.0344
81.2327
80.8856
80.451
79.9514
79.4014
78.8119
78.1919
78.5877
79.0408
79.4653
79.4563
79.1261
78.7727
78.8809
79.1744
79.4513
79.7102
79.7602
79.855
80.2034
80.5022
80.7405
80.4843
80.2769
80.0346
79.9506
80.1733
80.3793
80.5692
80.6546
80.904
81.4351
82.4359
84.154
80.5817
80.3722
80.1578
79.9383
79.7112
79.4745
79.2272
78.9692
79.0627
79.3001
79.5319
79.6223
79.3979
79.1717
79.3002
79.5206
79.7419
79.9653
79.846
79.7588
79.9825
80.2054
80.4298
80.5311
80.2984
80.0705
80.1921
80.4244
80.6633
80.8182
80.5754
80.3397
80.1107
79.8865
79.6661
79.4485
79.6156
79.8319
80.0523
80.2362
80.0157
79.7999
79.9999
80.2154
80.436
80.6621
80.462
80.2774
80.5081
80.746
80.9911
81.1792
80.9329
80.6938
80.8945
81.1341
81.3809
81.6301
81.4282
81.2391
81.064
80.9051
80.7664
80.6544
81.844
81.595
81.3483
81.1086
80.8762
80.65
80.4295
80.2144
80.4421
80.6569
80.8772
81.1166
80.8968
80.6825
80.9348
81.1486
81.3679
81.5928
81.3421
81.1031
81.3353
81.5747
81.821
82.0586
81.8128
81.5739
81.824
82.0622
82.3074
82.5672
82.3228
82.0853
81.8548
81.6305
81.4118
81.1986
81.4736
81.6861
81.9041
82.1886
81.9713
81.7594
82.0558
82.267
82.4837
82.7059
82.4115
82.1278
82.3575
82.5944
82.838
83.1195
82.8766
82.6406
82.9342
83.1695
83.4115
83.6553
83.3641
83.0835
82.8136
82.5545
82.3065
82.0696
83.9569
83.714
83.4728
83.2382
83.0106
82.7891
82.5731
82.3626
82.6795
82.8894
83.1047
83.4304
83.2157
83.0064
83.343
83.5517
83.7658
83.9853
83.6505
83.3256
83.5524
83.7863
84.0267
84.3495
84.1098
83.8767
84.2108
84.4432
84.6822
85.0245
84.7863
84.5546
84.3297
84.1107
83.8973
83.6891
84.0444
84.2521
84.465
84.8284
84.616
84.4088
84.7819
84.9887
85.2007
85.4181
85.0463
84.6834
84.9077
85.1389
85.3764
85.7375
85.5006
85.2701
85.6414
85.8714
86.1077
86.3455
85.9759
85.6155
85.2643
84.9227
84.5908
84.2688
86.7239
86.4867
86.2509
86.0214
85.7986
85.5816
85.37
85.1635
85.5534
85.7595
85.9708
86.3682
86.1572
85.9512
86.3568
86.5626
86.7734
86.9895
86.5845
86.1875
86.4099
86.639
86.8743
87.2702
87.0353
86.8067
87.2113
87.4397
87.6741
88.0859
87.8518
87.6237
87.4021
87.1861
86.9754
86.7698
87.19
87.3956
87.6062
88.0333
87.8226
87.617
88.0505
88.2563
88.4671
88.6829
88.2491
87.8221
88.0435
88.2714
88.5052
88.9319
88.6981
88.4705
88.9042
89.1319
89.3655
89.6002
89.1667
88.7403
88.3213
87.9099
87.5063
87.1109
90.0404
89.8058
89.5722
89.3446
89.1233
88.9074
88.6965
88.4904
88.9363
89.1426
89.3538
89.806
89.5946
89.3879
89.8449
90.052
90.2638
90.4803
90.0223
89.5698
89.7913
90.019
90.2526
90.7055
90.4718
90.2439
90.7023
90.9304
91.1643
91.6287
91.3944
91.166
90.9437
90.7268
90.5146
90.307
90.7738
90.982
91.1947
91.6673
91.454
91.2451
91.7206
91.9302
92.1442
92.3629
91.8853
91.4122
91.6349
91.8637
92.0983
92.5729
92.3378
92.1085
92.5867
92.8166
93.0521
93.2883
92.8086
92.3336
91.8637
91.3991
90.9402
90.4872
93.7725
93.5357
93.2996
93.0691
92.8445
92.6251
92.4103
92.1999
92.6828
92.8941
93.1098
93.5979
93.3813
93.1689
93.658
93.8714
94.089
94.3111
93.819
93.33
93.5553
93.7865
94.0233
94.5147
94.2771
94.0451
94.5382
94.7711
95.0096
95.5075
95.2681
95.0342
94.8062
94.583
94.3643
94.1497
94.6437
94.8595
95.0795
95.5781
95.3569
95.1397
95.6374
95.8561
96.0787
96.3055
95.8036
95.3038
95.5329
95.7679
96.0083
96.5116
96.2701
96.034
96.537
96.7743
97.017
97.26
96.7534
96.2491
95.7474
95.2485
94.7529
94.2608
97.7686
97.5244
97.2804
97.0418
96.8089
96.5808
96.3567
96.1366
96.6368
96.8585
97.0841
97.5884
97.3613
97.1379
97.6395
97.8646
98.0934
98.3262
97.8196
97.3137
97.5481
97.788
98.0333
98.5435
98.2968
98.0554
98.5635
98.8064
99.0546
99.5664
99.3166
99.0722
98.8332
98.5987
98.3682
98.1413
98.643
98.8717
99.1041
99.6092
99.375
99.1443
99.6449
99.8776
100.114
100.354
99.8473
99.3403
99.581
99.8271
100.078
100.591
100.338
100.09
100.598
100.848
101.102
101.357
100.844
100.33
99.8161
99.3029
98.7903
98.2788
101.87
101.614
101.357
101.106
100.859
100.618
100.379
100.145
99.9131
99.6848
99.4595
99.2373
99.0178
98.8009
98.5865
98.3743
98.1644
97.9564
97.7504
97.5463
97.3439
97.1434
96.9447
96.7479
96.5531
96.3605
96.1702
95.9824
95.7975
95.6156
95.4372
95.2624
95.0918
94.9256
94.7642
94.6081
94.4576
94.3133
94.1755
94.0447
93.9213
93.8059
93.6988
93.6005
93.5116
93.4324
93.3636
93.3056
93.259
93.2243
93.2024
93.1944
93.1985
93.2143
93.2469
93.2953
93.36
93.4415
93.5407
93.6585
93.7955
94.1077
94.255
94.4227
94.7162
94.894
95.1788
95.0113
94.8636
94.5587
94.4209
94.3019
93.9799
93.8707
93.7795
94.1173
94.2009
94.5311
94.6242
94.7348
95.0491
95.1693
95.3078
95.4653
95.7534
95.6052
95.4755
95.7818
95.9033
96.0425
96.3325
96.2016
96.0881
95.9913
95.6776
95.3634
95.2685
94.9465
94.8608
94.7915
94.4547
94.3945
94.0503
93.7053
93.6476
93.6054
93.5798
93.9441
93.9633
93.9991
94.3497
94.3204
94.3069
94.3042
93.9378
93.5694
93.569
93.5824
93.609
93.9919
93.9607
93.9423
94.314
94.3372
94.3727
94.7513
94.7115
94.6838
94.6689
94.6677
94.6763
94.6989
94.7377
95.0799
95.1273
95.19
95.5183
95.59
95.9106
95.8454
95.7952
95.4619
95.4204
95.3941
95.0471
95.0305
95.0256
95.3813
95.3827
95.732
95.7392
95.7594
96.0968
96.1268
96.1711
96.2301
96.3042
96.394
96.5
96.6228
96.763
96.9213
97.0982
97.2945
97.5107
97.7477
98.0061
98.2866
98.4955
98.2275
97.9809
98.217
98.4525
98.7088
98.9259
98.6807
98.4556
98.2499
98.0016
97.755
97.5491
97.3627
97.1949
97.4692
97.6283
97.8055
98.0631
97.8946
97.7437
98.0182
98.1613
98.3216
98.4997
98.6961
98.9114
99.1462
99.4011
99.6138
99.8785
100.084
100.358
100.654
100.841
100.556
100.292
100.502
100.757
101.032
101.327
101.643
101.98
102.34
102.491
102.862
103.007
103.388
103.528
103.921
104.055
104.46
104.887
105.339
105.815
106.316
106.844
106.914
107.455
107.521
108.076
108.138
108.708
108.767
109.352
109.966
110.009
110.64
110.679
111.328
111.363
110.726
110.117
110.06
109.469
109.407
108.833
108.285
108.208
107.676
107.595
107.078
106.992
106.489
106.399
105.91
105.446
105.558
106.012
106.119
106.586
106.689
107.17
107.268
107.764
107.856
108.368
108.905
108.983
109.537
109.61
110.181
110.779
111.405
111.454
110.838
110.249
110.321
110.901
111.508
111.566
110.968
110.397
109.852
109.768
109.687
109.152
109.066
108.547
108.455
107.953
108.053
108.156
108.642
108.739
109.241
109.333
108.839
108.368
108.262
107.807
107.695
107.584
107.475
107.37
106.907
106.796
106.348
106.231
105.798
105.676
105.255
105.128
105.005
104.588
104.194
103.821
103.673
103.312
103.158
102.809
102.648
102.311
102.143
101.817
101.994
102.174
102.481
102.655
102.973
103.14
103.47
103.631
103.973
104.336
104.721
104.858
104.482
104.127
103.794
103.48
103.309
103.008
102.83
102.541
102.357
102.078
101.887
101.698
101.511
101.226
100.96
100.714
100.927
101.165
101.422
101.62
101.371
101.141
101.355
101.578
101.819
102.018
102.27
102.463
102.726
102.912
103.186
103.365
103.652
103.958
104.284
104.63
104.998
105.387
105.521
105.923
106.051
106.468
106.59
107.021
107.138
107.256
106.84
106.715
106.313
106.182
105.795
105.657
105.284
105.14
104.781
104.442
104.601
104.932
105.085
105.429
105.575
105.934
106.074
106.446
106.58
106.967
107.376
107.497
107.921
108.036
108.476
108.94
109.427
109.939
110.475
111.038
111.628
112.245
112.891
113.566
114.272
115.009
115.78
116.584
116.581
117.408
117.4
117.397
116.591
116.583
115.801
115.788
115.028
114.301
113.605
112.938
112.989
113.647
114.334
115.051
115.079
115.818
115.84
116.602
117.398
117.404
118.223
118.223
119.067
119.06
119.929
119.915
120.81
121.741
122.709
123.717
123.663
124.698
124.637
124.581
125.631
125.568
126.646
127.764
128.924
130.127
131.374
132.667
134.007
133.844
132.523
131.247
131.13
132.389
133.693
133.552
132.265
131.021
129.819
129.913
130.016
128.828
127.682
126.577
126.513
127.606
128.739
128.657
127.536
126.455
125.411
125.459
125.511
124.484
124.53
123.53
123.57
123.614
122.63
122.667
121.71
120.79
119.906
119.056
119.057
118.232
118.226
117.425
117.413
116.636
116.618
115.864
115.891
115.92
116.657
116.68
117.44
117.457
118.24
118.251
119.058
119.898
120.773
121.684
121.661
122.597
122.568
122.542
123.495
123.463
124.442
124.404
123.434
122.498
122.519
121.61
121.624
121.641
120.75
120.76
119.894
119.062
119.068
119.892
119.892
120.741
120.735
120.73
121.598
121.587
122.481
123.408
124.37
125.367
126.401
127.472
128.582
129.731
130.92
132.15
133.422
133.303
134.603
134.478
135.806
137.177
138.59
140.048
139.871
141.355
141.176
142.684
144.236
144.04
142.506
141.015
140.87
142.346
143.864
143.708
142.204
140.741
139.317
139.434
139.565
139.71
138.286
138.431
137.034
135.678
135.562
136.903
136.785
138.155
138.037
137.932
136.584
136.679
135.361
135.456
134.166
134.26
134.364
133.091
133.192
131.947
132.044
130.827
130.742
130.664
131.858
131.777
132.999
132.916
131.703
130.529
130.593
129.447
129.509
129.576
129.65
128.513
127.414
126.352
126.307
127.36
128.449
128.391
127.311
126.267
126.231
127.267
128.339
128.292
129.392
129.342
130.472
131.638
132.841
134.082
134.007
135.276
135.202
136.502
137.839
139.215
140.628
142.079
143.571
145.1
146.667
148.273
149.918
151.599
153.317
155.072
156.863
156.624
154.852
153.115
152.944
154.666
156.421
156.257
154.514
152.804
151.127
151.256
151.413
149.747
148.117
146.524
146.403
147.985
149.603
149.485
147.877
146.305
146.23
147.795
149.395
151.029
152.698
154.399
156.132
156.047
154.321
152.626
152.585
154.276
155.998
150.925
150.963
149.334
147.739
146.179
146.15
147.708
149.3
144.628
144.654
144.701
144.769
144.859
144.969
143.452
141.972
140.53
140.448
141.881
143.352
143.27
141.806
140.38
138.99
139.051
139.126
137.76
136.43
135.138
135.084
136.369
137.692
137.637
136.32
135.04
135.006
136.283
137.595
138.944
140.328
141.75
143.207
143.165
141.711
140.293
140.273
141.689
143.14
138.894
138.912
137.567
136.257
134.984
134.971
136.243
137.55
133.734
133.746
133.766
133.796
133.835
133.883
133.941
132.716
132.774
131.579
130.421
129.298
128.212
128.249
127.192
127.227
126.198
126.168
126.143
127.16
127.133
128.179
129.26
130.376
131.527
131.483
132.666
132.623
132.588
131.416
131.446
130.305
130.337
129.227
128.151
127.109
126.101
126.12
125.141
125.159
125.179
125.203
125.229
125.259
125.291
125.327
124.338
123.385
122.465
122.451
123.364
124.31
124.285
123.345
122.439
121.565
121.571
121.579
120.725
120.727
119.899
119.895
119.893
119.083
119.075
118.29
118.275
118.262
117.494
117.475
116.731
116.705
115.984
115.951
115.253
115.214
115.177
115.142
115.109
114.409
114.37
113.692
113.042
113.098
113.739
113.788
114.45
114.494
114.538
113.89
113.839
113.212
113.154
112.548
112.484
112.421
112.36
112.301
111.692
111.111
110.556
110.638
111.186
111.759
111.828
111.261
110.721
110.205
110.115
110.026
109.522
109.041
108.584
108.693
109.143
109.617
109.713
109.245
108.8
108.907
109.347
109.809
110.294
110.804
111.338
111.898
111.969
111.415
110.887
110.97
111.492
112.04
112.612
112.677
113.27
113.329
113.942
114.583
114.629
115.292
115.331
116.016
116.049
116.757
116.784
117.514
117.535
116.811
116.116
116.083
115.41
115.371
114.72
114.675
114.046
113.994
113.387
113.444
113.501
114.097
114.148
114.765
114.81
115.449
115.487
116.149
116.838
117.556
118.305
118.32
119.092
119.102
119.112
119.903
119.907
120.724
120.723
119.912
119.132
119.122
118.366
118.351
118.335
117.599
117.578
116.865
116.18
115.524
114.894
114.853
114.245
114.197
113.61
113.556
112.99
112.93
112.868
112.805
112.742
112.181
112.11
111.569
111.052
110.56
110.472
110.384
109.904
109.447
109.013
109.117
109.546
109.998
110.09
109.644
109.219
109.319
109.739
110.181
110.646
111.133
111.645
111.719
112.25
112.318
112.385
111.864
111.792
111.291
111.213
110.73
110.27
109.832
109.417
109.511
109.923
110.357
110.812
110.892
111.366
111.44
111.933
112.45
112.512
113.049
113.106
113.663
113.713
114.291
114.335
114.934
115.559
116.211
116.891
116.916
117.619
117.639
117.658
118.38
118.394
119.141
119.917
120.724
121.56
122.429
123.329
124.262
124.242
123.315
122.42
122.412
123.302
124.224
124.209
123.291
122.405
121.551
121.553
121.556
120.724
119.923
119.151
119.159
119.928
120.725
120.727
119.932
119.168
119.175
119.937
120.728
121.549
122.4
123.282
124.195
124.184
125.126
125.113
126.085
127.089
128.127
129.199
129.176
130.278
130.258
131.392
132.562
132.544
131.377
130.244
130.236
131.368
132.533
129.14
129.146
129.158
128.092
128.107
127.073
126.071
126.061
127.06
127.051
128.082
128.077
127.047
126.05
126.054
125.089
125.095
125.103
124.166
124.174
123.267
123.274
122.395
122.391
122.388
123.262
123.257
124.16
124.156
123.255
122.384
122.385
121.544
121.545
121.546
121.547
120.729
119.941
119.182
119.188
119.945
120.731
120.732
119.948
119.192
119.196
119.95
120.732
120.733
121.544
121.544
122.383
123.253
124.154
125.086
120.733
119.952
119.951
119.198
119.2
118.475
118.473
118.47
118.465
118.459
118.451
118.442
118.431
118.42
118.408
117.693
117.676
116.986
116.964
116.941
116.27
116.241
115.594
114.973
114.377
113.807
113.761
113.212
113.16
112.631
112.573
112.065
112
111.511
111.579
111.645
112.127
112.186
112.687
112.74
113.261
113.308
113.851
114.417
115.009
115.626
115.657
116.297
116.323
116.346
117.006
117.025
117.709
117.723
117.042
116.388
116.368
115.737
115.713
115.686
115.075
115.043
114.455
113.891
113.929
114.49
114.523
115.105
115.132
115.157
115.76
115.779
116.405
117.057
117.736
117.747
117.071
116.421
116.434
117.083
117.757
117.765
117.092
116.446
115.824
115.812
115.797
115.198
115.179
114.603
114.579
114.552
113.997
113.965
113.43
113.393
113.352
112.836
112.79
112.294
112.241
111.766
111.707
111.251
111.185
111.117
111.045
110.97
110.522
110.441
110.011
109.603
109.692
110.096
110.178
110.601
110.676
110.748
110.331
110.257
109.858
109.777
109.396
109.307
109.216
109.12
109.022
108.92
108.816
108.709
108.6
108.49
108.378
108.264
108.15
107.738
107.617
107.221
107.094
106.713
106.353
106.213
105.867
105.721
105.39
105.237
104.919
104.76
104.455
104.289
104.123
103.824
103.544
103.283
103.098
102.848
102.655
102.418
102.218
101.991
101.785
101.569
101.782
101.994
102.197
102.402
102.616
102.814
103.04
103.231
103.468
103.723
103.997
104.169
103.901
103.652
103.42
103.205
103.011
102.808
102.606
102.414
102.205
102.024
101.808
101.59
101.37
101.15
100.929
100.708
100.487
100.266
100.047
99.8292
99.5943
99.3692
99.1441
98.938
99.1809
99.3784
99.6137
99.821
100.049
100.277
100.086
99.8496
99.668
99.4244
99.2526
99.0014
98.7503
98.5805
98.4279
98.2921
98.5653
98.6941
98.8393
99.0979
98.9596
98.8373
98.7306
98.4524
98.1726
97.8917
97.61
97.3277
97.0453
96.9132
96.798
96.6991
97.0033
97.0953
97.2033
97.4928
97.3917
97.3061
97.2355
96.9266
96.6161
96.5483
96.4952
96.4563
96.784
96.8174
96.8648
97.1795
97.1375
97.1096
97.4329
97.455
97.4919
97.5426
97.6074
97.6868
97.7815
98.0689
97.9805
97.9068
98.2042
98.2723
98.3548
98.639
98.562
98.4991
98.4501
98.1501
97.8475
97.8022
97.7703
97.7534
98.0707
98.0831
98.1097
98.4143
98.393
98.3847
98.385
98.0681
97.7479
97.4242
97.0965
96.7658
96.4324
96.4227
96.0822
96.0784
96.0861
95.7348
95.751
95.3926
95.0318
95.0515
95.0836
95.1275
95.501
95.4531
95.4168
95.7796
95.8199
95.8716
95.934
95.5598
95.1826
94.8026
94.42
94.0351
93.648
93.6987
93.7605
93.833
94.2313
94.1553
94.0898
94.4785
94.5477
94.6271
94.7163
94.3172
93.9156
94.0077
94.1091
94.2192
94.63
94.517
94.4126
94.8149
94.9223
95.0382
95.4435
95.3247
95.2143
95.1128
95.0204
94.9376
94.8648
95.2485
95.3246
95.4107
95.798
95.7087
95.6292
96.0069
96.0897
96.1821
96.2837
95.8966
95.5062
95.6109
95.7241
95.8457
96.2446
96.1203
96.0042
96.3941
96.513
96.64
97.0318
96.9022
96.7806
96.6673
96.5627
96.4673
96.3813
96.3051
96.2392
96.1838
96.1395
96.1067
96.4597
96.4347
96.4222
96.7635
96.7597
97.0935
97.102
97.1233
96.7805
96.8096
96.8503
96.4965
96.5446
96.6035
96.9644
96.902
97.2559
97.2007
97.1563
97.4996
97.4627
97.4374
97.4243
97.7523
97.7696
97.7987
98.1311
98.0982
98.0769
98.3981
98.4231
98.4595
98.5069
98.1751
97.8392
97.8906
97.5475
97.6062
97.6751
97.3217
97.3975
97.037
96.6728
96.7523
96.8414
96.9398
97.313
97.2117
97.1196
97.4831
97.5782
97.6823
97.7953
97.4233
97.0472
97.1632
97.2876
97.4198
97.8038
97.669
97.542
97.9167
98.0462
98.1836
98.559
98.4191
98.2871
98.1631
98.0475
97.9406
97.8426
97.7541
98.1065
98.0246
97.9525
98.2948
98.2298
98.5648
98.6329
98.711
98.3699
98.4548
98.5491
98.198
98.2987
98.4083
98.7647
98.6525
99.0016
98.8956
98.7986
99.1379
99.0475
98.9666
98.8955
98.8345
98.784
98.7442
98.7155
98.6985
98.6942
98.6996
98.7162
98.7473
98.7915
98.8493
98.921
99.0071
99.1079
99.224
99.3557
99.5035
99.7538
99.9114
100.154
100.322
100.506
100.734
100.557
100.396
100.251
100.003
99.8678
99.6124
99.4869
99.3768
99.6436
99.7482
100.007
100.121
100.373
100.497
100.636
100.791
100.962
101.189
101.024
100.875
101.111
101.255
101.414
101.638
101.484
101.345
101.222
100.983
100.741
100.622
100.519
100.264
100.17
99.9081
99.8231
99.5536
99.2815
99.2008
99.1341
99.0811
99.3675
99.416
99.4779
99.7522
99.6948
99.6507
99.6194
99.332
99.0413
99.015
99.0027
98.9999
99.3018
99.302
99.3105
99.6024
99.5965
99.6
99.894
99.8868
99.8902
99.9033
99.9304
99.9704
100.023
100.09
100.353
100.429
100.685
100.77
100.869
101.113
101.018
100.937
100.87
100.614
100.556
100.291
100.242
100.206
100.478
100.511
100.775
100.816
101.073
101.123
101.186
101.263
101.354
101.458
101.577
101.711
101.86
102.079
102.239
102.451
102.621
102.826
103.007
103.204
103.398
103.607
103.834
104.078
104.34
104.62
104.784
105.077
105.235
105.541
105.692
106.012
106.156
106.491
106.846
106.978
107.347
107.473
107.858
107.977
107.597
107.237
107.108
106.764
106.628
106.299
105.989
105.841
105.545
105.391
105.108
104.947
104.678
104.509
104.253
104.014
104.192
104.426
104.597
104.844
105.008
105.267
105.424
105.697
105.847
106.134
106.439
106.578
106.898
107.029
107.364
107.719
108.094
108.209
107.839
107.489
107.611
107.957
108.323
108.434
108.072
107.73
107.407
107.284
107.158
106.847
106.714
106.417
106.277
105.994
106.138
106.279
106.554
106.687
106.977
107.103
106.817
106.55
106.416
106.162
106.022
105.877
105.729
105.578
105.327
105.169
104.931
104.765
104.54
104.368
104.155
103.975
103.792
103.588
103.399
103.226
103.027
102.866
102.66
102.509
102.296
102.156
101.935
101.806
102.031
102.253
102.374
102.589
102.72
102.927
103.069
103.269
103.422
103.59
103.775
103.959
103.779
103.614
103.802
103.963
104.14
104.332
104.505
104.71
104.876
105.093
105.252
105.482
105.634
105.782
105.559
105.407
105.197
105.038
104.841
104.675
104.49
104.317
104.144
103.986
104.167
104.321
104.493
104.66
104.825
105.003
105.161
105.352
105.502
105.706
105.926
106.066
106.299
106.432
106.679
106.944
107.226
107.527
107.846
108.184
108.542
108.647
108.293
107.958
108.067
108.399
108.75
108.848
108.501
108.173
107.863
107.755
107.643
107.345
107.066
106.804
106.925
107.184
107.461
107.572
107.298
107.042
107.154
107.407
107.678
107.967
108.274
108.599
108.943
109.035
108.693
108.371
108.463
108.783
109.122
109.48
109.561
109.936
110.01
110.403
110.816
110.881
111.312
111.371
111.821
111.873
112.344
112.389
112.88
112.92
112.432
111.966
111.922
111.476
111.425
110.998
110.941
110.533
110.47
110.079
110.145
110.206
110.592
110.647
111.051
111.099
111.522
111.564
112.007
112.47
112.956
113.465
113.496
114.026
114.052
114.074
114.624
114.642
115.215
115.229
114.657
114.11
114.094
113.568
113.548
113.524
113.019
112.989
112.505
112.043
111.603
111.183
111.143
110.743
110.697
110.315
110.263
109.898
109.84
109.777
109.709
109.637
109.284
109.205
108.869
108.551
108.252
108.161
108.066
107.78
107.512
107.26
107.362
107.611
107.878
107.97
107.706
107.459
107.228
107.13
107.026
106.917
106.803
106.684
106.56
106.332
106.201
105.987
105.849
105.648
105.462
105.314
105.141
104.985
104.825
104.662
104.513
104.342
104.206
104.027
103.844
103.656
103.464
103.33
103.13
103.006
102.799
102.686
102.472
102.369
102.147
101.921
101.691
101.591
101.504
101.432
101.673
101.742
101.825
102.054
101.975
101.91
102.142
102.205
102.28
102.502
102.587
102.801
102.897
103.103
103.209
103.408
103.525
103.716
103.602
103.501
103.304
103.215
103.01
102.931
102.719
102.649
102.429
102.37
102.593
102.811
102.865
103.075
103.138
103.341
103.414
103.609
103.693
103.791
103.902
104.083
103.975
103.88
103.799
103.73
103.538
103.48
103.28
103.231
103.024
102.985
102.77
102.549
102.323
102.092
101.857
101.616
101.372
101.325
101.29
101.035
101.01
100.746
100.731
100.46
100.184
100.174
100.173
100.184
100.469
100.455
100.453
100.727
100.732
100.749
101.025
101.004
100.996
100.998
101.261
101.269
101.524
101.542
101.573
101.816
101.788
101.774
101.77
101.518
101.52
101.26
101.272
101.295
101.561
101.535
101.792
101.775
102.024
102.016
102.019
102.03
102.055
102.289
102.267
102.258
102.492
102.499
102.517
102.741
102.725
102.72
102.723
102.493
102.257
102.268
102.29
102.044
102.075
101.82
101.86
101.597
101.329
101.056
100.778
100.495
100.206
99.9134
99.616
99.3142
99.0083
99.029
99.0611
99.1042
99.42
99.3738
99.3384
99.6435
99.682
99.7312
99.7908
99.4767
99.1579
99.2218
99.2957
99.3794
99.7064
99.6201
99.5435
99.8603
99.9397
100.029
100.345
100.254
100.172
100.1
100.038
99.9857
99.9441
100.24
100.285
100.339
100.636
100.578
100.531
100.817
100.867
100.927
100.997
100.703
100.404
100.479
100.563
100.657
100.963
100.867
100.781
101.077
101.166
101.264
101.372
101.069
100.76
100.446
100.127
99.802
99.4724
99.5746
99.2375
99.3461
99.4633
99.1164
99.2397
98.8854
98.5265
98.6531
98.7876
98.9298
99.296
99.1514
99.0145
99.3711
99.5104
99.6574
100.014
99.8644
99.7228
99.589
99.9333
99.8053
99.6856
100.02
99.9067
100.234
100.349
100.474
100.142
100.273
100.411
100.069
100.213
100.365
100.711
100.557
100.895
100.747
100.606
100.935
100.8
100.673
100.555
100.872
100.992
101.121
101.436
101.305
101.182
101.488
101.612
101.745
101.886
101.575
101.258
101.402
101.077
101.228
101.386
101.051
101.214
100.872
100.524
100.17
99.8116
99.448
99.0795
98.7062
98.3284
97.9461
97.5597
97.1691
96.7747
96.3766
95.9751
95.5701
95.1621
94.7512
94.3375
94.4636
94.5971
94.7375
95.1592
95.0162
94.88
95.2937
95.4324
95.578
95.73
95.3086
94.8844
95.0373
95.1959
95.3597
95.7913
95.6251
95.464
95.8879
96.0514
96.2201
96.6458
96.4747
96.3087
96.1483
95.9939
95.8457
95.7044
96.1119
96.2559
96.4065
96.8158
96.6626
96.5161
96.9168
97.0658
97.2214
97.3833
96.9752
96.5635
96.7263
96.8947
97.0683
97.4873
97.3113
97.1405
97.5511
97.7243
97.9028
98.086
97.6682
97.2467
96.8217
96.3936
95.9624
95.5284
95.7015
95.8786
96.0595
96.5008
96.3175
96.1379
96.5715
96.7535
96.9393
97.1285
96.6875
96.2438
96.4312
96.6214
96.8141
97.2654
97.0701
96.8774
97.3209
97.5161
97.7139
98.1595
97.9591
97.7614
97.5665
97.3748
97.1866
97.0021
97.4295
97.6164
97.8071
98.236
98.0428
97.8534
98.2737
98.4656
98.6613
98.8605
98.4327
98.0013
98.1987
98.399
98.602
99.0411
98.8355
98.6327
99.063
99.2685
99.4767
99.9085
99.6976
99.4895
99.2845
99.0827
98.8845
98.6902
98.5
98.3143
98.1335
97.9578
97.7876
97.6233
97.4652
97.3137
97.7067
97.8607
98.0212
98.415
98.2521
98.0957
98.4803
98.6392
98.8045
98.9759
98.5841
98.188
98.3605
98.5386
98.7219
99.1252
98.9395
98.7591
99.1533
99.3361
99.5241
99.9185
99.7281
99.5429
99.3632
99.1894
99.0217
98.8606
99.2362
99.3997
99.5697
99.9451
99.7728
99.607
99.9729
100.141
100.316
100.496
100.124
99.7458
99.9278
100.115
100.308
100.693
100.498
100.308
100.683
100.875
101.072
101.275
100.893
100.506
100.114
99.717
99.3157
98.91
99.1026
99.2994
99.5001
99.9132
99.71
99.5108
99.9145
100.116
100.322
100.531
100.12
99.7044
99.912
100.123
100.336
100.76
100.544
100.33
100.744
100.96
101.179
101.594
101.372
101.153
100.938
100.726
100.518
100.314
100.708
100.915
101.125
101.52
101.307
101.098
101.482
101.693
101.909
102.129
101.737
101.34
101.558
101.779
102.003
102.408
102.181
101.957
102.352
102.578
102.808
103.041
102.638
102.231
101.818
101.401
100.979
100.552
100.122
99.6875
99.2492
98.8075
98.3623
97.9141
97.463
97.0093
97.2066
97.4059
97.6072
98.0687
97.8648
97.6629
98.1166
98.3211
98.5276
98.736
98.2744
97.8103
98.0152
98.222
98.4306
98.9026
98.6913
98.482
98.9462
99.1583
99.3722
99.8393
99.6226
99.4078
99.1949
98.9838
98.7746
98.5674
99.0152
99.2251
99.437
99.8869
99.6723
99.4597
99.9006
100.116
100.333
100.553
100.103
99.6508
99.8665
100.084
100.303
100.765
100.542
100.322
100.774
100.997
101.222
101.449
100.989
100.525
100.058
99.5881
99.1157
98.6411
98.8536
99.0683
99.2852
99.7677
99.5481
99.3309
99.8059
100.026
100.248
100.472
99.9895
99.5046
99.7265
99.9512
100.179
100.671
100.441
100.214
100.699
100.929
101.161
101.65
101.415
101.183
100.953
100.726
100.501
100.278
100.748
100.974
101.201
101.673
101.443
101.215
101.678
101.909
102.142
102.378
101.906
101.431
101.663
101.898
102.135
102.618
102.378
102.141
102.615
102.856
103.098
103.575
103.33
103.087
102.846
102.608
102.372
102.138
101.906
101.677
101.449
101.223
100.998
100.776
100.556
100.338
100.771
100.992
101.215
101.65
101.424
101.2
101.625
101.851
102.08
102.311
101.878
101.44
101.667
101.896
102.127
102.573
102.34
102.108
102.544
102.779
103.015
103.453
103.213
102.976
102.74
102.506
102.274
102.045
102.46
102.692
102.927
103.343
103.106
102.871
103.276
103.514
103.754
103.997
103.583
103.164
103.402
103.643
103.886
104.314
104.068
103.825
104.241
104.488
104.737
104.988
104.562
104.131
103.695
103.254
102.809
102.36
102.595
102.831
103.07
103.528
103.287
103.047
103.495
103.738
103.982
104.229
103.772
103.311
103.554
103.8
104.048
104.517
104.267
104.018
104.478
104.729
104.983
105.444
105.188
104.933
104.682
104.432
104.184
103.939
104.378
104.626
104.877
105.317
105.063
104.812
105.241
105.495
105.752
106.011
105.573
105.129
105.384
105.641
105.9
106.352
106.09
105.83
106.271
106.534
106.799
107.24
106.973
106.707
106.443
106.182
105.922
105.664
105.409
105.155
104.903
104.653
104.405
104.16
103.917
103.676
103.438
103.202
102.97
102.741
102.515
102.293
102.075
101.861
101.651
101.447
101.247
101.053
100.864
100.681
100.504
100.334
100.689
100.862
101.041
101.395
101.214
101.039
101.384
101.561
101.744
101.934
101.583
101.226
101.417
101.614
101.816
102.179
101.975
101.776
102.129
102.33
102.537
102.888
102.68
102.476
102.279
102.087
101.902
101.723
101.551
101.882
101.715
101.555
101.876
101.721
102.035
102.191
102.355
102.038
102.207
102.383
102.056
102.237
102.424
102.756
102.566
102.889
102.704
102.526
102.839
102.666
102.5
102.342
102.191
102.048
101.913
101.787
101.669
101.559
101.459
101.368
101.286
101.213
101.151
101.098
101.374
101.429
101.494
101.769
101.702
101.644
101.909
101.968
102.038
102.117
101.846
101.568
101.653
101.746
101.849
102.132
102.027
101.932
102.205
102.303
102.409
102.68
102.572
102.472
102.382
102.301
102.23
102.168
102.116
102.367
102.324
102.567
102.531
102.507
102.739
102.766
102.804
102.851
102.612
102.668
102.421
102.485
102.558
102.809
102.734
102.977
102.909
103.144
103.084
103.035
102.995
102.966
102.948
102.942
102.946
102.959
103.171
103.195
103.4
103.434
103.63
103.674
103.862
103.916
103.983
104.062
104.154
104.26
104.38
104.548
104.68
104.841
104.984
105.137
105.292
105.439
105.606
105.789
105.925
106.121
106.249
106.458
106.58
106.373
106.182
106.056
105.878
105.745
105.58
105.429
105.286
105.148
104.997
104.871
104.712
104.598
104.431
104.328
104.238
104.409
104.497
104.66
104.758
104.914
105.024
105.171
105.293
105.433
105.567
105.715
105.845
106.006
106.129
106.303
106.492
106.696
106.807
106.605
106.418
106.528
106.713
106.913
107.014
106.815
106.631
106.463
106.357
106.246
106.089
105.97
105.826
105.699
105.567
105.696
105.818
105.946
106.061
106.202
106.309
106.17
106.044
105.934
105.821
105.703
105.579
105.449
105.313
105.207
105.063
104.968
104.817
104.733
104.574
104.501
104.334
104.161
104.097
104.045
104.006
103.821
103.791
103.598
103.58
103.379
103.37
103.161
103.158
103.369
103.573
103.573
103.769
103.775
103.964
103.978
104.159
104.185
104.222
104.272
104.441
104.393
104.357
104.334
104.323
104.147
104.143
103.959
103.964
103.772
103.787
103.586
103.38
103.167
103.187
103.218
103.259
103.478
103.435
103.402
103.61
103.645
103.69
103.896
103.849
103.813
104.008
103.981
104.168
104.15
104.329
104.321
104.492
104.493
104.503
104.524
104.558
104.604
104.662
104.818
104.887
105.034
105.114
105.253
105.345
105.476
105.602
105.514
105.387
105.31
105.175
105.109
104.966
104.912
104.761
104.717
104.684
104.838
104.869
105.015
105.056
105.194
105.246
105.376
105.438
105.56
105.634
105.721
105.834
105.933
106.038
106.148
106.272
106.41
106.563
106.73
106.911
107.109
107.321
107.55
107.796
108.058
108.337
108.635
108.95
109.026
109.358
109.428
109.493
109.165
109.098
108.787
108.713
108.418
108.14
107.88
107.636
107.717
107.959
108.218
108.493
108.564
108.855
108.919
109.227
109.553
109.609
109.952
110.001
110.362
110.405
110.784
110.82
111.218
111.636
112.076
112.536
112.563
113.044
113.066
113.084
113.585
113.598
114.122
114.668
115.239
115.834
116.454
117.099
117.771
117.775
117.104
116.459
116.463
117.107
117.778
115.844
115.84
115.246
114.676
114.13
114.135
114.68
115.25
113.612
113.607
113.107
113.098
112.62
112.605
112.586
112.128
112.104
111.666
111.249
110.852
110.475
110.442
110.084
110.045
109.704
109.659
109.336
109.284
108.977
109.03
109.078
109.382
109.423
109.744
109.779
110.118
110.147
110.504
110.88
111.275
111.691
111.712
112.148
112.163
112.173
112.629
112.635
113.113
112.179
111.745
111.739
111.728
111.313
111.297
110.902
110.527
110.544
110.919
110.93
111.324
111.331
110.937
110.563
110.556
110.201
110.189
110.171
109.834
109.809
109.49
109.459
109.157
109.12
108.835
108.792
108.743
108.688
108.629
108.356
108.289
108.032
107.792
107.861
108.1
108.163
108.417
108.473
108.522
108.27
108.219
107.982
107.925
107.703
107.638
107.568
107.491
107.409
107.198
107.002
106.822
106.908
107.087
107.281
107.359
107.166
106.989
106.826
106.744
106.656
106.506
106.369
106.246
106.337
106.459
106.594
106.677
106.543
106.422
106.5
106.62
106.753
106.901
107.063
107.239
107.431
107.497
107.306
107.131
107.192
107.367
107.557
107.762
107.814
108.034
108.08
108.315
108.566
108.605
108.872
108.905
109.188
109.214
109.515
109.534
109.852
109.865
109.547
109.247
109.234
108.951
108.931
108.665
108.638
108.388
108.354
108.12
108.154
108.182
108.415
108.436
108.685
108.699
108.965
108.972
109.255
109.555
109.872
110.208
108.707
108.458
108.45
108.218
108.203
107.987
107.965
107.936
107.902
107.861
107.658
107.61
107.421
107.247
107.088
107.032
106.97
106.823
106.691
106.572
106.637
106.755
106.886
106.943
106.812
106.695
106.747
106.863
106.994
107.138
107.296
107.47
107.512
107.699
107.734
107.763
107.577
107.547
107.375
107.339
107.181
107.037
106.908
106.792
106.83
106.945
107.075
107.218
107.248
107.405
107.428
107.599
107.785
107.8
108.001
108.01
108.226
107.809
107.623
107.614
107.443
107.452
107.296
107.287
107.271
107.129
107.105
106.976
106.861
106.885
107
107.016
107.144
107.154
107.025
106.91
106.901
106.8
106.783
106.759
106.727
106.689
106.643
106.591
106.532
106.466
106.394
106.315
106.229
106.137
106.041
105.941
105.856
105.749
105.676
105.616
105.499
105.45
105.325
105.287
105.154
105.126
104.985
104.969
104.82
104.665
104.657
104.657
104.668
104.502
104.524
104.349
104.38
104.198
104.237
104.046
104.095
104.287
104.473
104.421
104.599
104.556
104.725
104.691
104.852
104.828
104.815
104.813
104.963
104.966
104.98
105.006
105.042
104.887
104.932
104.769
104.823
104.651
104.714
104.534
104.347
104.153
103.952
103.745
103.531
103.311
103.373
103.444
103.213
103.292
103.054
103.141
102.894
102.641
102.733
102.835
102.945
103.203
103.091
102.988
103.237
103.341
103.455
103.577
103.324
103.064
102.797
102.524
102.245
101.96
102.08
102.209
102.345
102.636
102.498
102.367
102.648
102.781
102.921
103.069
102.783
102.49
102.643
102.803
102.971
103.269
103.1
102.937
103.226
103.39
103.561
103.846
103.673
103.507
103.349
103.199
103.057
102.923
103.191
103.327
103.471
103.736
103.59
103.453
103.708
103.847
103.994
104.149
103.89
103.623
103.782
103.95
104.124
104.396
104.22
104.051
104.312
104.483
104.661
104.846
104.58
104.306
104.026
103.739
103.446
103.146
103.328
103.019
103.206
103.399
103.081
103.278
102.951
102.618
102.818
103.023
103.234
103.574
103.36
103.153
103.482
103.692
103.907
104.127
103.792
103.45
103.102
102.748
102.388
102.023
102.234
102.451
102.671
103.044
102.821
102.602
102.965
103.186
103.411
103.641
103.271
102.896
103.124
103.356
103.591
103.974
103.737
103.502
103.874
104.111
104.352
104.723
104.48
104.24
104.004
103.772
103.544
103.321
103.671
103.897
104.127
104.476
104.243
104.015
104.353
104.583
104.818
105.057
104.713
104.362
104.6
104.842
105.088
105.446
105.198
104.954
105.301
105.548
105.799
106.144
105.891
105.641
105.395
105.154
104.916
104.684
104.456
104.234
104.016
103.805
103.599
103.913
103.712
103.516
103.82
103.63
103.925
104.117
104.316
104.017
104.221
104.43
104.121
104.334
104.554
104.867
104.646
104.951
104.733
104.522
104.816
104.608
104.408
104.214
104.495
104.691
104.894
105.172
104.968
104.77
105.038
105.237
105.443
105.655
105.383
105.103
105.318
105.029
105.248
105.474
105.174
105.403
105.094
104.778
105.008
105.243
105.483
105.805
105.563
105.326
105.637
105.876
106.12
106.368
106.051
105.726
105.975
106.227
106.483
106.815
106.556
106.301
106.621
106.878
107.139
107.457
107.193
106.934
106.679
106.428
106.182
105.94
105.704
105.999
105.766
105.539
105.823
105.6
105.874
106.099
106.33
106.052
106.286
106.526
106.237
106.48
106.729
107.022
106.772
107.056
106.808
106.566
106.839
106.6
106.368
106.141
105.921
105.707
105.499
105.299
105.105
104.918
104.739
104.567
104.402
104.246
104.097
103.956
103.824
103.7
103.585
103.478
103.381
103.614
103.524
103.75
103.667
103.595
103.81
103.884
103.968
104.062
103.841
103.942
103.714
103.822
103.939
104.17
104.052
104.275
104.164
104.379
104.275
104.18
104.095
104.019
104.221
104.298
104.385
104.583
104.495
104.416
104.604
104.685
104.774
104.873
104.681
104.481
104.586
104.7
104.491
104.612
104.395
104.523
104.297
104.064
104.198
104.34
104.49
104.728
104.576
104.432
104.66
104.805
104.958
105.119
104.887
104.648
104.814
104.988
105.169
105.412
105.229
105.054
105.287
105.464
105.647
105.876
105.691
105.513
105.343
105.181
105.026
104.88
104.742
104.954
104.823
105.026
104.902
104.787
104.98
105.097
105.222
105.355
105.158
105.299
105.093
105.241
105.396
105.604
105.448
105.647
105.497
105.688
105.545
105.41
105.284
105.167
105.058
104.958
104.867
104.786
104.96
104.886
105.052
104.987
105.145
105.088
105.238
105.19
105.153
105.126
105.11
105.106
105.111
105.246
105.26
105.387
105.412
105.531
105.568
105.679
105.726
105.785
105.887
105.958
106.052
106.134
106.221
106.14
106.071
105.983
105.925
105.829
105.783
105.749
105.644
105.621
105.507
105.496
105.375
105.371
105.242
105.248
105.265
105.396
105.378
105.501
105.493
105.609
105.611
105.718
105.727
105.827
105.847
105.88
105.971
106.015
106.098
106.153
106.221
106.301
106.374
106.295
106.228
106.296
106.362
106.441
106.5
106.422
106.357
106.303
106.242
106.173
106.131
106.054
106.023
105.939
105.919
106.004
106.082
106.1
106.169
106.2
106.262
106.232
106.215
106.152
106.146
106.075
105.997
105.911
105.818
105.817
105.717
105.726
105.617
105.638
105.521
105.551
105.425
105.293
105.331
105.379
105.438
105.295
105.362
105.211
105.286
105.127
105.211
105.042
105.134
105.304
105.465
105.371
105.525
105.439
105.584
105.506
105.642
105.573
105.514
105.465
105.591
105.641
105.702
105.772
105.851
105.721
105.809
105.671
105.767
105.62
105.724
105.569
105.406
105.235
105.345
105.464
105.591
105.765
105.637
105.517
105.681
105.801
105.931
106.089
105.959
105.837
105.986
105.872
106.012
105.906
106.038
105.94
106.063
105.973
105.893
105.822
105.761
105.71
105.669
105.779
105.748
105.85
105.828
105.922
105.911
105.997
106.076
106.089
106.009
106.033
105.945
105.979
105.883
105.925
105.821
105.874
105.935
106.041
105.978
106.076
106.022
106.111
106.067
106.148
106.113
106.186
106.161
106.147
106.212
106.209
106.266
106.271
106.287
106.317
106.358
106.41
106.475
106.553
106.599
106.522
106.457
106.497
106.561
106.638
106.67
106.594
106.53
106.478
106.445
106.405
106.364
106.336
106.32
106.361
106.377
106.405
106.438
106.41
106.395
106.421
106.436
106.464
106.503
106.555
106.618
106.694
106.711
106.635
106.572
106.581
106.645
106.72
106.809
106.53
106.52
106.481
106.453
106.439
106.449
106.463
106.491
106.444
106.434
106.416
106.39
106.356
106.315
106.318
106.268
106.283
106.226
106.251
106.287
106.221
106.266
106.192
106.247
106.165
106.229
106.139
106.212
106.113
106.007
106.088
106.178
106.278
106.161
106.269
106.144
106.26
106.127
106.25
106.108
106.24
106.382
106.517
106.384
106.511
106.386
106.503
106.386
106.495
106.386
106.286
106.195
106.294
106.386
106.487
106.596
106.715
106.613
106.739
106.629
106.763
106.644
106.786
106.659
106.523
106.379
106.228
106.069
105.902
105.727
105.871
106.023
105.839
105.998
105.805
105.971
105.769
105.56
105.731
105.91
106.097
106.31
106.122
105.942
106.145
106.326
106.515
106.713
106.523
106.34
106.165
106.352
106.184
106.361
106.2
106.047
106.215
106.369
106.531
106.701
106.531
106.708
106.528
106.711
106.903
107.084
106.892
107.065
106.879
107.043
106.864
106.693
106.53
106.375
106.527
106.683
106.847
106.993
106.829
106.672
106.808
106.966
107.131
107.305
107.166
107.019
107.199
107.387
107.23
107.424
107.258
107.459
107.284
107.101
106.91
106.711
106.505
106.29
106.068
105.839
105.601
105.357
105.552
105.754
105.963
106.212
106.002
105.798
106.037
106.242
106.454
106.673
106.43
106.179
106.401
106.629
106.864
107.119
106.883
106.653
106.898
107.129
107.367
107.607
107.368
107.135
106.908
106.688
106.474
106.268
106.491
106.699
106.914
107.132
106.916
106.707
106.915
107.125
107.343
107.567
107.355
107.136
107.364
107.598
107.839
108.063
107.821
107.585
107.798
108.035
108.279
108.529
108.311
108.086
107.852
107.61
107.361
107.104
107.349
107.083
107.332
107.586
107.308
107.565
107.277
106.982
107.239
107.501
107.767
108.069
107.801
107.537
107.827
108.093
108.364
108.638
108.341
108.036
107.724
107.404
107.077
106.742
106.401
106.053
105.698
105.337
104.969
104.595
104.215
103.829
104.07
104.314
104.56
104.954
104.705
104.459
104.842
105.091
105.343
105.597
105.206
104.808
105.059
105.312
105.567
105.973
105.715
105.459
105.854
106.113
106.374
106.768
106.504
106.242
105.982
105.725
105.47
105.218
105.589
105.844
106.101
106.471
106.211
105.953
106.31
106.571
106.834
107.1
106.734
106.362
106.624
106.889
107.156
107.537
107.267
107
107.369
107.639
107.912
108.187
107.81
107.425
107.034
106.637
106.233
105.824
106.083
106.343
106.606
107.025
106.759
106.495
106.902
107.168
107.437
107.708
107.292
106.871
107.137
107.406
107.676
108.107
107.833
107.562
107.98
108.255
108.531
108.949
108.67
108.393
108.117
107.844
107.572
107.302
107.696
107.969
108.244
108.637
108.359
108.084
108.464
108.743
109.024
109.307
108.917
108.52
108.799
109.079
109.361
109.766
109.481
109.198
109.591
109.877
110.164
110.556
110.265
109.977
109.689
109.404
109.12
108.838
108.558
108.28
108.004
107.731
107.459
107.191
106.924
106.661
107.005
107.271
107.54
107.882
107.611
107.342
107.672
107.943
108.218
108.495
108.157
107.812
108.086
108.363
108.641
108.995
108.713
108.434
108.775
109.057
109.342
109.681
109.393
109.108
108.825
108.545
108.268
107.994
108.309
108.586
108.866
109.178
108.896
108.617
108.916
109.198
109.483
109.771
109.464
109.148
109.434
109.722
110.012
110.335
110.042
109.752
110.062
110.355
110.651
110.949
110.63
110.304
109.97
109.628
109.279
108.922
109.205
109.49
109.777
110.142
109.853
109.565
109.917
110.208
110.5
110.794
110.434
110.065
110.355
110.647
110.94
111.317
111.021
110.726
111.09
111.387
111.686
112.047
111.746
111.446
111.147
110.851
110.555
110.262
110.599
110.895
111.193
111.528
111.227
110.928
111.249
111.55
111.854
112.159
111.83
111.493
111.794
112.097
112.401
112.746
112.439
112.134
112.466
112.773
113.083
113.411
113.099
112.789
112.48
112.172
111.866
111.561
111.259
110.958
110.66
110.364
110.07
109.78
109.492
109.208
108.928
108.651
108.378
108.11
107.846
108.118
107.857
107.601
107.862
107.609
107.86
108.115
108.375
108.12
108.383
108.651
108.385
108.655
108.93
109.201
108.924
109.185
108.91
108.64
108.889
108.622
108.36
108.103
108.338
108.597
108.861
109.091
108.826
108.566
108.785
109.046
109.314
109.586
109.362
109.13
109.404
109.161
109.438
109.719
109.465
109.748
109.483
109.209
109.492
109.779
110.069
110.349
110.057
109.768
110.035
110.327
110.621
110.919
110.645
110.362
110.657
110.956
111.257
111.548
111.244
110.943
111.22
111.524
111.83
112.103
111.795
111.489
111.185
110.885
110.588
110.295
110.005
110.254
109.966
109.683
109.919
109.638
109.864
110.146
110.434
110.204
110.494
110.788
110.545
110.841
111.14
111.387
111.085
111.321
111.021
110.725
110.948
110.655
110.365
110.081
109.802
109.527
109.259
108.996
108.738
108.487
108.242
108.003
107.771
107.545
107.327
107.115
107.307
107.52
107.74
107.926
107.705
107.491
107.667
107.882
108.104
108.333
108.154
107.966
108.2
108.44
108.686
108.878
108.63
108.389
108.569
108.812
109.061
109.235
108.985
108.741
108.504
108.274
108.051
107.835
107.626
107.784
107.582
107.731
107.535
107.347
107.487
107.676
107.872
108.005
107.808
107.618
107.436
107.261
107.095
106.937
107.057
106.906
107.018
106.874
106.977
106.842
106.936
106.808
106.689
106.579
106.478
106.386
106.303
106.386
106.312
106.387
106.321
106.388
106.332
106.391
106.345
106.309
106.359
106.333
106.375
106.36
106.394
106.41
106.436
106.401
106.438
106.395
106.442
106.498
106.447
106.513
106.454
106.529
106.461
106.545
106.469
106.562
106.664
106.741
106.638
106.707
106.613
106.673
106.588
106.64
106.564
106.608
106.542
106.485
106.52
106.473
106.5
106.463
106.436
106.42
106.438
106.454
106.481
106.491
106.464
106.448
106.529
106.518
106.566
106.547
106.605
106.577
106.644
106.672
106.69
106.623
106.634
106.576
106.701
106.777
106.767
106.748
106.721
106.684
106.77
106.725
106.82
106.767
106.87
106.809
106.921
106.852
106.775
106.894
107.022
107.159
107.072
107.217
107.121
107.273
107.169
107.329
107.216
107.383
107.497
107.602
107.434
107.53
107.369
107.457
107.304
107.383
107.237
107.1
106.972
107.041
107.17
107.308
107.454
107.608
107.537
107.698
107.619
107.788
107.699
107.876
107.778
107.673
107.558
107.741
107.932
108.13
108.246
108.047
107.856
107.963
108.155
108.354
108.453
108.253
108.061
108.151
107.965
108.046
107.868
107.94
107.77
107.833
107.671
107.516
107.37
107.232
107.103
106.982
107.035
106.923
106.968
106.864
106.901
106.806
106.834
106.853
106.948
106.929
107.033
107.005
107.118
107.081
107.202
107.156
107.286
107.424
107.47
107.332
107.37
107.239
107.268
107.146
107.165
107.052
107.063
106.959
106.863
107.176
107.298
107.287
107.417
107.398
107.537
107.508
107.655
107.617
107.571
107.726
107.889
108.06
108.004
108.183
108.119
108.305
108.232
108.425
108.344
108.544
108.626
108.7
108.499
108.563
108.369
108.425
108.238
108.286
108.107
107.935
107.772
107.81
107.974
108.145
108.325
108.512
108.473
108.668
108.62
108.822
108.765
108.975
108.909
108.835
108.752
108.661
108.561
108.453
108.336
108.21
108.077
107.935
108.145
107.994
108.211
108.435
108.589
108.363
108.507
108.288
108.423
108.549
108.769
108.643
108.869
108.733
108.966
108.821
108.667
108.905
109.149
109.401
109.558
109.306
109.06
109.206
109.453
109.706
109.966
109.817
109.658
109.491
109.316
109.132
108.939
109.198
109.463
109.733
109.93
109.658
109.392
109.577
109.845
110.118
110.397
110.207
110.009
110.29
110.576
110.867
111.07
110.778
110.49
110.681
110.971
111.265
111.45
111.155
110.864
110.578
110.298
110.023
109.754
109.922
110.192
110.468
110.63
110.353
110.082
110.233
110.505
110.783
111.068
110.913
110.75
111.037
111.33
111.627
111.794
111.496
111.202
111.357
111.652
111.953
112.258
112.098
111.929
111.751
111.564
111.368
111.162
111.462
111.246
111.548
111.853
111.625
111.932
111.692
111.443
111.748
112.057
112.368
112.623
112.31
111.999
112.242
112.554
112.87
113.188
112.939
112.681
112.414
112.138
111.853
111.56
111.866
112.173
112.481
112.782
112.471
112.161
112.448
112.761
113.074
113.39
113.095
112.792
113.103
113.416
113.731
114.041
113.725
113.409
113.706
114.024
114.343
114.636
114.315
113.994
113.675
113.358
113.041
112.727
112.996
113.313
113.632
113.897
113.576
113.256
113.507
113.829
114.152
114.477
114.219
113.952
114.273
114.596
114.919
115.193
114.867
114.543
114.803
115.129
115.457
115.712
115.382
115.053
114.725
114.398
114.073
113.749
113.427
113.107
112.79
112.475
112.162
112.384
112.073
111.766
111.975
111.669
111.867
112.175
112.486
112.284
112.597
112.913
112.699
113.016
113.335
113.554
113.232
113.44
113.119
112.801
112.995
112.678
112.365
112.056
112.236
112.546
112.861
113.035
112.718
112.406
112.567
112.881
113.199
113.52
113.355
113.179
113.501
113.315
113.637
113.963
113.763
114.089
113.878
113.657
113.981
114.307
114.635
114.862
114.532
114.204
114.417
114.747
115.079
115.412
115.193
114.964
115.294
115.625
115.956
116.191
115.857
115.525
115.745
116.08
116.416
116.63
116.293
115.956
115.621
115.286
114.953
114.621
114.291
114.483
114.153
113.826
114.004
113.678
113.845
114.173
114.504
114.333
114.665
114.998
114.814
115.148
115.483
115.67
115.333
115.509
115.172
114.837
114.999
114.664
114.332
114.002
113.676
113.353
113.034
112.719
112.408
112.102
111.8
111.504
111.213
110.928
110.648
110.375
110.107
109.846
109.592
109.344
109.103
109.232
108.997
109.116
108.888
108.667
108.776
108.997
109.226
109.463
109.352
109.594
109.474
109.722
109.977
110.1
109.843
109.956
109.706
109.809
109.565
109.328
109.099
108.876
108.968
109.191
109.421
109.505
109.275
109.051
109.126
109.35
109.581
109.819
109.743
109.659
109.903
110.155
110.06
110.317
110.213
110.477
110.362
110.239
110.507
110.782
111.063
111.189
110.907
110.632
110.747
111.023
111.305
111.594
111.476
111.349
111.641
111.939
112.241
112.371
112.068
111.769
111.888
112.187
112.492
112.604
112.298
111.997
111.702
111.413
111.13
110.853
110.582
110.678
110.413
110.499
110.241
109.989
110.065
110.318
110.577
110.843
110.765
111.037
110.949
111.227
111.511
111.601
111.316
111.395
111.116
111.185
110.912
110.646
110.386
110.133
109.887
109.648
109.416
109.192
109.249
109.032
109.08
108.87
108.91
108.707
108.737
108.542
108.354
108.175
108.003
107.839
107.684
107.704
107.556
107.568
107.429
107.715
107.871
107.859
108.023
108.195
108.206
108.034
108.386
108.374
108.562
108.757
108.96
108.94
109.15
109.12
109.338
109.298
109.523
109.474
109.706
109.755
109.796
109.563
109.594
109.368
109.389
109.171
109.183
108.972
108.769
108.573
109.401
109.626
109.614
109.847
109.826
110.067
110.036
109.995
109.945
110.191
110.445
110.705
110.756
110.495
110.242
110.283
110.537
110.798
110.829
110.568
110.314
110.335
110.087
110.1
109.859
110.347
110.601
110.589
110.851
110.863
111.131
111.119
111.097
111.065
111.023
110.972
111.246
111.526
111.465
111.751
111.68
111.972
111.891
111.801
112.097
112.399
112.705
112.798
112.49
112.188
112.269
112.572
112.88
112.953
112.645
112.341
112.043
112.105
111.813
111.865
111.578
111.298
111.34
111.621
111.908
112.201
112.158
112.457
112.404
112.708
113.017
113.071
112.761
112.805
112.5
112.533
112.234
111.94
111.653
111.372
111.393
111.675
111.962
111.975
111.687
111.406
112.269
112.256
112.556
112.861
112.839
113.149
113.115
113.431
113.386
113.332
113.267
113.194
113.11
113.017
112.914
112.802
112.68
112.549
112.861
113.177
113.498
113.633
113.311
112.994
113.117
113.435
113.759
114.085
113.959
113.822
114.15
114.481
114.814
114.955
114.62
114.288
114.416
114.749
115.085
115.205
114.868
114.533
114.202
113.874
113.55
113.23
113.334
113.655
113.98
114.075
113.749
113.428
113.512
113.834
114.161
114.492
114.405
114.309
114.641
114.977
115.315
115.414
115.075
114.739
114.826
115.163
115.504
115.846
115.756
115.656
115.545
115.424
115.292
115.15
115.489
115.335
115.674
116.014
115.847
116.187
116.008
115.819
116.157
116.495
116.834
117.028
116.687
116.347
116.527
116.869
117.211
117.383
117.04
116.697
116.355
116.512
116.17
115.828
115.973
115.632
115.764
116.107
116.451
116.316
116.659
117.004
116.856
117.2
117.545
117.696
117.35
117.489
117.142
116.796
116.922
116.575
116.23
115.887
115.999
116.343
116.69
116.793
116.446
116.1
116.191
116.538
116.886
117.235
117.141
117.037
117.385
117.269
117.617
117.965
117.836
118.183
118.042
117.89
117.727
117.553
117.369
117.173
116.968
116.752
116.525
116.289
116.042
115.786
115.519
115.243
114.958
114.663
114.359
114.046
113.724
113.393
113.054
112.706
112.35
111.986
111.614
111.235
110.848
110.454
110.053
109.645
109.23
108.809
108.382
107.949
107.51
107.066
106.616
106.162
105.703
105.239
104.771
104.299
103.823
103.344
102.861
102.376
101.887
101.397
100.904
100.409
100.643
100.88
101.12
101.621
101.379
101.14
101.635
101.876
102.121
102.369
101.867
101.364
101.612
101.866
102.124
102.633
102.373
102.117
102.621
102.878
103.141
103.647
103.382
103.123
102.869
102.618
102.372
102.128
102.619
102.865
103.114
103.606
103.355
103.107
103.592
103.842
104.096
104.353
103.861
103.366
103.622
103.884
104.15
104.652
104.383
104.12
104.614
104.88
105.15
105.42
104.92
104.416
103.911
103.403
102.893
102.382
105.918
105.646
105.373
105.105
104.842
104.583
104.327
104.073
104.552
104.808
105.066
105.546
105.285
105.026
105.497
105.758
106.022
106.288
105.81
105.328
105.593
105.864
106.139
106.628
106.35
106.078
106.558
106.833
107.113
107.594
107.312
107.035
106.762
106.493
106.227
105.964
106.426
106.692
106.96
107.423
107.151
106.883
107.335
107.606
107.88
108.156
107.696
107.232
107.506
107.786
108.07
108.542
108.256
107.974
108.436
108.721
109.009
109.297
108.828
108.353
107.875
107.391
106.904
106.413
109.761
109.471
109.18
108.893
108.611
108.332
108.056
107.782
108.223
108.5
108.779
109.22
108.939
108.659
109.089
109.371
109.655
109.942
109.504
109.06
109.345
109.634
109.928
110.378
110.083
109.791
110.231
110.525
110.823
111.262
110.961
110.665
110.373
110.084
109.797
109.513
109.93
110.217
110.507
110.922
110.631
110.341
110.745
111.037
111.331
111.628
111.216
110.798
111.092
111.391
111.694
112.119
111.814
111.513
111.927
112.23
112.538
112.844
112.423
111.995
111.561
111.12
110.673
110.22
113.257
112.949
112.64
112.334
112.032
111.733
111.437
111.141
111.531
111.829
112.128
112.515
112.213
111.913
112.287
112.59
112.894
113.2
112.819
112.429
112.733
113.041
113.353
113.75
113.435
113.125
113.509
113.822
114.138
114.519
114.2
113.885
113.574
113.266
112.959
112.654
113.012
113.32
113.629
113.984
113.673
113.363
113.704
114.017
114.331
114.646
114.297
113.94
114.253
114.57
114.891
115.255
114.932
114.613
114.963
115.285
115.61
115.933
115.576
115.21
114.835
114.453
114.062
113.664
116.281
115.956
115.629
115.306
114.986
114.668
114.352
114.038
114.362
114.679
114.997
115.317
114.997
114.677
114.984
115.305
115.628
115.952
115.639
115.317
115.639
115.964
116.294
116.622
116.29
115.963
116.277
116.607
116.94
117.249
116.914
116.583
116.255
115.929
115.605
115.281
115.568
115.894
116.221
116.503
116.174
115.846
116.115
116.445
116.775
117.106
116.832
116.549
116.878
117.212
117.548
117.838
117.499
117.164
117.44
117.777
118.117
118.455
118.174
117.883
117.582
117.271
116.95
116.62
118.725
118.386
118.044
117.706
117.37
117.037
116.705
116.373
116.622
116.955
117.289
117.531
117.195
116.86
117.088
117.425
117.762
118.101
117.868
117.624
117.961
118.301
118.645
118.893
118.548
118.206
118.441
118.784
119.131
119.357
119.009
118.665
118.323
117.983
117.644
117.306
117.513
117.853
118.194
118.393
118.051
117.71
117.896
118.239
118.582
118.926
118.736
118.535
118.878
119.224
119.573
119.778
119.427
119.08
119.271
119.62
119.972
120.321
120.126
119.92
119.702
119.474
119.235
118.986
120.504
120.154
119.801
119.451
119.105
118.76
118.415
118.071
118.235
118.581
118.926
119.082
118.735
118.389
118.531
118.879
119.226
119.575
119.429
119.273
119.62
119.971
120.326
120.485
120.13
119.778
119.925
120.278
120.634
120.77
120.413
120.06
119.709
119.36
119.011
118.662
118.314
118.433
118.083
117.734
117.84
117.49
117.585
117.935
118.286
118.19
118.541
118.891
118.782
119.132
119.481
119.592
119.241
119.34
118.988
118.637
118.723
118.371
118.019
117.668
117.317
116.967
116.619
116.271
115.926
115.582
115.241
114.903
114.568
114.237
113.91
113.586
113.651
113.975
114.303
114.359
114.031
113.706
113.751
114.076
114.405
114.738
114.692
114.635
114.971
115.309
115.651
115.709
115.367
115.028
115.075
115.415
115.757
115.794
115.451
115.111
114.774
114.44
114.111
113.786
113.465
113.488
113.172
113.185
112.874
112.569
113.501
113.822
113.809
114.134
114.464
114.478
114.148
114.811
114.797
115.135
115.475
115.818
115.833
115.489
115.149
116.178
116.164
116.139
116.102
116.054
115.995
116.341
116.689
117.039
117.099
116.749
116.401
116.45
116.799
117.149
117.501
117.451
117.389
117.741
118.093
118.445
118.508
118.155
117.802
117.853
118.206
118.559
118.598
118.245
117.892
117.539
117.187
116.836
116.487
116.512
116.861
117.212
117.227
116.876
116.526
117.58
117.565
117.918
118.271
118.625
118.64
118.286
117.933
118.994
118.979
118.952
118.913
118.861
118.797
119.15
119.075
119.427
119.778
119.691
120.042
119.943
119.832
120.183
120.538
120.896
121.009
120.651
120.295
120.395
120.752
121.111
121.467
121.364
121.25
121.124
120.987
120.837
120.677
121.557
121.201
120.841
120.484
120.131
120.207
119.855
119.502
119.567
119.214
119.266
119.619
119.973
119.919
120.273
120.628
120.562
120.919
121.28
121.347
120.986
121.042
120.682
120.327
120.368
120.013
119.66
119.306
119.333
119.687
120.041
120.058
119.703
119.349
120.415
120.397
120.754
120.725
121.085
121.448
121.404
121.762
121.705
121.637
121.807
121.837
121.479
121.115
121.135
120.773
121.496
121.852
203.867
182.3
181.442
198.914
204.881
196.666
179.084
193.39
201.749
178.974
180.157
183.429
185.868
187.628
204.994
213.621
192.961
196.395
219.823
228.007
219.075
207.054
211.185
228.692
256.506
266.016
243.162
249.214
288.639
265.068
271.762
303.638
335.443
318.049
325.882
353.681
373.291
354.06
363.504
394.691
523.995
561.247
519.8
571.618
570.708
209.388
195.727
192.624
184.52
190.983
186.692
193.381
197.405
208.868
200.464
221.619
215.45
393.633
290.041
302.469
322.992
216.023
218.705
243.48
618.573
395.894
422.929
453.368
478.994
505.335
533.814
89.9861
84.7244
82.4996
81.4621
81.0476
80.9113
80.9089
80.9757
81.0816
81.2127
81.3621
81.5265
81.7042
81.8941
82.0957
82.3088
82.5332
82.7687
83.0152
83.2726
83.5408
83.8197
84.1092
84.4091
84.7193
85.0396
85.3699
85.7099
86.0596
86.4186
86.7867
87.1639
87.5497
87.9441
88.3466
88.7572
89.1755
89.6013
90.0343
90.4742
90.9208
91.3737
91.8328
92.2976
92.768
93.2435
93.724
94.209
94.6984
95.1917
95.6887
96.1891
96.6925
97.1987
97.7073
98.218
98.7304
99.2444
99.7595
100.275
100.792
101.309
101.825
102.341
102.857
103.371
103.884
104.395
104.905
105.412
105.916
106.418
106.917
107.412
107.903
108.39
108.873
109.351
109.825
110.293
110.756
111.213
111.664
112.109
112.548
112.979
113.404
113.822
114.232
114.634
115.029
115.416
115.794
116.163
116.524
116.876
117.219
117.552
117.876
118.19
118.494
118.789
119.073
119.346
119.609
119.862
120.103
120.334
120.553
120.762
120.959
121.145
121.319
121.481
121.632
121.772
121.899
122.015
122.118
122.21
122.29
122.359
122.414
122.459
122.488
)
;
boundaryField
{
bottomEmptyFaces
{
type empty;
}
topEmptyFaces
{
type empty;
}
inlet
{
type turbulentIntensityKineticEnergyInlet;
intensity 0.15;
value nonuniform List<scalar>
130
(
122.929
122.912
122.884
122.843
122.788
122.719
122.639
122.546
122.441
122.324
122.196
122.056
121.904
121.74
121.564
121.377
121.179
120.969
120.747
120.515
120.272
120.017
119.752
119.477
119.191
118.895
118.588
118.272
117.946
117.61
117.265
116.911
116.547
116.175
115.795
115.405
115.008
114.603
114.19
113.77
113.342
112.908
112.467
112.019
111.565
111.105
110.64
110.169
109.692
109.211
108.726
108.236
107.742
107.244
106.743
106.239
105.732
105.222
104.711
104.197
103.682
103.165
102.648
102.129
101.611
101.092
100.574
100.056
99.5394
99.0239
98.51
97.9979
97.4881
96.9808
96.4763
95.975
95.4772
94.9832
94.4933
94.0078
93.527
93.0512
92.5807
92.1159
91.657
91.2042
90.7579
90.3184
89.886
89.4608
89.0432
88.6334
88.2316
87.8382
87.4534
87.0773
86.7102
86.3524
86.004
85.6651
85.3361
85.0171
84.7082
84.4096
84.1214
83.8438
83.5768
83.3207
83.0754
82.8411
82.6178
82.4056
82.2046
82.015
81.837
81.6709
81.5176
81.3782
81.2558
81.156
81.094
81.1033
81.2041
81.8947
82.1053
88.3325
122.936
38.5801
94.9156
83.3143
)
;
}
outlet
{
type inletOutlet;
inletValue uniform 1;
value nonuniform List<scalar>
64
(
235.244
235.719
236.509
237.665
239.177
241.057
243.243
245.731
248.487
251.504
254.765
258.256
261.96
265.859
269.932
274.16
278.521
282.995
287.558
292.189
296.864
301.558
306.246
310.9
315.492
319.991
324.364
328.577
332.59
336.363
339.849
342.998
345.755
348.06
349.843
351.03
351.532
351.257
350.096
347.952
344.726
340.444
335.15
330.324
326.036
321.248
315.874
304.764
311.241
298.175
291.099
282.819
274.167
265.612
256.426
246.58
236.505
227.904
177.938
194.316
204.154
211.792
219.269
235.024
)
;
}
walls
{
type kqRWallFunction;
value nonuniform List<scalar>
1343
(
207.209
207.017
206.827
206.632
206.442
206.259
206.075
205.892
205.716
205.534
205.366
205.186
205.017
204.847
204.681
204.513
204.351
204.19
204.027
203.874
203.71
203.564
203.404
203.259
203.105
202.959
202.809
202.67
202.518
202.383
202.231
202.102
201.953
201.824
201.682
201.555
201.419
201.295
201.157
201.035
200.896
200.779
200.643
200.526
200.396
200.28
200.153
200.038
199.919
199.8
199.686
199.568
199.456
199.338
199.23
199.113
199.002
198.893
198.782
198.676
198.566
198.462
198.353
198.251
198.142
198.042
197.938
197.838
197.734
197.637
197.534
197.437
197.338
197.24
197.144
197.046
196.95
196.856
196.758
196.668
196.572
196.483
196.39
196.299
196.207
196.115
196.026
195.937
195.849
195.761
195.673
195.59
195.499
195.418
195.328
195.249
195.161
195.08
194.994
194.913
194.827
194.749
194.665
194.586
194.505
194.425
194.348
194.266
194.192
194.108
194.038
193.954
193.884
193.803
193.73
193.654
193.579
193.504
193.431
193.356
193.282
193.209
193.135
193.064
192.989
192.921
192.845
192.779
192.702
192.636
192.561
192.496
192.422
192.358
192.284
192.221
192.148
192.085
192.013
191.95
191.878
191.816
191.746
191.684
191.614
191.553
191.483
191.423
191.354
191.294
191.226
191.166
191.098
191.04
190.972
190.914
190.847
190.789
190.723
190.665
190.602
190.544
190.481
190.423
190.357
190.299
190.238
190.182
190.121
190.064
190.003
189.946
189.886
189.829
189.77
189.713
189.654
189.598
189.54
189.485
189.427
189.371
189.314
189.259
189.202
189.148
189.091
189.037
188.981
188.927
188.871
188.818
188.762
188.709
188.654
188.602
188.547
188.495
188.441
188.389
188.336
188.284
188.231
188.181
188.128
188.078
188.026
187.976
187.924
187.875
187.825
187.776
187.726
187.678
187.628
187.581
187.532
187.485
187.437
187.391
187.344
187.299
187.252
187.208
187.163
187.12
187.075
187.033
186.989
186.948
186.905
186.865
186.822
186.783
186.741
186.703
186.662
186.624
186.584
186.548
186.508
186.474
186.435
186.401
186.363
186.33
186.296
186.264
186.233
186.201
186.174
186.145
186.121
186.094
186.074
186.049
186.033
186.013
186.002
185.989
185.982
185.977
185.979
185.982
185.993
186.006
186.033
186.063
186.105
186.154
186.223
186.301
186.405
186.529
186.695
186.897
187.181
187.539
188.11
188.882
190.749
189.583
195.263
185.238
175.178
169.66
165.998
163.387
161.292
159.566
158.146
156.99
156.157
155.509
155.128
154.833
154.714
154.631
154.646
154.683
154.917
155.89
79.3268
79.1215
79.5508
79.8468
79.7057
74.2465
73.9789
73.1435
72.9703
72.8735
73.287
73.097
73.7209
73.5077
73.1093
73.1286
77.0038
76.8274
76.5386
76.1865
75.8981
75.6259
75.4731
75.1856
78.2357
78.019
77.2517
77.4903
77.3377
77.7423
77.5276
78.7838
78.581
74.8863
75.0484
74.9393
74.9279
74.9322
74.6948
74.5183
70.2482
69.6942
69.8739
72.3927
74.3829
73.6598
73.8677
73.3523
72.2305
72.7089
71.984
71.609
71.5727
72.4729
72.0275
71.2001
70.8921
71.2993
71.6016
71.9863
70.7667
70.8801
71.2088
70.564
70.8013
68.0465
67.8977
67.9709
67.9968
67.7878
68.0364
67.7008
67.8196
66.6045
66.3048
66.9136
66.7376
66.4594
65.9689
66.1671
66.4319
66.0233
67.3302
66.6448
66.6793
66.7602
67.0135
67.3424
66.9623
67.3305
67.253
67.2668
66.8112
67.0087
66.8143
67.0232
66.8615
66.1221
66.4003
67.1887
67.5441
68.7205
68.5068
68.6499
68.3103
68.3246
70.0308
69.1669
69.4823
69.7456
70.0889
69.8199
68.532
68.6858
68.6213
68.7269
68.5493
68.0206
68.224
68.7834
68.4903
68.6729
69.5819
70.3877
70.1312
69.929
69.623
69.482
69.3177
69.2719
69.47
69.1803
68.9028
69.5015
69.4193
68.6518
68.5475
67.6606
67.2783
67.444
67.0849
67.2681
67.1291
67.0055
67.0224
66.9907
67.0183
66.8064
66.4942
66.2383
67.0152
66.6206
66.8099
66.7371
66.5651
67.4171
67.2924
66.9489
66.7242
67.0188
66.6173
66.7819
68.2846
68.0066
67.9433
67.95
68.1281
68.756
68.6572
68.5083
68.2398
68.1669
67.9323
71.7952
71.6755
71.9949
71.9876
72.0122
70.807
70.5894
70.5026
70.3477
70.4383
70.3659
70.3447
71.3521
71.011
72.6167
72.3301
72.1532
71.9735
66.9185
66.4244
66.6038
122.827
121.087
120.458
122.11
121.61
118.327
117.622
117.128
116.94
116.52
116.425
115.816
119.776
118.963
120.956
117.658
118.832
111.12
107.315
109.056
116.095
112.696
114.26
102.07
99.7729
100.771
174.359
177.497
175.84
179.253
91.3766
98.6592
182.995
96.6765
92.6473
94.4061
180.88
106.196
102.957
103.932
190.289
201.457
201.262
196.225
193.805
193.029
200.652
198.386
185.664
184.145
184.198
188.86
186.902
87.2544
83.2543
85.1743
85.7261
86.235
83.7121
84.1845
78.9852
74.7947
206.492
76.8762
77.3576
78.054
75.3115
76.0272
208.352
208.595
81.0955
81.7148
82.2335
79.4866
80.1357
89.2112
89.6915
90.0724
87.5625
88.3045
218.063
222.869
220.139
210.69
215.634
213.414
225.675
228.391
226.934
241.03
231.389
233.673
238.831
237.612
223.494
225.499
225.316
202.358
205.519
204.076
139.77
138.566
140.627
142.902
142.05
494.176
164.911
168.021
508.015
166.481
513.349
159.822
155.422
157.746
156.63
158.679
158.542
163.409
162.525
162.306
161.001
145.552
147.708
146.49
149.799
154.359
154.031
152.297
151.348
148.877
148.419
144.613
144.422
143.957
143.968
217.136
232.018
204.981
183.258
193.391
154.139
126.155
127.117
131.729
139.051
143.846
149.176
129.998
134
167.546
172.441
176.816
158.6
163.389
294.543
320.208
400.029
423.888
348.49
374.45
249.998
269.856
446.701
472.983
126.809
126.205
125.554
129.884
129.251
131.071
130.416
128.454
127.745
136.028
135.131
134.882
134.367
134.376
133.395
132.69
138.156
136.863
125.463
124.973
124.383
123.497
170.536
174.058
173.177
173.147
171.62
169.206
169.102
493.182
465.688
436.453
401.965
387.124
385.086
371.463
380.097
301.43
344.042
279.057
229.711
252.09
211.543
182.893
195.829
170.883
150.601
160.52
142.381
128.409
134.925
121.065
117.696
109.54
112.835
105.088
100.443
125.037
121.793
123.523
92.2874
96.045
89.0889
84.329
81.0213
75.7866
78.0469
73.8052
71.4033
68.3867
64.5722
65.9899
63.5529
61.0227
58.8015
56.5147
57.219
256.878
257.928
265.151
260.769
260.053
274.62
279.171
267.839
274.159
273.1
282.156
293.129
290.169
292.548
296.335
300.966
306.665
312.123
316.194
319.333
322.195
323.802
324.156
323.553
321.92
319.359
315.868
311.784
307.183
302.982
299.225
245.339
243.586
241.915
248.447
255.423
253.625
55.3838
53.5961
51.6877
299.922
299.113
315.459
328.716
321.67
303.919
284.109
267.114
253.202
242.654
234.414
229.254
226.414
224.97
224.231
224.3
224.569
225.18
225.674
226.165
226.571
226.974
227.253
227.52
49.8966
48.2216
48.6671
227.741
47.3484
227.93
46.4534
228.074
228.221
228.334
228.412
228.444
228.416
44.8723
43.194
41.8543
40.5237
40.9091
40.2211
39.2795
38.2765
37.4276
36.0808
35.1941
35.2258
228.336
228.208
34.746
228.03
34.1182
227.802
227.536
227.241
226.912
226.541
226.142
225.715
225.255
224.785
224.3
223.819
223.329
222.845
222.366
221.887
221.4
220.926
220.446
219.987
219.516
219.088
218.649
218.234
217.816
217.417
217.015
216.633
216.247
215.882
215.512
215.169
214.812
214.495
214.156
213.848
213.54
213.243
212.938
212.654
212.359
212.085
211.795
211.534
211.262
211.011
210.752
210.512
210.269
210.031
209.794
209.562
209.332
209.107
208.881
208.661
208.444
208.23
208.018
207.815
207.607
207.413
73.316
81.9184
74.7187
73.8939
73.4996
77.058
75.7864
79.5319
83.1926
83.6544
83.9971
83.3846
82.9763
82.9904
84.1736
82.008
84.3912
80.5999
78.0521
78.8715
77.7155
76.1752
76.7844
75.8113
74.7064
74.9769
73.3451
73.4101
73.8419
73.3363
73.1455
33.2895
32.3348
31.2523
30.4597
30.5039
30.2543
29.4606
29.0666
28.3679
27.8188
27.1166
26.6783
26.2828
26.2198
26.3472
26.4759
26.4206
26.5124
25.8986
25.3782
24.3882
23.616
22.8343
22.0964
21.0091
21.3121
20.5925
20.0422
19.2792
18.4097
17.5315
16.6532
15.7888
14.8799
14.1255
13.5987
13.1532
12.683
12.2391
11.8205
11.445
11.0715
10.8467
10.8795
11.3374
11.7404
11.1306
11.0887
8.3391
8.83672
8.64274
10.3183
8.91556
7.83529
7.2179
7.20706
8.06538
8.12748
6.79925
6.00747
5.84371
6.28049
6.91364
5.33438
5.88296
6.42592
5.42021
4.51825
5.01141
4.55694
4.14583
4.31445
4.99515
3.7197
5.10537
4.35926
3.2906
3.97015
3.90302
2.90149
3.4682
3.00148
2.68527
2.84816
2.95835
2.39285
3.68564
2.63404
2.34612
3.04708
2.48043
1.80653
2.43242
1.75118
2.33347
1.71878
1.98473
1.88022
1.35286
1.54269
1.5809
1.29029
2.53384
2.30228
1.06428
1.65744
1.69251
1.75759
0.498015
0.505578
1.5547
1.84573
1.5296
1.34447
0.491225
0.515823
0.240144
0.228848
0.210944
0.219526
0.245187
0.242721
0.236084
0.222364
0.209948
0.193818
0.179188
0.16263
0.147911
0.132466
0.117262
0.101665
0.0858659
0.0697571
0.0533714
0.0377025
0.0248103
0.0169515
0.0170122
96.5575
96.2457
94.1279
93.8334
93.4799
93.1534
94.4617
95.1997
94.799
95.9301
95.572
90.4759
90.2041
90.7706
91.4384
91.0808
89.2767
88.9954
87.4867
88.0396
87.7717
88.6641
88.3489
89.9035
89.601
92.8258
92.4836
92.1385
91.7684
108.372
108.03
107.797
107.288
101.68
101.308
100.929
100.627
100.275
99.9227
99.567
105.05
104.663
103.478
103.176
104.217
103.983
105.67
106.878
106.159
102.631
102.151
111.817
111.282
113.471
113.048
114.058
115.306
114.591
112.666
112.183
109.545
109.023
108.646
110.764
110.041
97.8512
97.4692
98.2004
99.0646
98.6522
97.1683
96.8405
83.1664
82.9492
87.2143
86.9039
86.6563
86.3101
86.0614
85.7587
85.5261
85.241
84.3082
84.0959
84.5942
85.1045
84.8043
83.736
83.5311
81.6814
81.4772
81.2199
80.9428
81.9298
82.2847
82.099
82.6258
82.4396
80.6969
80.3712
80.1739
79.9475
177.938
0.0158725
64.9001
63.9787
60.8216
56.3956
52.2794
48.8188
45.9379
43.582
41.6622
40.077
38.7579
37.6439
36.6904
35.864
35.1391
34.4943
33.9125
33.3807
32.8889
32.4292
31.9957
31.5836
31.1893
30.8099
30.4429
30.0864
29.7389
29.399
29.0655
28.7375
28.414
28.0943
27.7776
27.4634
27.1511
26.84
26.5297
26.2197
25.9098
25.5993
25.2882
24.9759
24.6623
24.347
24.0297
23.7103
23.3885
23.0641
22.7367
22.4062
22.0723
21.7348
21.3933
21.0477
20.6976
20.3428
19.9829
19.6177
19.2469
18.8701
18.4872
18.0977
17.7015
17.2982
16.8877
16.4698
16.0443
15.6111
15.1702
14.7216
14.2655
13.8021
13.332
12.8555
12.3737
11.8876
11.398
10.9075
10.4171
9.93042
9.44909
8.9775
8.52028
8.08037
7.66148
7.2694
6.90464
6.56316
6.24562
5.94723
5.63922
5.4342
5.3688
5.23524
4.99678
4.63397
4.16238
3.61562
3.04534
2.51442
2.05651
1.74291
1.63766
1.62337
1.66174
1.71855
1.78919
1.85871
1.92293
1.97834
2.02314
2.05685
2.0747
2.08089
2.07803
2.06116
2.03074
1.98871
1.9344
1.86923
1.79322
1.70759
1.61266
1.50929
1.39859
1.2814
1.159
1.03269
0.903875
0.773897
0.643861
0.516255
0.39077
0.268905
0.155837
0.0683916
0.0323776
0.021021
0.0112676
56.3109
0.0992062
0.13071
0.164423
0.185202
0.180621
0.246406
0.401743
0.402002
0.332197
0.406207
0.693067
0.776354
0.839019
0.891647
0.854008
0.857663
0.839912
0.806734
0.753631
0.690519
0.615936
0.530569
0.434076
0.333257
0.229477
0.137959
0.0737618
0.044144
0.0287488
0.0158725
0.026011
0.0365376
0.0479012
0.0668583
0.0112676
0.0151092
0.0194419
)
;
}
symmetryLine
{
type symmetryPlane;
}
}
// ************************************************************************* //
| [
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.