blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
18c387c72bc7909537d61890c3fd9543335e8ec0
cfdfd31ec1113b37c155ed7b43dddb3f4b15bd0d
/src/content/public/common/content_switches.cc
dc85eb72658827fcb9708928d168c31208546632
[ "BSD-3-Clause" ]
permissive
JEderonn/chromium79
42ea345f200865250d42f3db0cc0ddbffd38c3d5
3c188e38482cee3932b038aeb9407732997627b4
refs/heads/master
2022-07-24T17:04:40.964513
2020-03-24T16:32:23
2020-04-01T16:13:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
49,805
cc
// Copyright 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/public/common/content_switches.h" #include "build/build_config.h" #include "media/media_buildflags.h" namespace switches { // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to // have an effect. 0 disables MSAA. const char kAcceleratedCanvas2dMSAASampleCount[] = "canvas-msaa-sample-count"; // Allows processing of input before a frame has been committed. // TODO(schenney): crbug.com/987626. Used by headless. Look for a way not // involving a command line switch. const char kAllowPreCommitInput[] = "allow-pre-commit-input"; // By default, file:// URIs cannot read other file:// URIs. This is an // override for developers who need the old behavior for testing. const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; // Enables TLS/SSL errors on localhost to be ignored (no interstitial, // no blocking of requests). const char kAllowInsecureLocalhost[] = "allow-insecure-localhost"; // Allows loopback interface to be added in network list for peer connection. const char kAllowLoopbackInPeerConnection[] = "allow-loopback-in-peer-connection"; // Allow a page to show popups during its unloading. // TODO(https://crbug.com/937569): Remove this in Chrome 82. const char kAllowPopupsDuringPageUnload[] = "allow-popups-during-page-unload"; // Allow a page to send synchronus XHR during its unloading. // TODO(https://crbug.com/1003101): Remove this in Chrome 82. const char kAllowSyncXHRInPageDismissal[] = "allow-sync-xhr-in-page-dimissal"; // Uses the android SkFontManager on linux. The specified directory should // include the configuration xml file with the name "fonts.xml". // This is used in blimp to emulate android fonts on linux. const char kAndroidFontsPath[] = "android-fonts-path"; // Set blink settings. Format is <name>[=<value],<name>[=<value>],... // The names are declared in Settings.json5. For boolean type, use "true", // "false", or omit '=<value>' part to set to true. For enum type, use the int // value of the enum value. Applied after other command line flags and prefs. const char kBlinkSettings[] = "blink-settings"; // Causes the browser process to crash on startup. const char kBrowserCrashTest[] = "crash-test"; // Causes the browser process to display a dialog on launch. const char kBrowserStartupDialog[] = "browser-startup-dialog"; // Path to the exe to run for the renderer and plugin subprocesses. const char kBrowserSubprocessPath[] = "browser-subprocess-path"; // Tells whether the code is running browser tests (this changes the startup URL // used by the content shell and also disables features that can make tests // flaky [like monitoring of memory pressure]). const char kBrowserTest[] = "browser-test"; // Sets the tile size used by composited layers. const char kDefaultTileWidth[] = "default-tile-width"; const char kDefaultTileHeight[] = "default-tile-height"; // Disable antialiasing on 2d canvas. const char kDisable2dCanvasAntialiasing[] = "disable-canvas-aa"; // Disables Canvas2D rendering into a scanout buffer for overlay support. const char kDisable2dCanvasImageChromium[] = "disable-2d-canvas-image-chromium"; // Disables client-visible 3D APIs, in particular WebGL and Pepper 3D. // This is controlled by policy and is kept separate from the other // enable/disable switches to avoid accidentally regressing the policy // support for controlling access to these APIs. const char kDisable3DAPIs[] = "disable-3d-apis"; // Disable gpu-accelerated 2d canvas. const char kDisableAccelerated2dCanvas[] = "disable-accelerated-2d-canvas"; // Disables hardware acceleration of video decode, where available. const char kDisableAcceleratedVideoDecode[] = "disable-accelerated-video-decode"; // Disables hardware acceleration of video encode, where available. const char kDisableAcceleratedVideoEncode[] = "disable-accelerated-video-encode"; // Disable limits on the number of backing stores. Can prevent blinking for // users with many windows/tabs and lots of memory. const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; // Disable backgrounding renders for occluded windows. Done for tests to avoid // nondeterministic behavior. const char kDisableBackgroundingOccludedWindowsForTesting[] = "disable-backgrounding-occluded-windows"; // Disable task throttling of timer tasks from background pages. const char kDisableBackgroundTimerThrottling[] = "disable-background-timer-throttling"; // Disable one or more Blink runtime-enabled features. // Use names from runtime_enabled_features.json5, separated by commas. // Applied after kEnableBlinkFeatures, and after other flags that change these // features. const char kDisableBlinkFeatures[] = "disable-blink-features"; // Disables HTML5 DB support. const char kDisableDatabases[] = "disable-databases"; // Disable the per-domain blocking for 3D APIs after GPU reset. // This switch is intended only for tests. const char kDisableDomainBlockingFor3DAPIs[] = "disable-domain-blocking-for-3d-apis"; // Disable all versions of WebGL. const char kDisableWebGL[] = "disable-webgl"; // Disable WebGL2. const char kDisableWebGL2[] = "disable-webgl2"; // Disable FileSystem API. const char kDisableFileSystem[] = "disable-file-system"; // Disable 3D inside of flapper. const char kDisableFlash3d[] = "disable-flash-3d"; // Disable Stage3D inside of flapper. const char kDisableFlashStage3d[] = "disable-flash-stage3d"; // Disable user gesture requirement for presentation. const char kDisableGestureRequirementForPresentation[] = "disable-gesture-requirement-for-presentation"; // Disables GPU hardware acceleration. If software renderer is not in place, // then the GPU process won't launch. const char kDisableGpu[] = "disable-gpu"; // Prevent the compositor from using its GPU implementation. const char kDisableGpuCompositing[] = "disable-gpu-compositing"; // Disable proactive early init of GPU process. const char kDisableGpuEarlyInit[] = "disable-gpu-early-init"; // Do not force that all compositor resources be backed by GPU memory buffers. const char kDisableGpuMemoryBufferCompositorResources[] = "disable-gpu-memory-buffer-compositor-resources"; // Disable GpuMemoryBuffer backed VideoFrames. const char kDisableGpuMemoryBufferVideoFrames[] = "disable-gpu-memory-buffer-video-frames"; // For tests, to disable the limit on the number of times the GPU process may be // restarted. const char kDisableGpuProcessCrashLimit[] = "disable-gpu-process-crash-limit"; // For tests, to disable falling back to software compositing if the GPU Process // has crashed, and reached the GPU Process crash limit. const char kDisableSoftwareCompositingFallback[] = "disable-software-compositing-fallback"; // When using CPU rasterizing disable low resolution tiling. This uses // less power, particularly during animations, but more white may be seen // during fast scrolling especially on slower devices. const char kDisableLowResTiling[] = "disable-low-res-tiling"; // Disable the thread that crashes the GPU process if it stops responding to // messages. const char kDisableGpuWatchdog[] = "disable-gpu-watchdog"; // Disallow image animations to be reset to the beginning to avoid skipping // many frames. Only effective if compositor image animations are enabled. const char kDisableImageAnimationResync[] = "disable-image-animation-resync"; // Disables the IPC flooding protection. // It is activated by default. Some javascript functions can be used to flood // the browser process with IPC. This protection limits the rate at which they // can be used. const char kDisableIpcFloodingProtection[] = "disable-ipc-flooding-protection"; // Suppresses hang monitor dialogs in renderer processes. This may allow slow // unload handlers on a page to prevent the tab from closing, but the Task // Manager can be used to terminate the offending process in this case. const char kDisableHangMonitor[] = "disable-hang-monitor"; // Disable the RenderThread's HistogramCustomizer. const char kDisableHistogramCustomizer[] = "disable-histogram-customizer"; // Don't kill a child process when it sends a bad IPC message. Apart // from testing, it is a bad idea from a security perspective to enable // this switch. const char kDisableKillAfterBadIPC[] = "disable-kill-after-bad-ipc"; // Disables LCD text. const char kDisableLCDText[] = "disable-lcd-text"; // Disable LocalStorage. const char kDisableLocalStorage[] = "disable-local-storage"; // Force logging to be disabled. Logging is enabled by default in debug // builds. const char kDisableLogging[] = "disable-logging"; // Disables using CODECAPI_AVLowLatencyMode when creating DXVA decoders. const char kDisableLowLatencyDxva[] = "disable-low-latency-dxva"; // Disables clearing the rendering output of a renderer when it didn't commit // new output for a while after a top-frame navigation. const char kDisableNewContentRenderingTimeout[] = "disable-new-content-rendering-timeout"; // Disables the Web Notification and the Push APIs. const char kDisableNotifications[] = "disable-notifications"; // Disable partial raster in the renderer. Disabling this switch also disables // the use of persistent gpu memory buffers. const char kDisablePartialRaster[] = "disable-partial-raster"; // Disable Pepper3D. const char kDisablePepper3d[] = "disable-pepper-3d"; // Disables the Permissions API. const char kDisablePermissionsAPI[] = "disable-permissions-api"; // Disable Image Chromium for Pepper 3d. const char kDisablePepper3DImageChromium[] = "disable-pepper-3d-image-chromium"; // Disables compositor-accelerated touch-screen pinch gestures. const char kDisablePinch[] = "disable-pinch"; // Disable the creation of compositing layers when it would prevent LCD text. const char kDisablePreferCompositingToLCDText[] = "disable-prefer-compositing-to-lcd-text"; // Disables the Presentation API. const char kDisablePresentationAPI[] = "disable-presentation-api"; // Disables throttling of history.pushState/replaceState calls. const char kDisablePushStateThrottle[] = "disable-pushstate-throttle"; // Disables RGBA_4444 textures. const char kDisableRGBA4444Textures[] = "disable-rgba-4444-textures"; // Taints all <canvas> elements, regardless of origin. const char kDisableReadingFromCanvas[] = "disable-reading-from-canvas"; // Disables remote web font support. SVG font should always work whether this // option is specified or not. const char kDisableRemoteFonts[] = "disable-remote-fonts"; // Disables the RemotePlayback API. const char kDisableRemotePlaybackAPI[] = "disable-remote-playback-api"; // Turns off the accessibility in the renderer. const char kDisableRendererAccessibility[] = "disable-renderer-accessibility"; // Prevent renderer process backgrounding when set. const char kDisableRendererBackgrounding[] = "disable-renderer-backgrounding"; // Whether the ResourceScheduler is disabled. Note this is only useful for C++ // Headless embedders who need to implement their own resource scheduling. const char kDisableResourceScheduler[] = "disable-resource-scheduler"; // Disable shared workers. const char kDisableSharedWorkers[] = "disable-shared-workers"; // Do not use runtime-detected high-end CPU optimizations in Skia. This is // useful for forcing a baseline code path for e.g. web tests. const char kDisableSkiaRuntimeOpts[] = "disable-skia-runtime-opts"; // Disable smooth scrolling for testing. const char kDisableSmoothScrolling[] = "disable-smooth-scrolling"; // Disables the use of a 3D software rasterizer. const char kDisableSoftwareRasterizer[] = "disable-software-rasterizer"; // Disables the Web Speech API (both speech recognition and synthesis). const char kDisableSpeechAPI[] = "disable-speech-api"; // Disables the speech synthesis part of Web Speech API. const char kDisableSpeechSynthesisAPI[] = "disable-speech-synthesis-api"; // Disables adding the test certs in the network process. const char kDisableTestCerts[] = "disable-test-root-certs"; // Disable multithreaded GPU compositing of web content. const char kDisableThreadedCompositing[] = "disable-threaded-compositing"; // Disable multithreaded, compositor scrolling of web content. const char kDisableThreadedScrolling[] = "disable-threaded-scrolling"; // Disable V8 idle tasks. const char kDisableV8IdleTasks[] = "disable-v8-idle-tasks"; // Disables WebGL rendering into a scanout buffer for overlay support. const char kDisableWebGLImageChromium[] = "disable-webgl-image-chromium"; // Don't enforce the same-origin policy. (Used by people testing their sites.) const char kDisableWebSecurity[] = "disable-web-security"; // Disable rasterizer that writes directly to GPU memory associated with tiles. const char kDisableZeroCopy[] = "disable-zero-copy"; // Disable the video decoder from drawing directly to a texture. const char kDisableZeroCopyDxgiVideo[] = "disable-zero-copy-dxgi-video"; // Specifies if the |DOMAutomationController| needs to be bound in the // renderer. This binding happens on per-frame basis and hence can potentially // be a performance bottleneck. One should only enable it when automating dom // based tests. const char kDomAutomationController[] = "dom-automation"; // Disable antialiasing on 2d canvas clips const char kDisable2dCanvasClipAntialiasing[] = "disable-2d-canvas-clip-aa"; // Disable YUV image decoding for those formats and cases where it's supported. // Has no effect unless GPU rasterization is enabled. const char kDisableYUVImageDecoding[] = "disable-yuv-image-decoding"; // Logs Runtime Call Stats for Blink. --single-process also needs to be // used along with this for the stats to be logged. const char kDumpBlinkRuntimeCallStats[] = "dump-blink-runtime-call-stats"; // Enables LCD text. const char kEnableLCDText[] = "enable-lcd-text"; // Enable the creation of compositing layers when it would prevent LCD text. const char kEnablePreferCompositingToLCDText[] = "enable-prefer-compositing-to-lcd-text"; // Enable one or more Blink runtime-enabled features. // Use names from runtime_enabled_features.json5, separated by commas. // Applied before kDisableBlinkFeatures, and after other flags that change these // features. const char kEnableBlinkFeatures[] = "enable-blink-features"; // Enable native caret browsing, in which a moveable cursor is placed on a web // page, allowing a user to select and navigate through non-editable text using // just a keyboard. See https://crbug.com/977390 for links to i2i. const char kEnableCaretBrowsing[] = "enable-caret-browsing"; // Enables experimental WebAssembly features. const char kEnableExperimentalWebAssemblyFeatures[] = "enable-experimental-webassembly-features"; // Enables Web Platform features that are in development. const char kEnableExperimentalWebPlatformFeatures[] = "enable-experimental-web-platform-features"; // Disables all RuntimeEnabledFeatures that can be enabled via OriginTrials. const char kDisableOriginTrialControlledBlinkFeatures[] = "disable-origin-trial-controlled-blink-features"; // Specify that all compositor resources should be backed by GPU memory buffers. const char kEnableGpuMemoryBufferCompositorResources[] = "enable-gpu-memory-buffer-compositor-resources"; // Enable GpuMemoryBuffer backed VideoFrames. const char kEnableGpuMemoryBufferVideoFrames[] = "enable-gpu-memory-buffer-video-frames"; // When using CPU rasterizing generate low resolution tiling. Low res // tiles may be displayed during fast scrolls especially on slower devices. const char kEnableLowResTiling[] = "enable-low-res-tiling"; // Force logging to be enabled. Logging is disabled by default in release // builds. const char kEnableLogging[] = "enable-logging"; // Enables the type, downlinkMax attributes of the NetInfo API. Also, enables // triggering of change attribute of the NetInfo API when there is a change in // the connection type. const char kEnableNetworkInformationDownlinkMax[] = "enable-network-information-downlink-max"; // Disables the video decoder from drawing to an NV12 textures instead of ARGB. const char kDisableNv12DxgiVideo[] = "disable-nv12-dxgi-video"; // Enables testing features of the Plugin Placeholder. For internal use only. const char kEnablePluginPlaceholderTesting[] = "enable-plugin-placeholder-testing"; // Make the values returned to window.performance.memory more granular and more // up to date in shared worker. Without this flag, the memory information is // still available, but it is bucketized and updated less frequently. This flag // also applys to workers. const char kEnablePreciseMemoryInfo[] = "enable-precise-memory-info"; // Enables PrintBrowser mode, in which everything renders as though printed. const char kEnablePrintBrowser[] = "enable-print-browser"; // Enables RGBA_4444 textures. const char kEnableRGBA4444Textures[] = "enable-rgba-4444-textures"; // Set options to cache V8 data. (off, preparse data, or code) const char kV8CacheOptions[] = "v8-cache-options"; // If true the ServiceProcessLauncher is used to launch services. This allows // for service binaries to be loaded rather than using the utility process. This // is only useful for tests. const char kEnableServiceBinaryLauncher[] = "enable-service-binary-launcher"; // Enables the Skia benchmarking extension. const char kEnableSkiaBenchmarking[] = "enable-skia-benchmarking"; // On platforms that support it, enables smooth scroll animation. const char kEnableSmoothScrolling[] = "enable-smooth-scrolling"; // Enable spatial navigation const char kEnableSpatialNavigation[] = "enable-spatial-navigation"; // Enable CSS3 UI sequential navigation order and directional focus navigation const char kEnableCSSNavigation[] = "enable-css-navigation"; // Blocks all insecure requests from secure contexts, and prevents the user // from overriding that decision. const char kEnableStrictMixedContentChecking[] = "enable-strict-mixed-content-checking"; // Blocks insecure usage of a number of powerful features (device orientation, // for example) that we haven't yet deprecated for the web at large. const char kEnableStrictPowerfulFeatureRestrictions[] = "enable-strict-powerful-feature-restrictions"; // Feature flag to enable HTTPS subresource internal redirects to compressed // versions. const char kEnableSubresourceRedirect[] = "enable-subresource-redirect"; // Enabled threaded compositing for web tests. const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; // Enable tracing during the execution of browser tests. const char kEnableTracing[] = "enable-tracing"; // The filename to write the output of the test tracing to. const char kEnableTracingOutput[] = "enable-tracing-output"; // Enable screen capturing support for MediaStream API. const char kEnableUserMediaScreenCapturing[] = "enable-usermedia-screen-capturing"; // Enable the mode that uses zooming to implment device scale factor behavior. const char kEnableUseZoomForDSF[] = "enable-use-zoom-for-dsf"; // Enables the use of the @viewport CSS rule, which allows // pages to control aspects of their own layout. This also turns on touch-screen // pinch gestures. const char kEnableViewport[] = "enable-viewport"; // Enable the Vtune profiler support. const char kEnableVtune[] = "enable-vtune-support"; // Enable watchdog for detecting stuck processes const char kEnableWatchdog[] = "enable-watchdog"; // Enable the Web Authentication Testing API. // https://w3c.github.io/webauthn const char kEnableWebAuthTestingAPI[] = "enable-web-authentication-testing-api"; // Enable WebGL2 Compute context. const char kEnableWebGL2ComputeContext[] = "enable-webgl2-compute-context"; // Enables WebGL extensions not yet approved by the community. const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions"; // Enables WebGL rendering into a scanout buffer for overlay support. const char kEnableWebGLImageChromium[] = "enable-webgl-image-chromium"; // Enables interaction with virtual reality devices. const char kEnableWebVR[] = "enable-webvr"; // Enable rasterizer that writes directly to GPU memory associated with tiles. const char kEnableZeroCopy[] = "enable-zero-copy"; // Handle to the shared memory segment containing field trial state that is to // be shared between processes. The argument to this switch is the handle id // (pointer on Windows) as a string, followed by a comma, then the size of the // shared memory segment as a string. const char kFieldTrialHandle[] = "field-trial-handle"; // Define an alias root directory which is replaced with the replacement string // in file URLs. The format is "/alias=/replacement", which would turn // file:///alias/some/path.html into file:///replacement/some/path.html. const char kFileUrlPathAlias[] = "file-url-path-alias"; // Always use the Skia GPU backend for drawing layer tiles. Only valid with GPU // accelerated compositing + impl-side painting. Overrides the // kEnableGpuRasterization flag. const char kForceGpuRasterization[] = "force-gpu-rasterization"; // Disables OOP rasterization. Takes precedence over the enable flag. const char kDisableOopRasterization[] = "disable-oop-rasterization"; // Turns on out of process raster for the renderer whenever gpu raster // would have been used. Enables the chromium_raster_transport extension. const char kEnableOopRasterization[] = "enable-oop-rasterization"; // Turns on skia deferred display list for out of process raster. const char kEnableOopRasterizationDDL[] = "enable-oop-rasterization-ddl"; // The number of multisample antialiasing samples for GPU rasterization. // Requires MSAA support on GPU to have an effect. 0 disables MSAA. const char kGpuRasterizationMSAASampleCount[] = "gpu-rasterization-msaa-sample-count"; // Forces use of hardware overlay for fullscreen video playback. Useful for // testing the Android overlay fullscreen functionality on other platforms. const char kForceOverlayFullscreenVideo[] = "force-overlay-fullscreen-video"; // This forces pages to be loaded as presentation receivers. Useful for testing // behavior specific to presentation receivers. // Spec: https://www.w3.org/TR/presentation-api/#interface-presentationreceiver const char kForcePresentationReceiverForTesting[] = "force-presentation-receiver-for-testing"; // Force renderer accessibility to be on instead of enabling it on demand when // a screen reader is detected. The disable-renderer-accessibility switch // overrides this if present. const char kForceRendererAccessibility[] = "force-renderer-accessibility"; // For development / testing only. When running content_browsertests, // saves output of failing accessibility tests to their expectations files in // content/test/data/accessibility/, overwriting existing file content. const char kGenerateAccessibilityTestExpectations[] = "generate-accessibility-test-expectations"; // Extra command line options for launching the GPU process (normally used // for debugging). Use like renderer-cmd-prefix. const char kGpuLauncher[] = "gpu-launcher"; // Makes this process a GPU sub-process. const char kGpuProcess[] = "gpu-process"; // Starts the GPU sandbox before creating a GL context. const char kGpuSandboxStartEarly[] = "gpu-sandbox-start-early"; // Causes the GPU process to display a dialog on launch. const char kGpuStartupDialog[] = "gpu-startup-dialog"; // Hide selection handles on input when touch is enabled. const char kHideSelectionHandles[] = "hide-selection-handles"; // Start the renderer with an initial virtual time override specified in // seconds since the epoch. const char kInitialVirtualTime[] = "initial-virtual-time"; // Run the GPU process as a thread in the browser process. const char kInProcessGPU[] = "in-process-gpu"; // Overrides the timeout, in seconds, that a child process waits for a // connection from the browser before killing itself. const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; // Require dedicated processes for a set of origins, specified as a // comma-separated list. For example: // --isolate-origins=https://www.foo.com,https://www.bar.com const char kIsolateOrigins[] = "isolate-origins"; // Disable latest shipping ECMAScript 6 features. const char kDisableJavaScriptHarmonyShipping[] = "disable-javascript-harmony-shipping"; // Enables experimental Harmony (ECMAScript 6) features. const char kJavaScriptHarmony[] = "javascript-harmony"; // Specifies the flags passed to JS engine. const char kJavaScriptFlags[] = "js-flags"; // Flag to launch tests in the browser process. const char kLaunchAsBrowser[] = "as-browser"; // Overrides the Lite Page Subresource host. const char kLitePagesServerSubresourceHost[] = "litepage-server-subresource-host"; // Logs GPU control list decisions when enforcing blacklist rules. const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; // Sets the minimum log level. Valid values are from 0 to 3: // INFO = 0, WARNING = 1, LOG_ERROR = 2, LOG_FATAL = 3. const char kLoggingLevel[] = "log-level"; // Overrides the default file name to use for general-purpose logging (does not // affect which events are logged). const char kLogFile[] = "log-file"; // Resizes of the main frame are caused by changing between landscape and // portrait mode (i.e. Android) so the page should be rescaled to fit. const char kMainFrameResizesAreOrientationChanges[] = "main-frame-resizes-are-orientation-changes"; // Allows user to override maximum number of active WebGL contexts per // renderer process. const char kMaxActiveWebGLContexts[] = "max-active-webgl-contexts"; // Sets the maximium decoded image size limitation. const char kMaxDecodedImageSizeMb[] = "max-decoded-image-size-mb"; // Sets the width and height above which a composited layer will get tiled. const char kMaxUntiledLayerHeight[] = "max-untiled-layer-height"; const char kMaxUntiledLayerWidth[] = "max-untiled-layer-width"; // Indicates the utility process should run with a message loop type of UI. const char kMessageLoopTypeUi[] = "message-loop-type-ui"; // Set the default result for MockCertVerifier. This only works in test code. const char kMockCertVerifierDefaultResultForTesting[] = "mock-cert-verifier-default-result-for-testing"; // Use a Mojo-based LocalStorage implementation. const char kMojoLocalStorage[] = "mojo-local-storage"; // Sets the timeout seconds of the network-quiet timers in IdlenessDetector. // Used by embedders who want to change the timeout time in order to run web // contents on various embedded devices and changeable network bandwidths in // different regions. For example, it's useful when using FirstMeaningfulPaint // signal to dismiss a splash screen. const char kNetworkQuietTimeout[] = "network-quiet-timeout"; // Disables the use of a zygote process for forking child processes. Instead, // child processes will be forked and exec'd directly. Note that --no-sandbox // should also be used together with this flag because the sandbox needs the // zygote to work. const char kNoZygote[] = "no-zygote"; // Disables V8 mitigations for executing untrusted code. const char kNoV8UntrustedCodeMitigations[] = "no-v8-untrusted-code-mitigations"; // Number of worker threads used to rasterize content. const char kNumRasterThreads[] = "num-raster-threads"; // Override the behavior of plugin throttling for testing. // By default the throttler is only enabled for a hard-coded list of plugins. // Set the value to 'always' to always throttle every plugin instance. Set the // value to 'never' to disable throttling. const char kOverridePluginPowerSaverForTesting[] = "override-plugin-power-saver-for-testing"; // Override the default value for the 'passive' field in javascript // addEventListener calls. Values are defined as: // 'documentonlytrue' to set the default be true only for document level nodes. // 'true' to set the default to be true on all nodes (when not specified). // 'forcealltrue' to force the value on all nodes. const char kPassiveListenersDefault[] = "passive-listeners-default"; // Argument to the process type that indicates a PPAPI broker process type. const char kPpapiBrokerProcess[] = "ppapi-broker"; // "Command-line" arguments for the PPAPI Flash; used for debugging options. const char kPpapiFlashArgs[] = "ppapi-flash-args"; // Runs PPAPI (Pepper) plugins in-process. const char kPpapiInProcess[] = "ppapi-in-process"; // Specifies a command that should be used to launch the ppapi plugin process. // Useful for running the plugin process through purify or quantify. Ex: // --ppapi-plugin-launcher="path\to\purify /Run=yes" const char kPpapiPluginLauncher[] = "ppapi-plugin-launcher"; // Argument to the process type that indicates a PPAPI plugin process type. const char kPpapiPluginProcess[] = "ppapi"; // Causes the PPAPI sub process to display a dialog on launch. Be sure to use // --no-sandbox as well or the sandbox won't allow the dialog to display. const char kPpapiStartupDialog[] = "ppapi-startup-dialog"; // Enable the "Process Per Site" process model for all domains. This mode // consolidates same-site pages so that they share a single process. // // More details here: // - https://www.chromium.org/developers/design-documents/process-models // - The class comment in site_instance.h, listing the supported process models. // // IMPORTANT: This isn't to be confused with --site-per-process (which is about // isolation, not consolidation). You probably want the other one. const char kProcessPerSite[] = "process-per-site"; // Runs each set of script-connected tabs (i.e., a BrowsingInstance) in its own // renderer process. We default to using a renderer process for each // site instance (i.e., group of pages from the same registered domain with // script connections to each other). // TODO(creis): This flag is currently a no-op. We should refactor it to avoid // "unnecessary" process swaps for cross-site navigations but still swap when // needed for security (e.g., isolated origins). const char kProcessPerTab[] = "process-per-tab"; // The value of this switch determines whether the process is started as a // renderer or plugin host. If it's empty, it's the browser. const char kProcessType[] = "type"; // Uses a specified proxy server, overrides system settings. This switch only // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the // highest priority. // TODO(yzshen): Move this switch back to chrome/common/chrome_switches.{h,cc}, // once the network service is able to access the corresponding setting via the // pref service. const char kProxyServer[] = "proxy-server"; // Enables or disables pull-to-refresh gesture in response to vertical // overscroll. // Set the value to '0' to disable the feature, set to '1' to enable it for both // touchpad and touchscreen, and set to '2' to enable it only for touchscreen. // Defaults to disabled. const char kPullToRefresh[] = "pull-to-refresh"; // Register Pepper plugins (see pepper_plugin_list.cc for its format). const char kRegisterPepperPlugins[] = "register-pepper-plugins"; // Enables remote debug over stdio pipes [in=3, out=4]. // Optionally, specifies the format for the protocol messages, can be either // "JSON" (the default) or "CBOR". const char kRemoteDebuggingPipe[] = "remote-debugging-pipe"; // Enables remote debug over HTTP on the specified port. const char kRemoteDebuggingPort[] = "remote-debugging-port"; const char kRendererClientId[] = "renderer-client-id"; // The contents of this flag are prepended to the renderer command line. // Useful values might be "valgrind" or "xterm -e gdb --args". const char kRendererCmdPrefix[] = "renderer-cmd-prefix"; // Causes the process to run as renderer instead of as browser. const char kRendererProcess[] = "renderer"; // Overrides the default/calculated limit to the number of renderer processes. // Very high values for this setting can lead to high memory/resource usage // or instability. const char kRendererProcessLimit[] = "renderer-process-limit"; // Causes the renderer process to display a dialog on launch. Passing this flag // also adds service_manager::kNoSandbox on Windows non-official builds, since // that's needed to show a dialog. const char kRendererStartupDialog[] = "renderer-startup-dialog"; // Manual tests only run when --run-manual is specified. This allows writing // tests that don't run automatically but are still in the same test binary. // This is useful so that a team that wants to run a few tests doesn't have to // add a new binary that must be compiled on all builds. const char kRunManualTestsFlag[] = "run-manual"; // Causes the process to run as a sandbox IPC subprocess. const char kSandboxIPCProcess[] = "sandbox-ipc"; // Visibly render a border around layout shift rects in the web page to help // debug and study layout shifts. const char kShowLayoutShiftRegions[] = "show-layout-shift-regions"; // Visibly render a border around paint rects in the web page to help debug // and study painting behavior. const char kShowPaintRects[] = "show-paint-rects"; // Runs the renderer and plugins in the same process as the browser const char kSingleProcess[] = "single-process"; // Enforces a one-site-per-process security policy: // * Each renderer process, for its whole lifetime, is dedicated to rendering // pages for just one site. // * Thus, pages from different sites are never in the same process. // * A renderer process's access rights are restricted based on its site. // * All cross-site navigations force process swaps. // * <iframe>s are rendered out-of-process whenever the src= is cross-site. // // More details here: // - https://www.chromium.org/developers/design-documents/site-isolation // - https://www.chromium.org/developers/design-documents/process-models // - The class comment in site_instance.h, listing the supported process models. // // IMPORTANT: this isn't to be confused with --process-per-site (which is about // process consolidation, not isolation). You probably want this one. const char kSitePerProcess[] = "site-per-process"; // Disables site isolation. // // Note that the opt-in (to site-per-process, isolate-origins, etc.) via // enterprise policy and/or cmdline takes precedence over the // kDisableSiteIsolation switch (i.e. the opt-in takes effect despite potential // presence of kDisableSiteIsolation switch). // // Note that for historic reasons the name of the switch misleadingly mentions // "trials", but the switch also disables the default site isolation that ships // on desktop since M67. The name of the switch is preserved for // backcompatibility of chrome://flags. const char kDisableSiteIsolation[] = "disable-site-isolation-trials"; // Specifies if the browser should start in fullscreen mode, like if the user // had pressed F11 right after startup. const char kStartFullscreen[] = "start-fullscreen"; // Specifies if the |StatsCollectionController| needs to be bound in the // renderer. This binding happens on per-frame basis and hence can potentially // be a performance bottleneck. One should only enable it when running a test // that needs to access the provided statistics. const char kStatsCollectionController[] = "enable-stats-collection-bindings"; // Specifies the max number of bytes that should be used by the skia font cache. // If the cache needs to allocate more, skia will purge previous entries. const char kSkiaFontCacheLimitMb[] = "skia-font-cache-limit-mb"; // Specifies the max number of bytes that should be used by the skia resource // cache. The previous entries are purged from the cache when the memory useage // exceeds this limit. const char kSkiaResourceCacheLimitMb[] = "skia-resource-cache-limit-mb"; // Type of the current test harness ("browser" or "ui"). const char kTestType[] = "test-type"; // Enable support for touch event feature detection. const char kTouchEventFeatureDetection[] = "touch-events"; // The values the kTouchEventFeatureDetection switch may have, as in // --touch-events=disabled. // auto: enabled at startup when an attached touchscreen is present. const char kTouchEventFeatureDetectionAuto[] = "auto"; // enabled: touch events always enabled. const char kTouchEventFeatureDetectionEnabled[] = "enabled"; // disabled: touch events are disabled. const char kTouchEventFeatureDetectionDisabled[] = "disabled"; // Controls how text selection granularity changes when touch text selection // handles are dragged. Should be "character" or "direction". If not specified, // the platform default is used. const char kTouchTextSelectionStrategy[] = "touch-selection-strategy"; // Accepts specified file URL of a trustable BundledExchanges file. This flag // should be used only for testing purpose. const char kTrustableBundledExchangesFileUrl[] = "trustable-bundled-exchanges-file-url"; // Replaces the existing codecs supported in peer connection with a single fake // codec entry that create a fake video encoder and decoder. const char kUseFakeCodecForPeerConnection[] = "use-fake-codec-for-peer-connection"; // Bypass the media stream infobar by selecting the default device for media // streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream. const char kUseFakeUIForMediaStream[] = "use-fake-ui-for-media-stream"; // Texture target for CHROMIUM_image backed video frame textures. const char kVideoImageTextureTarget[] = "video-image-texture-target"; // Set when Chromium should use a mobile user agent. const char kUseMobileUserAgent[] = "use-mobile-user-agent"; // Use the MockCertVerifier. This only works in test code. const char kUseMockCertVerifierForTesting[] = "use-mock-cert-verifier-for-testing"; // The contents of this flag are prepended to the utility process command line. // Useful values might be "valgrind" or "xterm -e gdb --args". const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; // Causes the process to run as a utility subprocess. const char kUtilityProcess[] = "utility"; // Causes the utility process to display a dialog on launch. const char kUtilityStartupDialog[] = "utility-startup-dialog"; // In debug builds, asserts that the stream of input events is valid. const char kValidateInputEventStream[] = "validate-input-event-stream"; // Will add kWaitForDebugger to every child processes. If a value is passed, it // will be used as a filter to determine if the child process should have the // kWaitForDebugger flag passed on or not. const char kWaitForDebuggerChildren[] = "wait-for-debugger-children"; // Flag used by WebUI test runners to wait for debugger to be attached. const char kWaitForDebuggerWebUI[] = "wait-for-debugger-webui"; // Knobs for configuring browser/renderer watchdog period and timeout const char kWatchdogBrowserPeriod[] = "watchdog-browser-period"; const char kWatchdogBrowserTimeout[] = "watchdog-browser-timeout"; const char kWatchdogRendererPeriod[] = "watchdog-renderer-period"; const char kWatchdogRendererTimeout[] = "watchdog-renderer-timeout"; // Set the antialiasing method used for webgl. (none, explicit, implicit, or // screenspace) const char kWebglAntialiasingMode[] = "webgl-antialiasing-mode"; // Set a default sample count for webgl if msaa is enabled. const char kWebglMSAASampleCount[] = "webgl-msaa-sample-count"; // Disables encryption of RTP Media for WebRTC. When Chrome embeds Content, it // ignores this switch on its stable and beta channels. const char kDisableWebRtcEncryption[] = "disable-webrtc-encryption"; // Disables HW decode acceleration for WebRTC. const char kDisableWebRtcHWDecoding[] = "disable-webrtc-hw-decoding"; // Disables HW encode acceleration for WebRTC. const char kDisableWebRtcHWEncoding[] = "disable-webrtc-hw-encoding"; // Enables negotiation of GCM cipher suites from RFC 7714 for SRTP in WebRTC. // See https://tools.ietf.org/html/rfc7714 for further information. const char kEnableWebRtcSrtpAesGcm[] = "enable-webrtc-srtp-aes-gcm"; // Enables negotiation of encrypted header extensions from RFC 6904 for SRTP // in WebRTC. // See https://tools.ietf.org/html/rfc6904 for further information. // TODO(https://crbug.com/954201): Remove this. const char kEnableWebRtcSrtpEncryptedHeaders[] = "enable-webrtc-srtp-encrypted-headers"; // Enables Origin header in Stun messages for WebRTC. const char kEnableWebRtcStunOrigin[] = "enable-webrtc-stun-origin"; // Enforce IP Permission check. TODO(guoweis): Remove this once the feature is // not under finch and becomes the default. const char kEnforceWebRtcIPPermissionCheck[] = "enforce-webrtc-ip-permission-check"; // Override WebRTC IP handling policy to mimic the behavior when WebRTC IP // handling policy is specified in Preferences. const char kForceWebRtcIPHandlingPolicy[] = "force-webrtc-ip-handling-policy"; // Override the maximum framerate as can be specified in calls to getUserMedia. // This flag expects a value. Example: --max-gum-fps=17.5 const char kWebRtcMaxCaptureFramerate[] = "max-gum-fps"; // Configure the maximum CPU time percentage of a single core that can be // consumed for desktop capturing. Default is 50. Set 100 to disable the // throttling of the capture. const char kWebRtcMaxCpuConsumptionPercentage[] = "webrtc-max-cpu-consumption-percentage"; // Renderer process parameter for WebRTC Stun probe trial to determine the // interval. Please see SetupStunProbeTrial in // chrome_browser_field_trials_desktop.cc for more detail. const char kWebRtcStunProbeTrialParameter[] = "webrtc-stun-probe-trial"; // Enable capture and local storage of WebRTC event logs without visiting // chrome://webrtc-internals. This is useful for automated testing. It accepts // the path to which the local logs would be stored. Disabling is not possible // without restarting the browser and relaunching without this flag. const char kWebRtcLocalEventLogging[] = "webrtc-event-logging"; #if defined(OS_ANDROID) // Disable Media Session API const char kDisableMediaSessionAPI[] = "disable-media-session-api"; // Disable overscroll edge effects like those found in Android views. const char kDisableOverscrollEdgeEffect[] = "disable-overscroll-edge-effect"; // Disable the pull-to-refresh effect when vertically overscrolling content. const char kDisablePullToRefreshEffect[] = "disable-pull-to-refresh-effect"; // Disable the locking feature of the screen orientation API. const char kDisableScreenOrientationLock[] = "disable-screen-orientation-lock"; // Just like kDisableSiteIsolation, but doesn't show the "stability and security // will suffer" butter bar warning. const char kDisableSiteIsolationForPolicy[] = "disable-site-isolation-for-policy"; // Disable timeouts that may cause the browser to die when running slowly. This // is useful if running with profiling (such as debug malloc). const char kDisableTimeoutsForProfiling[] = "disable-timeouts-for-profiling"; // Enable inverting of selection handles so that they are not clipped by the // viewport boundaries. const char kEnableAdaptiveSelectionHandleOrientation[] = "enable-adaptive-selection-handle-orientation"; // Enable drag manipulation of longpress-triggered text selections. const char kEnableLongpressDragSelection[] = "enable-longpress-drag-selection"; // The telephony region (ISO country code) to use in phone number detection. const char kNetworkCountryIso[] = "network-country-iso"; // Enables remote debug over HTTP on the specified socket name. const char kRemoteDebuggingSocketName[] = "remote-debugging-socket-name"; // Block ChildProcessMain thread of the renderer's ChildProcessService until a // Java debugger is attached. const char kRendererWaitForJavaDebugger[] = "renderer-wait-for-java-debugger"; #endif // Enable exploring by mouse feature for accessibility. // This feature read out describing the node under the mouse cursor on screen // when accessiblity is enabled. const char kEnableAccessibilityExploreByMouse[] = "enable-accessibility-explore-by-mouse"; // Enable the experimental Accessibility Object Model APIs in development. const char kEnableAccessibilityObjectModel[] = "enable-accessibility-object-model"; // Enable the aggressive flushing of DOM Storage to minimize data loss. const char kEnableAggressiveDOMStorageFlushing[] = "enable-aggressive-domstorage-flushing"; // Enable indication that browser is controlled by automation. const char kEnableAutomation[] = "enable-automation"; #if defined(OS_LINUX) && !defined(OS_CHROMEOS) // Allows sending text-to-speech requests to speech-dispatcher, a common // Linux speech service. Because it's buggy, the user must explicitly // enable it so that visiting a random webpage can't cause instability. const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; #endif #if defined(OS_WIN) // /prefetch:# arguments to use when launching various process types. It has // been observed that when file reads are consistent for 3 process launches with // the same /prefetch:# argument, the Windows prefetcher starts issuing reads in // batch at process launch. Because reads depend on the process type, the // prefetcher wouldn't be able to observe consistent reads if no /prefetch:# // arguments were used. Note that the browser process has no /prefetch:# // argument; as such all other processes must have one in order to avoid // polluting its profile. Note: # must always be in [1, 8]; otherwise it is // ignored by the Windows prefetcher. const char kPrefetchArgumentRenderer[] = "/prefetch:1"; const char kPrefetchArgumentGpu[] = "/prefetch:2"; const char kPrefetchArgumentPpapi[] = "/prefetch:3"; const char kPrefetchArgumentPpapiBroker[] = "/prefetch:4"; // /prefetch:5, /prefetch:6 and /prefetch:7 are reserved for content embedders // and are not to be used by content itself. // /prefetch:# argument shared by all process types that don't have their own. // It is likely that the prefetcher won't work for these process types as it // won't be able to observe consistent file reads across launches. However, // having a valid prefetch argument for these process types is required to // prevent them from interfering with the prefetch profile of the browser // process. const char kPrefetchArgumentOther[] = "/prefetch:8"; // Device scale factor passed to certain processes like renderers, etc. const char kDeviceScaleFactor[] = "device-scale-factor"; // Disable the Legacy Window which corresponds to the size of the WebContents. const char kDisableLegacyIntermediateWindow[] = "disable-legacy-window"; // Enables H264 HW decode acceleration for WebRtc on Win 7. const char kEnableWin7WebRtcHWH264Decoding[] = "enable-win7-webrtc-hw-h264-decoding"; // DirectWrite FontCache is shared by browser to renderers using shared memory. // This switch allows us to pass the shared memory handle to the renderer. const char kFontCacheSharedHandle[] = "font-cache-shared-handle"; // The boolean value (0/1) of FontRenderParams::antialiasing to be passed to // Ppapi processes. const char kPpapiAntialiasedTextEnabled[] = "ppapi-antialiased-text-enabled"; // The enum value of FontRenderParams::subpixel_rendering to be passed to Ppapi // processes. const char kPpapiSubpixelRenderingSetting[] = "ppapi-subpixel-rendering-setting"; // Causes the second GPU process used for gpu info collection to display a // dialog on launch. const char kGpu2StartupDialog[] = "gpu2-startup-dialog"; #endif #if defined(ENABLE_IPC_FUZZER) // Dumps IPC messages sent from renderer processes to the browser process to // the given directory. Used primarily to gather samples for IPC fuzzing. const char kIpcDumpDirectory[] = "ipc-dump-directory"; // Specifies the testcase used by the IPC fuzzer. const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; #endif #if defined(USE_NEVA_MEDIA) // The command line parameter indicating that the maximum number of activated // media players is limited. That means only provided number of media players // can play media at the same time. Other media players will be suspended. // Note that some custom media players are allowed to play media at the same // time specially, when media state manager expects that these not use media // resource. const char kMaxActivatedMediaPlayers[] = "max-activated-media-players"; const char kMaxTimeupdateEventFrequency[] = "max-timeupdate-event-frequency"; #endif // Don't dump stuff here, follow the same order as the header. } // namespace switches
[ "lokeshkumar.goel@lge.com" ]
lokeshkumar.goel@lge.com
e2cd19265fc572dc1b2fafcf093b16a2cf18c48a
2f10f807d3307b83293a521da600c02623cdda82
/deps/boost/win/debug/include/boost/compute/detail/assert_cl_success.hpp
113752810d2aa0c75a0f1cba3f135c2b05e28afa
[]
no_license
xpierrohk/dpt-rp1-cpp
2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e
643d053983fce3e6b099e2d3c9ab8387d0ea5a75
refs/heads/master
2021-05-23T08:19:48.823198
2019-07-26T17:35:28
2019-07-26T17:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
128
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:b59b724c411e5ba16673b3a6e5a7782a7f27285fa355294b9607a390883fc60a size 851
[ "YLiLarry@gmail.com" ]
YLiLarry@gmail.com
46d74cdfeabfc7e592a313da24bb1a4104656eb8
408b353395e065131f0f575aa62c69a9cedda06e
/isgw/comm/ibc_oper_base.cpp
89b8145605e309a9fd66cf44ce1d045de5ee4563
[]
no_license
cytu0911/isgw
1104718671c60d3c70198de34ba7dffcc50a9e80
cbddbee4685f35506c6152e26bd89466102557e7
refs/heads/master
2020-12-03T09:14:09.440717
2015-01-22T11:50:50
2015-01-22T11:50:50
38,683,603
3
4
null
2015-07-07T11:32:53
2015-07-07T11:32:53
null
UTF-8
C++
false
false
965
cpp
#include "ibc_oper_base.h" int IBCOperBase::process(QModeMsg& req, char* ack, int& ack_len) { ACE_DEBUG((LM_DEBUG, "[%D] IBCOperBase start to process msg\n")); sprintf(ack, "%s|", (*(req.get_map()))["info"].c_str()); return 0; } int IBCOperBase::merge(IBCRValue& rvalue, const char* new_item) { ACE_DEBUG((LM_DEBUG, "[%D] IBCOperBase start to merge msg\n")); if (new_item == NULL || strlen(new_item) == 0) { return -1; } strncat(rvalue.msg, new_item, sizeof(rvalue.msg)-strlen(rvalue.msg)); ACE_DEBUG((LM_DEBUG, "[%D] IBCOperBase merge msg succ" ",cnum=%d" "\n" , rvalue.cnum )); return 0; } int IBCOperBase::end(IBCRValue& rvalue) { ACE_DEBUG((LM_DEBUG, "[%D] IBCOperBase start to end\n")); //to do what you need ACE_DEBUG((LM_DEBUG, "[%D] IBCOperBase end succ" ",cnum=%d" "\n" , rvalue.cnum )); return 0; }
[ "awayfang@awayfang-PC1.tencent.com" ]
awayfang@awayfang-PC1.tencent.com
04ba3d74f924a40ad968914e6d01dcd6c5c924f1
9ed21a220915236b2b85791ce5f25abd9a33c94e
/xfa/fwl/core/ifwl_listbox.h
5912656ac55b312241ee343399faaa08f30c7e58
[ "BSD-3-Clause" ]
permissive
SnowCicala/pdfium
c63e57673687a57e1834eb1b75c3b6f492fac139
d8f710cedd62c1d28beee15d7dc3d31ddd148437
refs/heads/master
2020-09-04T23:56:26.061470
2016-11-20T09:00:29
2016-11-20T09:00:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,048
h
// Copyright 2014 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef XFA_FWL_CORE_IFWL_LISTBOX_H_ #define XFA_FWL_CORE_IFWL_LISTBOX_H_ #include <memory> #include "xfa/fwl/core/cfwl_event.h" #include "xfa/fwl/core/cfwl_listitem.h" #include "xfa/fwl/core/cfwl_widgetproperties.h" #include "xfa/fwl/core/ifwl_dataprovider.h" #include "xfa/fwl/core/ifwl_edit.h" #include "xfa/fwl/core/ifwl_listbox.h" #include "xfa/fwl/core/ifwl_widget.h" #define FWL_STYLEEXT_LTB_MultiSelection (1L << 0) #define FWL_STYLEEXT_LTB_ShowScrollBarAlaways (1L << 2) #define FWL_STYLEEXT_LTB_MultiColumn (1L << 3) #define FWL_STYLEEXT_LTB_LeftAlign (0L << 4) #define FWL_STYLEEXT_LTB_CenterAlign (1L << 4) #define FWL_STYLEEXT_LTB_RightAlign (2L << 4) #define FWL_STYLEEXT_LTB_MultiLine (1L << 6) #define FWL_STYLEEXT_LTB_OwnerDraw (1L << 7) #define FWL_STYLEEXT_LTB_Icon (1L << 8) #define FWL_STYLEEXT_LTB_Check (1L << 9) #define FWL_STYLEEXT_LTB_AlignMask (3L << 4) #define FWL_STYLEEXT_LTB_ShowScrollBarFocus (1L << 10) #define FWL_ITEMSTATE_LTB_Selected (1L << 0) #define FWL_ITEMSTATE_LTB_Focused (1L << 1) #define FWL_ITEMSTATE_LTB_Checked (1L << 2) class CFWL_MsgKillFocus; class CFWL_MsgMouse; class CFWL_MsgMouseWheel; class CFX_DIBitmap; class IFWL_ListBoxDP : public IFWL_DataProvider { public: virtual int32_t CountItems(const IFWL_Widget* pWidget) const = 0; virtual CFWL_ListItem* GetItem(const IFWL_Widget* pWidget, int32_t nIndex) const = 0; virtual int32_t GetItemIndex(IFWL_Widget* pWidget, CFWL_ListItem* pItem) = 0; virtual uint32_t GetItemStyles(IFWL_Widget* pWidget, CFWL_ListItem* pItem) = 0; virtual void GetItemText(IFWL_Widget* pWidget, CFWL_ListItem* pItem, CFX_WideString& wsText) = 0; virtual void GetItemRect(IFWL_Widget* pWidget, CFWL_ListItem* pItem, CFX_RectF& rtItem) = 0; virtual void* GetItemData(IFWL_Widget* pWidget, CFWL_ListItem* pItem) = 0; virtual void SetItemStyles(IFWL_Widget* pWidget, CFWL_ListItem* pItem, uint32_t dwStyle) = 0; virtual void SetItemRect(IFWL_Widget* pWidget, CFWL_ListItem* pItem, const CFX_RectF& rtItem) = 0; virtual CFX_DIBitmap* GetItemIcon(IFWL_Widget* pWidget, CFWL_ListItem* pItem) = 0; virtual void GetItemCheckRect(IFWL_Widget* pWidget, CFWL_ListItem* pItem, CFX_RectF& rtCheck) = 0; virtual void SetItemCheckRect(IFWL_Widget* pWidget, CFWL_ListItem* pItem, const CFX_RectF& rtCheck) = 0; virtual uint32_t GetItemCheckState(IFWL_Widget* pWidget, CFWL_ListItem* pItem) = 0; virtual void SetItemCheckState(IFWL_Widget* pWidget, CFWL_ListItem* pItem, uint32_t dwCheckState) = 0; }; class IFWL_ListBox : public IFWL_Widget { public: IFWL_ListBox(const IFWL_App* app, std::unique_ptr<CFWL_WidgetProperties> properties, IFWL_Widget* pOuter); ~IFWL_ListBox() override; // IFWL_Widget FWL_Type GetClassID() const override; void GetWidgetRect(CFX_RectF& rect, bool bAutoSize = false) override; void Update() override; FWL_WidgetHit HitTest(FX_FLOAT fx, FX_FLOAT fy) override; void DrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix = nullptr) override; void SetThemeProvider(IFWL_ThemeProvider* pThemeProvider) override; void OnProcessMessage(CFWL_Message* pMessage) override; void OnProcessEvent(CFWL_Event* pEvent) override; void OnDrawWidget(CFX_Graphics* pGraphics, const CFX_Matrix* pMatrix) override; int32_t CountSelItems(); CFWL_ListItem* GetSelItem(int32_t nIndexSel); int32_t GetSelIndex(int32_t nIndex); void SetSelItem(CFWL_ListItem* hItem, bool bSelect = true); void GetItemText(CFWL_ListItem* hItem, CFX_WideString& wsText); FX_FLOAT GetItemHeight() const { return m_fItemHeight; } FX_FLOAT CalcItemHeight(); protected: CFWL_ListItem* GetItem(CFWL_ListItem* hItem, uint32_t dwKeyCode); void SetSelection(CFWL_ListItem* hStart, CFWL_ListItem* hEnd, bool bSelected); CFWL_ListItem* GetItemAtPoint(FX_FLOAT fx, FX_FLOAT fy); bool ScrollToVisible(CFWL_ListItem* hItem); void InitScrollBar(bool bVert = true); bool IsShowScrollBar(bool bVert); IFWL_ScrollBar* GetVertScrollBar() const { return m_pVertScrollBar.get(); } const CFX_RectF& GetRTClient() const { return m_rtClient; } private: void SetSelectionDirect(CFWL_ListItem* hItem, bool bSelect); bool IsItemSelected(CFWL_ListItem* hItem); void ClearSelection(); void SelectAll(); CFWL_ListItem* GetFocusedItem(); void SetFocusItem(CFWL_ListItem* hItem); bool GetItemCheckRect(CFWL_ListItem* hItem, CFX_RectF& rtCheck); bool SetItemChecked(CFWL_ListItem* hItem, bool bChecked); bool GetItemChecked(CFWL_ListItem* hItem); void DrawBkground(CFX_Graphics* pGraphics, IFWL_ThemeProvider* pTheme, const CFX_Matrix* pMatrix = nullptr); void DrawItems(CFX_Graphics* pGraphics, IFWL_ThemeProvider* pTheme, const CFX_Matrix* pMatrix = nullptr); void DrawItem(CFX_Graphics* pGraphics, IFWL_ThemeProvider* pTheme, CFWL_ListItem* hItem, int32_t Index, const CFX_RectF& rtItem, const CFX_Matrix* pMatrix = nullptr); void DrawStatic(CFX_Graphics* pGraphics, IFWL_ThemeProvider* pTheme); CFX_SizeF CalcSize(bool bAutoSize = false); void GetItemSize(CFX_SizeF& size, CFWL_ListItem* hItem, FX_FLOAT fWidth, FX_FLOAT fHeight, bool bAutoSize = false); FX_FLOAT GetMaxTextWidth(); FX_FLOAT GetScrollWidth(); void OnFocusChanged(CFWL_Message* pMsg, bool bSet = true); void OnLButtonDown(CFWL_MsgMouse* pMsg); void OnLButtonUp(CFWL_MsgMouse* pMsg); void OnMouseWheel(CFWL_MsgMouseWheel* pMsg); void OnKeyDown(CFWL_MsgKey* pMsg); void OnVK(CFWL_ListItem* hItem, bool bShift, bool bCtrl); bool OnScroll(IFWL_ScrollBar* pScrollBar, FWL_SCBCODE dwCode, FX_FLOAT fPos); CFX_RectF m_rtClient; CFX_RectF m_rtStatic; CFX_RectF m_rtConent; std::unique_ptr<IFWL_ScrollBar> m_pHorzScrollBar; std::unique_ptr<IFWL_ScrollBar> m_pVertScrollBar; uint32_t m_dwTTOStyles; int32_t m_iTTOAligns; CFWL_ListItem* m_hAnchor; FX_FLOAT m_fItemHeight; FX_FLOAT m_fScorllBarWidth; bool m_bLButtonDown; IFWL_ThemeProvider* m_pScrollBarTP; }; #endif // XFA_FWL_CORE_IFWL_LISTBOX_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
2a2aef31b4b4877ab8ec5ba4c94af338ff788ccb
ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c
/out/release/gen/third_party/blink/public/mojom/devtools/devtools_agent.mojom-forward.h
38dbf4dfad114107629284a972d9b3278f6b7929
[ "BSD-3-Clause" ]
permissive
xueqiya/chromium_src
5d20b4d3a2a0251c063a7fb9952195cda6d29e34
d4aa7a8f0e07cfaa448fcad8c12b29242a615103
refs/heads/main
2022-07-30T03:15:14.818330
2021-01-16T16:47:22
2021-01-16T16:47:22
330,115,551
1
0
null
null
null
null
UTF-8
C++
false
false
4,010
h
// third_party/blink/public/mojom/devtools/devtools_agent.mojom-forward.h is auto generated by mojom_bindings_generator.py, do not edit // Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_PUBLIC_MOJOM_DEVTOOLS_DEVTOOLS_AGENT_MOJOM_FORWARD_H_ #define THIRD_PARTY_BLINK_PUBLIC_MOJOM_DEVTOOLS_DEVTOOLS_AGENT_MOJOM_FORWARD_H_ #include "mojo/public/cpp/bindings/struct_forward.h" #include "mojo/public/cpp/bindings/deprecated_interface_types_forward.h" #include "mojo/public/interfaces/bindings/native_struct.mojom-forward.h" namespace blink { namespace mojom { class DevToolsMessageDataView; class DevToolsSessionStateDataView; class DevToolsMessage; using DevToolsMessagePtr = mojo::StructPtr<DevToolsMessage>; class DevToolsSessionState; using DevToolsSessionStatePtr = mojo::StructPtr<DevToolsSessionState>; class DevToolsAgent; using DevToolsAgentPtr = mojo::InterfacePtr<DevToolsAgent>; using DevToolsAgentPtrInfo = mojo::InterfacePtrInfo<DevToolsAgent>; using ThreadSafeDevToolsAgentPtr = mojo::ThreadSafeInterfacePtr<DevToolsAgent>; using DevToolsAgentRequest = mojo::InterfaceRequest<DevToolsAgent>; using DevToolsAgentAssociatedPtr = mojo::AssociatedInterfacePtr<DevToolsAgent>; using ThreadSafeDevToolsAgentAssociatedPtr = mojo::ThreadSafeAssociatedInterfacePtr<DevToolsAgent>; using DevToolsAgentAssociatedPtrInfo = mojo::AssociatedInterfacePtrInfo<DevToolsAgent>; using DevToolsAgentAssociatedRequest = mojo::AssociatedInterfaceRequest<DevToolsAgent>; class DevToolsAgentHost; using DevToolsAgentHostPtr = mojo::InterfacePtr<DevToolsAgentHost>; using DevToolsAgentHostPtrInfo = mojo::InterfacePtrInfo<DevToolsAgentHost>; using ThreadSafeDevToolsAgentHostPtr = mojo::ThreadSafeInterfacePtr<DevToolsAgentHost>; using DevToolsAgentHostRequest = mojo::InterfaceRequest<DevToolsAgentHost>; using DevToolsAgentHostAssociatedPtr = mojo::AssociatedInterfacePtr<DevToolsAgentHost>; using ThreadSafeDevToolsAgentHostAssociatedPtr = mojo::ThreadSafeAssociatedInterfacePtr<DevToolsAgentHost>; using DevToolsAgentHostAssociatedPtrInfo = mojo::AssociatedInterfacePtrInfo<DevToolsAgentHost>; using DevToolsAgentHostAssociatedRequest = mojo::AssociatedInterfaceRequest<DevToolsAgentHost>; class DevToolsSession; using DevToolsSessionPtr = mojo::InterfacePtr<DevToolsSession>; using DevToolsSessionPtrInfo = mojo::InterfacePtrInfo<DevToolsSession>; using ThreadSafeDevToolsSessionPtr = mojo::ThreadSafeInterfacePtr<DevToolsSession>; using DevToolsSessionRequest = mojo::InterfaceRequest<DevToolsSession>; using DevToolsSessionAssociatedPtr = mojo::AssociatedInterfacePtr<DevToolsSession>; using ThreadSafeDevToolsSessionAssociatedPtr = mojo::ThreadSafeAssociatedInterfacePtr<DevToolsSession>; using DevToolsSessionAssociatedPtrInfo = mojo::AssociatedInterfacePtrInfo<DevToolsSession>; using DevToolsSessionAssociatedRequest = mojo::AssociatedInterfaceRequest<DevToolsSession>; class DevToolsSessionHost; using DevToolsSessionHostPtr = mojo::InterfacePtr<DevToolsSessionHost>; using DevToolsSessionHostPtrInfo = mojo::InterfacePtrInfo<DevToolsSessionHost>; using ThreadSafeDevToolsSessionHostPtr = mojo::ThreadSafeInterfacePtr<DevToolsSessionHost>; using DevToolsSessionHostRequest = mojo::InterfaceRequest<DevToolsSessionHost>; using DevToolsSessionHostAssociatedPtr = mojo::AssociatedInterfacePtr<DevToolsSessionHost>; using ThreadSafeDevToolsSessionHostAssociatedPtr = mojo::ThreadSafeAssociatedInterfacePtr<DevToolsSessionHost>; using DevToolsSessionHostAssociatedPtrInfo = mojo::AssociatedInterfacePtrInfo<DevToolsSessionHost>; using DevToolsSessionHostAssociatedRequest = mojo::AssociatedInterfaceRequest<DevToolsSessionHost>; } // namespace mojom } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_MOJOM_DEVTOOLS_DEVTOOLS_AGENT_MOJOM_FORWARD_H_
[ "xueqi@zjmedia.net" ]
xueqi@zjmedia.net
edbe54c7c683d6870dec1502e9b619a4aa4560f9
740f73dc663636491fdb7ca707b9c908b15eb507
/macOS/Frameworks/CoreMotion/2368.3.3/CDStructures.h
2ecc355bb13e13d53cd83a09838c3c8f3fdb67b3
[]
no_license
samyk/macOS_headers
33280e3c57bb4053786e59d5b4e26a2cd6f2539d
5f28802b4a41443017aeb7fe8c4b2f68329107ba
refs/heads/master
2022-11-11T14:34:01.732364
2020-06-22T22:18:36
2020-06-22T22:18:36
274,790,617
9
1
null
2020-06-24T23:38:30
2020-06-24T23:38:30
null
UTF-8
C++
false
false
9,240
h
// // Generated by class-dump 3.5 (64 bit) (Debug version compiled Jun 9 2015 22:53:21). // // class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2014 by Steve Nygard. // #pragma mark Blocks typedef void (^CDUnknownBlockType)(void); // return type and parameters are unknown #pragma mark Named Structures struct AccelUnpacker { char *fData; unsigned int fBitsLeft; unsigned char fPartial; unsigned long long fTimestampLast; long long fTimestampLastDelta; int fSampleLast[3]; }; struct CLCallbackDropManager { CDUnknownFunctionPointerType *_field1; struct shared_ptr<int> _field2; }; struct CLConnectionClient { id _field1; struct CLCallbackDropManager _field2; struct shared_ptr<CLConnectionClientInternal> _field3; struct CLConnectionClientNotificationContext *_field4; }; struct CLConnectionClientInternal; struct CLConnectionClientNotificationContext; struct CLConnectionMessage; struct CLDeviceMotionLiteService; struct CLElevationChangeEntry { double _field1; double _field2; unsigned int _field3; unsigned int _field4; int _field5; double _field6; int _field7; int _field8; float _field9; unsigned char _field10; unsigned short _field11; float _field12; }; struct CLMetMinute { double _field1; double _field2; }; struct CLMotionActivity { int type; int confidence; int mountedState; int mountedConfidence; _Bool isStanding; float tilt; double timestamp; _Bool isVehicleConnected; int exitState; double estExitTime; double startTime; int rawType; int rawConfidence; struct { unsigned int motionHint:1; unsigned int gpsHint:1; unsigned int basebandHint:1; unsigned int wifiHint:1; unsigned int btHint:1; } vehicularFlags; int vehicularConfidence; float drivingStowedLikelihoodSum; float drivingArmLikelihoodSum; float ssLikelihoodSum; int workoutDetectionType; double workoutDetectionTime; unsigned long long workoutEscalationTime; }; struct CLNotifierBase { CDUnknownFunctionPointerType *_field1; }; struct CLNotifierClientBase { CDUnknownFunctionPointerType *_field1; }; struct CLSignificantElevation { int _field1; unsigned char _field2[16]; double _field3; double _field4; unsigned int _field5; unsigned int _field6; }; struct CLSkiEntry { unsigned long long _field1; unsigned char _field2[16]; unsigned char _field3[16]; double _field4; double _field5; double _field6; double _field7; double _field8; double _field9; double _field10; }; struct CLSpringTrackerEntry { unsigned long long _field1; unsigned char _field2[16]; unsigned char _field3[16]; double _field4; long long _field5; }; struct CLSwimEntry { unsigned long long _field1; unsigned char _field2[16]; unsigned char _field3[16]; double _field4; double _field5; double _field6; double _field7; double _field8; double _field9; int _field10; int _field11; int _field12; int _field13; float _field14; float _field15; float _field16; int _field17; int _field18; }; struct CLWorkoutMets { double _field1; double _field2; unsigned char _field3[16]; unsigned char _field4[16]; double _field5; }; struct CMAccel100 { float _field1; float _field2; float _field3; unsigned long long _field4; }; struct CMGyro50 { float _field1; float _field2; float _field3; float _field4; unsigned long long _field5; }; struct GyroUnpacker { char *fData; unsigned int fBitsLeft; unsigned char fPartial; unsigned long long fTimestampLast; long long fTimestampLastDelta; int fSampleLast[4]; }; struct ParkinsonsResult { double _field1; double _field2; float _field3; float _field4; float _field5; float _field6; float _field7; float _field8; float _field9; }; struct VO2MaxInput { unsigned long long _field1; unsigned char _field2[16]; float _field3; double _field4; float _field5; float _field6; int _field7; double _field8; _Bool _field9; _Bool _field10; int _field11; long long _field12; double _field13; double _field14; _Bool _field15; }; struct _CLFitnessMachineData { double _field1; double _field2; double _field3; double _field4; double _field5; long long _field6; long long _field7; long long _field8; double _field9; double _field10; double _field11; double _field12; double _field13; double _field14; }; struct __shared_weak_count; struct __tree_end_node<std::__1::__tree_node_base<void *>*> { struct __tree_node_base<void *> *__left_; }; struct map<unsigned long, int, std::__1::less<unsigned long>, std::__1::allocator<std::__1::pair<const unsigned long, int>>> { struct __tree<std::__1::__value_type<unsigned long, int>, std::__1::__map_value_compare<unsigned long, std::__1::__value_type<unsigned long, int>, std::__1::less<unsigned long>, true>, std::__1::allocator<std::__1::__value_type<unsigned long, int>>> { struct __tree_end_node<std::__1::__tree_node_base<void *>*> *__begin_node_; struct __compressed_pair<std::__1::__tree_end_node<std::__1::__tree_node_base<void *>*>, std::__1::allocator<std::__1::__tree_node<std::__1::__value_type<unsigned long, int>, void *>>> { struct __tree_end_node<std::__1::__tree_node_base<void *>*> __value_; } __pair1_; struct __compressed_pair<unsigned long, std::__1::__map_value_compare<unsigned long, std::__1::__value_type<unsigned long, int>, std::__1::less<unsigned long>, true>> { unsigned long long __value_; } __pair3_; } __tree_; }; struct shared_ptr<CLConnectionClientInternal> { struct CLConnectionClientInternal *_field1; struct __shared_weak_count *_field2; }; struct shared_ptr<CLConnectionMessage> { struct CLConnectionMessage *_field1; struct __shared_weak_count *_field2; }; struct shared_ptr<int> { int *_field1; struct __shared_weak_count *_field2; }; struct unique_ptr<CLDeviceMotionLiteService, std::__1::default_delete<CLDeviceMotionLiteService>> { struct __compressed_pair<CLDeviceMotionLiteService *, std::__1::default_delete<CLDeviceMotionLiteService>> { struct CLDeviceMotionLiteService *__value_; } __ptr_; }; #pragma mark Typedef'd Structures typedef struct { unsigned long long _field1; id *_field2; unsigned long long *_field3; unsigned long long _field4[5]; } CDStruct_70511ce9; typedef struct { unsigned long long _field1; double _field2; double _field3; double _field4; double _field5; } CDStruct_b7b5e951; typedef struct { double _field1; double _field2; double _field3; double _field4; double _field5; double _field6; double _field7; double _field8; double _field9; } CDStruct_afa449f9; typedef struct { double w; double x; double y; double z; } CDStruct_bf7dff04; typedef struct { double x; double y; double z; } CDStruct_31142d93; typedef struct { double _field1; double _field2; } CDStruct_c3b9c2ee; typedef struct { float x; float y; float z; } CDStruct_03942939; typedef struct { float pressure; float temperature; } CDStruct_ebf20f05; typedef struct { float _field1; } CDStruct_37a3040a; typedef struct { int recordId; double startTime; unsigned int pacebin; double kvalue; double kvalueTrack; double score; double endTime; double distance; int steps; int session; double speed; double percentGrade; int gpsSource; double timestamp; } CDStruct_9878d8f4; typedef struct { int _field1; } CDStruct_fcaf9308; typedef struct { int _field1; CDStruct_c3b9c2ee _field2; double _field3; double _field4; double _field5; double _field6; double _field7; double _field8; double _field9; double _field10; int _field11; double _field12; int _field13; CDStruct_c3b9c2ee _field14; double _field15; int _field16; unsigned int _field17; int _field18; int _field19; } CDStruct_b863a861; typedef struct { CDStruct_bf7dff04 _field1; CDStruct_03942939 _field2; CDStruct_03942939 _field3; CDStruct_03942939 _field4; int _field5; _Bool _field6; _Bool _field7; _Bool _field8; float _field9; } CDStruct_981b33bd; typedef struct { CDStruct_bf7dff04 _field1; CDStruct_03942939 _field2; CDStruct_03942939 _field3; CDStruct_03942939 _field4; CDStruct_03942939 _field5; unsigned long long _field6; _Bool _field7; float _field8; float _field9; CDStruct_03942939 _field10; unsigned char _field11[3]; } CDStruct_946f299f; typedef struct { CDStruct_31142d93 _field1; int _field2; } CDStruct_27fd20ed; // Template types typedef struct shared_ptr<CLConnectionMessage> { struct CLConnectionMessage *_field1; struct __shared_weak_count *_field2; } shared_ptr_bdcc6d0f;
[ "aguywithlonghair@yahoo.com" ]
aguywithlonghair@yahoo.com
be1a22c102d614168899b01fcced05add60b990c
f5171b8711f471106207ba35ac0a73ce4e744ff9
/modules/core/util/yangtools/lib/confd_xml.cpp
bc20feb257598d76baa6846e3007f55af4a3c7ee
[ "Apache-2.0" ]
permissive
RIFTIO/RIFT.ware
94d3a34836a04546ea02ec0576dae78d566dabb3
d65a23ac2563a43f11e64a862e9bda4362a82e30
refs/heads/master
2020-05-21T14:07:31.092287
2016-12-08T15:38:03
2016-12-08T15:38:03
52,545,688
9
8
null
null
null
null
UTF-8
C++
false
false
49,085
cpp
/* * * Copyright 2016 RIFT.IO Inc * * 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 "rw_confd_annotate.hpp" #include "confd_xml.h" using namespace rw_yang; rw_status_t find_confd_hash_values (YangNode *node,struct xml_tag *tag) { YangModel *model = node->get_model(); intptr_t tmp = (intptr_t)0; bool status = false; status = node->app_data_check_and_get (&model->adt_confd_ns_, &tmp); RW_ASSERT(status); tag->ns = tmp; status = node->app_data_check_and_get (&model->adt_confd_name_, &tmp); RW_ASSERT(status); tag->tag = tmp; return RW_STATUS_SUCCESS; } rw_status_t get_current_key_and_next_node ( XMLNode *node, confd_cs_node *parent, XMLNode **next_node, confd_value_t *values, int *values_count) { *values_count = 0; YangNode* yang_node = node->get_descend_yang_node(); rw_status_t status = RW_STATUS_SUCCESS; *next_node = nullptr; RW_ASSERT (yang_node); RW_ASSERT (yang_node->get_stmt_type() == RW_YANG_STMT_TYPE_LIST); *next_node = node->get_next_sibling(node->get_local_name(), node->get_name_space()); if (!yang_node->has_keys()) { values[0].type = C_INT64; values[0].val.i64 = (int64_t )node; *values_count = 1; return RW_STATUS_SUCCESS; } YangKeyIter yki = yang_node->key_begin(); for (yki=yang_node->key_begin(); yki != yang_node->key_end(); yki++) { YangNode *key_yang_node = yki->get_key_node(); RW_ASSERT (key_yang_node->get_stmt_type() == RW_YANG_STMT_TYPE_LEAF); XMLNode *key_node = node->find (key_yang_node->get_name(),yang_node->get_ns()); RW_ASSERT (key_node); struct xml_tag tag = {0}; status = find_confd_hash_values(key_yang_node, &tag); RW_ASSERT(RW_STATUS_SUCCESS == status); // find the node corresponding to this type from confd land struct confd_cs_node *cs_node = confd_find_cs_node_child(parent, tag); RW_ASSERT (cs_node); RW_ASSERT (cs_node->info.type); std::string value_string = key_node->get_text_value(); if (!value_string.length()) { RW_CRASH(); break; } int ret = confd_str2val (cs_node->info.type, value_string.c_str(), &values[*values_count]); RW_ASSERT(CONFD_OK == ret); (*values_count)++; } return RW_STATUS_SUCCESS; } XMLNode* get_node_by_hkeypath (XMLNode *node, confd_hkeypath_t *keypath, uint16_t stop_at) { const char *ns = 0; int i = keypath->len; while (i > stop_at) { confd_value_t *val = &keypath->v[i-1][0]; const char *tag = 0; char value[CONFD_MAX_STRING_LENGTH]; struct confd_cs_node *cs_node = confd_find_cs_node (keypath, keypath->len - (i - 1)); RW_ASSERT(cs_node); RW_ASSERT(C_XMLTAG == val->type); tag = confd_hash2str (val->val.xmltag.tag); ns = confd_hash2str (val->val.xmltag.ns); node = node->find (tag, ns); if (nullptr == node) { return nullptr; } i--; if (i == 0) { return node; } YangNode *yn = node->get_yang_node(); if (!yn->is_listy()) { continue; } if (!yn->has_keys()) { // Keyless list - there should be only a single "key-value", which should // be a ptr to a sibling value. There is no list node parent in XML. RW_ASSERT(keypath->v[i-1][0].type == C_INT64); RW_ASSERT(keypath->v[i-1][1].type == C_NOEXISTS); XMLNode *sibling = (XMLNode *) (keypath->v[i-1][0].val.i64); if (nullptr == sibling) { return nullptr; } RW_ASSERT (sibling->get_parent() == node->get_parent()); // There could be multiple keyless lists node = sibling; i --; continue; } bool matched = true; // The node has moved to the *first* list entry that it could find. // go through all its siblings with matching names to see if any match // all the keys. while (node) { matched = true; for (int j = 0; val->type != C_NOEXISTS; j++) { val = &keypath->v[i-1][j]; RW_ASSERT(cs_node->info.keys[j]); tag = confd_hash2str(cs_node->info.keys[j]); switch (val->type) { case C_NOEXISTS: case C_XMLEND: case C_BIT32: case C_BIT64: case C_XMLTAG: RW_CRASH(); break; case C_ENUM_VALUE: if (nullptr == node->find_enum (tag, ns, CONFD_GET_ENUM_VALUE (val))) { matched = false; } break; default: size_t len = confd_pp_value (value, sizeof (value), val); RW_ASSERT (len < sizeof (value)); if (!len || nullptr == node->find_value (tag, value, ns)) { matched = false; } break; } if (!matched) { break; } val = &keypath->v[i-1][j+1]; } if (matched) { break; } node = node->get_next_sibling(node->get_local_name(), node->get_name_space()); } if (!matched) { return nullptr; } // Account for the key i--; } return node; } rw_status_t get_confd_case ( rw_yang::XMLNode *root, confd_hkeypath_t *keypath, confd_value_t *choice, confd_value_t *case_val) { RW_ASSERT (case_val); rw_yang::XMLNode *node = get_node_by_hkeypath (root, keypath, 0); if (nullptr == node) { return RW_STATUS_FAILURE; } XMLNodeList::uptr_t children(node->get_children()); for (size_t i = 0; i < children->length(); i++) { XMLNode* child = children->at(i); YangNode *yn = child->get_descend_yang_node(); if (nullptr == yn) { continue; } YangNode *yn_case = yn->get_case(); if (nullptr == yn_case) { continue; } // The comparision starts with the choice.. YangNode *yn_choice = yn_case->get_choice(); RW_ASSERT (yn_choice); while (choice->type != C_NOEXISTS) { RW_ASSERT (choice->type == C_XMLTAG); const char * tag = confd_hash2str (choice->val.xmltag.tag); int n_s = choice->val.xmltag.ns; const char *ns = confd_hash2str (n_s); if (strcmp (tag, yn_choice->get_name()) || strcmp (ns, yn_choice->get_ns())) { break; } // The case matches - check if choice exists choice++; if (C_NOEXISTS == choice->type) { case_val->type = C_XMLTAG; case_val->val.xmltag.ns = n_s; case_val->val.xmltag.tag = confd_str2hash (yn_case->get_name()); return RW_STATUS_SUCCESS; } RW_ASSERT (choice->type == C_XMLTAG); yn_case = yn_choice->get_case(); // Can this be null?? RW_ASSERT (yn_case); tag = confd_hash2str (choice->val.xmltag.tag); ns = confd_hash2str (choice->val.xmltag.ns); if (strcmp (tag, yn_case->get_name()) || strcmp (ns, yn_case->get_ns())) { break; } } } return RW_STATUS_FAILURE; } rw_status_t get_element (XMLNode *node, confd_cs_node *cs_node, confd_value_t *value) { YangNode *yang_node = node->get_yang_node(); RW_ASSERT (yang_node); if (RW_YANG_LEAF_TYPE_EMPTY == yang_node->get_type()->get_leaf_type()) { value->type = C_XMLTAG; } else if (RW_YANG_STMT_TYPE_LEAF_LIST == yang_node->get_stmt_type()) { std::string y_name = node->get_local_name(); std::string ns = node->get_name_space(); XMLNode *sibling = node->get_next_sibling(y_name, ns); if (yang_node->get_type()->get_leaf_type() != RW_YANG_LEAF_TYPE_STRING) { std::string all_values = node->get_text_value(); while (nullptr != sibling) { all_values += " "; all_values += sibling->get_text_value(); sibling = sibling->get_next_sibling(y_name, ns); } int ret = confd_str2val (cs_node->info.type, all_values.c_str(), value); if (CONFD_OK != ret) { return RW_STATUS_FAILURE; } } else { std::vector<std::string> values; values.push_back(node->get_text_value()); while (nullptr != sibling) { values.push_back (sibling->get_text_value()); sibling = sibling->get_next_sibling (y_name, ns); } value->type = C_LIST; value->val.list.ptr =(confd_value_t *) malloc (sizeof (confd_value_t) * values.size()); value->val.list.size = values.size(); size_t i = 0; for (auto iter:values) { CONFD_SET_CBUF(&value->val.list.ptr[i], strdup(iter.c_str()), iter.length()); i++; } RW_ASSERT(i == values.size()); } } else { std::string value_string = node->get_text_value(); int ret = confd_str2val (cs_node->info.type, value_string.c_str(), value); if (CONFD_OK != ret) { return RW_STATUS_FAILURE; } } return RW_STATUS_SUCCESS; } ConfdTLVTraverser::ConfdTLVTraverser (Builder *builder, confd_tag_value_t *values, int count) :Traverser (builder) { for (int i = 0; i < count; i++) { if (ns_rejection_map.find( confd_hash2str((&values[i])->tag.ns)) != ns_rejection_map.end()) { continue; } tlv_tree_.push_back(&values[i]); } current_node_ = tlv_tree_.begin(); } ConfdTLVTraverser::~ConfdTLVTraverser() { } static inline std::string get_confd_pp_value(const confd_value_t *v) { RW_ASSERT (v); char stack_buff [4096]; stack_buff[0] = 0; int buf_sz = sizeof (stack_buff); char* work_buf = &(stack_buff[0]); std::unique_ptr<char[]> uptr; do { int len = confd_pp_value (work_buf, buf_sz, v); RW_ASSERT (len >= 0); if (len < buf_sz) { break; } buf_sz *= 2; uptr.reset(new char[buf_sz]); work_buf = uptr.get(); work_buf[0] = 0; } while(1); return std::string(work_buf); } static inline std::string get_confd_val2str(struct confd_type *type, const confd_value_t *val) { RW_ASSERT (type); RW_ASSERT (val); char stack_buff [4096]; stack_buff[0] = 0; int buf_sz = sizeof (stack_buff); char* work_buf = &(stack_buff[0]); std::unique_ptr<char[]> uptr; do { int len = confd_val2str(type, val, work_buf, buf_sz); RW_ASSERT (len != CONFD_ERR); RW_ASSERT (len >= 0); if (len < buf_sz) { break; } buf_sz *= 2; uptr.reset(new char[buf_sz]); work_buf = uptr.get(); work_buf[0] = 0; } while(1); return std::string(work_buf); } rw_xml_next_action_t ConfdTLVTraverser::build_next() { if (tlv_tree_.end() == current_node_) { // The last node has been traversed, indicate a stop return RW_XML_ACTION_TERMINATE; } std::string value; std::string log_str; confd_tag_value_t *val = *current_node_; const char * tag = confd_hash2str (val->tag.tag); const char *ns = confd_hash2str (val->tag.ns); confd_cs_node* cs_node = nullptr; RW_TRAVERSER_LOG_DEBUG ((log_str = std::string(tag) + " " + std::string(ns))); // move to the next node current_node_++; switch (val->v.type) { case C_XMLBEGIN: // ATTN: Needs re-work for presence containers cs_node = get_confd_schema_node(val->tag); if (!cs_node) { return RW_XML_ACTION_TERMINATE; } schema_stack_.push(cs_node); if (current_node_ == tlv_tree_.end()) { return RW_XML_ACTION_TERMINATE; } return builder_->push(tag, ns); case C_XMLEND: // The stack is not supposed to be empty, but just as a precaution, with // malformed TLV's (atleast there is one unittest case for this) if (!schema_stack_.empty()) { schema_stack_.pop(); } return builder_->pop(); case C_XMLTAG: return builder_->append_child (tag, ns, 0); case C_BIT32: case C_BIT64: { std::string log("C_BIT32 / C_BIT64 Types not handled"); RW_TRAVERSER_LOG_ERROR (log); return RW_XML_ACTION_ABORT; } case C_ENUM_VALUE: return builder_->append_child_enum (tag, ns, CONFD_GET_ENUM_VALUE(&val->v)); case C_LIST: { confd_value *ptr = val->v.val.list.ptr; rw_xml_next_action_t ret = RW_XML_ACTION_NEXT; for (size_t i = 0; i < val->v.val.list.size; i++) { switch (ptr->type) { case C_XMLBEGIN: case C_XMLEND: case C_BIT32: case C_BIT64: case C_LIST: case C_XMLTAG: { std::string log("Type not handled: "); log += std::to_string(ptr->type); RW_TRAVERSER_LOG_ERROR (log); return RW_XML_ACTION_ABORT; } case C_ENUM_VALUE: ret = builder_->append_child_enum (tag, ns, CONFD_GET_ENUM_VALUE(&ptr[i])); break; case C_BINARY: cs_node = get_confd_schema_node(val->tag); if (!cs_node) { // Confd schema node not found, return error return RW_XML_ACTION_TERMINATE; } value = get_confd_val2str (cs_node->info.type, &ptr[i]); ret = builder_->append_child (tag, ns, value.c_str()); break; default: value = get_confd_pp_value (&ptr[i]); ret = builder_->append_child (tag, ns, value.c_str()); break; } } return ret; } case C_NOEXISTS: case C_XMLBEGINDEL: if (val->v.type == C_XMLBEGINDEL) { cs_node = get_confd_schema_node(val->tag); if (!cs_node) { return RW_XML_ACTION_TERMINATE; } schema_stack_.push(cs_node); } return builder_->mark_child_for_deletion(tag, ns); case C_BINARY: // ATTN: This conversion should be the default instead of confd_pp_value cs_node = get_confd_schema_node(val->tag); if (!cs_node) { // Confd schema node not found, return error return RW_XML_ACTION_TERMINATE; } value = get_confd_val2str (cs_node->info.type, &val->v); return builder_->append_child (tag, ns, value.c_str()); default: value = get_confd_pp_value (&val->v); return builder_->append_child (tag, ns, value.c_str()); } std::string log("Unexpected code path hit"); RW_TRAVERSER_LOG_ERROR (log); return RW_XML_ACTION_TERMINATE; } rw_xml_next_action_t ConfdTLVTraverser::build_next_sibling() { if (tlv_tree_.end() == current_node_) { // The last node has been traversed, indicate a stop return RW_XML_ACTION_TERMINATE; } cta_iter prev = current_node_ - 1; if ( (*prev)->v.type == C_XMLBEGIN) { while (( (*current_node_)->v.type != C_XMLEND) && (current_node_ != tlv_tree_.end())) { current_node_++; } if (current_node_ != tlv_tree_.end()) { current_node_++; } } // an exit of 1 level has been made if the current node was a container or list return build_next(); } rw_yang_netconf_op_status_t ConfdTLVTraverser::stop() { return RW_YANG_NETCONF_OP_STATUS_OK; } rw_yang_netconf_op_status_t ConfdTLVTraverser::abort_traversal() { return RW_YANG_NETCONF_OP_STATUS_OK; } void ConfdTLVTraverser::set_confd_schema_root(confd_cs_node* cs_node) { RW_ASSERT(schema_stack_.empty()); schema_stack_.push(cs_node); } confd_cs_node* ConfdTLVTraverser::get_confd_schema_node(struct xml_tag tag) { confd_cs_node* cs_node = nullptr; if (schema_stack_.empty()) { // Request from confd are assumed to be rooted, the first container/leaf // is assumed to be from / confd_cs_node* root_cs = confd_find_cs_root(tag.ns); for (cs_node = root_cs; cs_node; cs_node = cs_node->next) { if (tag.tag == cs_node->tag && tag.ns == cs_node->ns) { break; } } if (!cs_node) { // Some unittests doesn't start from the root since the // ConfdTLVBuilder doesn't have it. Check the children cs_node = confd_find_cs_node_child(root_cs, tag); } } else { cs_node = confd_find_cs_node_child(schema_stack_.top(), tag); } if (!cs_node) { std::string log("Confd node not found "); log += std::to_string(tag.tag) + " " + std::to_string(tag.ns); RW_TRAVERSER_LOG_ERROR (log); } return cs_node; } /******************* ConfdKeypathTraverser *************************/ ConfdKeypathTraverser::ConfdKeypathTraverser(Builder *builder, confd_hkeypath_t *keypath) :Traverser (builder), keypath_ (keypath) { curr_idx_ = keypath_->len - 1; curr_key_ = 0; } ConfdKeypathTraverser::~ConfdKeypathTraverser() { } rw_xml_next_action_t ConfdKeypathTraverser::build_next() { if (curr_idx_ < 0 ) { // The last node has been traversed, indicate a stop return RW_XML_ACTION_TERMINATE; } if (C_NOEXISTS == keypath_->v[curr_idx_][curr_key_].type) { // No more keys, go to next node. curr_key_ = 0; curr_idx_ --; return RW_XML_ACTION_NEXT; } char value[CONFD_MAX_STRING_LENGTH]; const char *tag = 0, *ns = 0; confd_value_t *val = &keypath_->v[curr_idx_][curr_key_]; if (C_XMLTAG == val->type) { tag = confd_hash2str (val->val.xmltag.tag); ns = confd_hash2str (val->val.xmltag.ns); curr_idx_ --; } else { // Key values if (curr_idx_ == keypath_->len - 1) { // Cannot be the top node. std::string log("Parent does not exist : "); log += std::to_string(curr_idx_); RW_TRAVERSER_LOG_ERROR (log); return RW_XML_ACTION_ABORT; } struct confd_cs_node *node = confd_find_cs_node (keypath_, keypath_->len - curr_idx_ - 1); RW_ASSERT(node); RW_ASSERT(node->info.keys); RW_ASSERT(node->info.keys[curr_key_]); tag = confd_hash2str (node->info.keys[curr_key_]); curr_key_++; } switch (val->type) { case C_NOEXISTS: case C_XMLEND: return RW_XML_ACTION_TERMINATE; case C_BIT32: case C_BIT64: return RW_XML_ACTION_TERMINATE; case C_XMLTAG: { return builder_->push(tag, ns); } case C_ENUM_VALUE: return builder_->append_child_enum (tag, ns,CONFD_GET_ENUM_VALUE(val)); default: { size_t len = confd_pp_value (value, sizeof (value), val); RW_ASSERT (len < sizeof (value)); return builder_->append_child (tag, ns, value); } } RW_ASSERT_NOT_REACHED (); } rw_xml_next_action_t ConfdKeypathTraverser::build_next_sibling() { // skip a level - doesnt make sense for this traverser return RW_XML_ACTION_ABORT; } rw_yang_netconf_op_status_t ConfdKeypathTraverser::stop() { return RW_YANG_NETCONF_OP_STATUS_OK; } rw_yang_netconf_op_status_t ConfdKeypathTraverser::abort_traversal() { return RW_YANG_NETCONF_OP_STATUS_OK; } /***************************************************************************** * ConfdTLVBuilder */ ConfdTLVBuilder::ConfdTLVBuilder(confd_cs_node *cfd_schema_node, bool include_lists): current_schema_node_(cfd_schema_node) , include_lists_(include_lists) { } ConfdTLVBuilder::~ConfdTLVBuilder() { } const size_t CONFD_TLV_BUILDER_CLIST_REALLOC_SIZE = 10; rw_xml_next_action_t ConfdTLVBuilder::append_child (XMLNode *node) { YangNode *yang_node = node->get_yang_node(); RW_ASSERT (yang_node); confd_tag_value_t val; RW_ASSERT(yang_node->is_leafy()); // Set the tag rw_status_t status = RW_STATUS_FAILURE; status = find_confd_hash_values(yang_node, &val.tag); if (RW_STATUS_SUCCESS != status) { std::string log("Node not found:"); log += yang_node->get_name(); RW_BUILDER_LOG_ERROR (log); return RW_XML_ACTION_ABORT; } // Build the leaf-list values only for the first node. if ( RW_YANG_STMT_TYPE_LEAF_LIST == yang_node->get_stmt_type() ) { std::string y_name = node->get_local_name(); std::string ns = node->get_name_space(); if ( nullptr != node->get_previous_sibling(y_name, ns)) { // The First leaf-list node already visited, just return return RW_XML_ACTION_NEXT; } } // Find the childs confd schema node struct confd_cs_node *cs_node = confd_find_cs_node_child(current_schema_node_, val.tag); RW_ASSERT (cs_node); status = get_element (node, cs_node, &val.v); if (status != RW_STATUS_SUCCESS) { std::string log("Failed xml to confd conversion."); log += node->get_text_value(); RW_BUILDER_LOG_ERROR (log); return RW_XML_ACTION_ABORT; } values_.push_back (val); return RW_XML_ACTION_NEXT; } rw_xml_next_action_t ConfdTLVBuilder::push (XMLNode *node) { RW_ASSERT (!node->get_yang_node()->is_leafy()); if ((!values_.empty() && node->get_yang_node()->is_listy()) && ( !include_lists_)){ // Confd doesnt like embedded lists - will ask for it later // Except if this is the first element - that is.. return RW_XML_ACTION_NEXT_SIBLING; } confd_tag_value_t val; schema_stack_.push (current_schema_node_); rw_status_t ret = find_confd_hash_values(node->get_yang_node(),&val.tag); RW_ASSERT(RW_STATUS_SUCCESS == ret); struct confd_cs_node *cs_node = confd_find_cs_node_child(current_schema_node_, val.tag); RW_ASSERT (cs_node); val.v.type = C_XMLBEGIN; values_.push_back (val); current_schema_node_ = cs_node; return RW_XML_ACTION_NEXT; } rw_xml_next_action_t ConfdTLVBuilder::pop() { confd_tag_value_t val; val.v.type = C_XMLEND; val.tag.tag = current_schema_node_->tag; val.tag.ns = current_schema_node_->ns; values_.push_back (val); current_schema_node_ = schema_stack_.top(); schema_stack_.pop(); return RW_XML_ACTION_NEXT; } size_t ConfdTLVBuilder::length() { return values_.size(); } size_t ConfdTLVBuilder::copy_and_destroy_tag_array (confd_tag_value_t *values) { int i = 0; while (!values_.empty()) { values[i] = values_.front(); values_.pop_front(); i++; } return i; } rw_status_t RwTLVAIterator::move_to_first_child() { confd_tag_value_t *node = &root_[position_]; RwTLVAIterator iter = *this; if (path_.size() == 0) { /* The "tree" is an array of children, in the constructor. The schema node * is set to the right level, ie to the schema node of the root. */ RW_ASSERT(position_ == 0); path_.push (0); cs_node_ = confd_find_cs_node_child(cs_node_, root_[position_].tag); RW_ASSERT(cs_node_); return RW_STATUS_SUCCESS; } if ((position_ == length_ - 1) || (node->v.type != C_XMLBEGIN)) { return RW_STATUS_FAILURE; } RW_ASSERT(position_ < length_); path_.push (position_); position_++; RW_ASSERT(cs_node_); cs_node_ = confd_find_cs_node_child(cs_node_, root_[position_].tag); RW_ASSERT(cs_node_); return RW_STATUS_SUCCESS; } rw_status_t RwTLVAIterator::move_to_next_sibling() { if (path_.size() == 0) { // The root has no siblings return RW_STATUS_FAILURE; } confd_tag_value_t *node = &root_[position_]; struct confd_value *val = &node->v; if ((val->type == C_LIST) && (val->val.list.size > list_index_ + 1)) { list_index_++; RW_ASSERT(list_index_ < val->val.list.size); return RW_STATUS_SUCCESS; } size_t new_pos = position_ + 1; if (new_pos == length_) { return RW_STATUS_FAILURE; } RW_ASSERT(new_pos < length_); if (node->v.type != C_XMLBEGIN) { if (root_[new_pos].v.type == C_XMLEND) { return RW_STATUS_FAILURE; } } else { uint8_t xml_begin_count = 1, xml_end_count = 0; for (; (new_pos < length_ - 1) && (xml_begin_count > xml_end_count); new_pos++) { switch (root_[new_pos].v.type) { case C_XMLEND: xml_end_count++; if (xml_end_count < xml_begin_count) { continue; } RW_ASSERT(xml_end_count == xml_begin_count); if (C_XMLEND == root_[new_pos + 1].v.type) { return RW_STATUS_FAILURE; } // new_pos is now at END, but the loop end increments break; case C_XMLBEGIN: xml_begin_count++; break; default: break; } } if (xml_begin_count != xml_end_count) { return RW_STATUS_FAILURE; } } if (new_pos == length_) { return RW_STATUS_FAILURE; } position_ = new_pos; list_index_ = 0; RW_ASSERT(cs_node_); RW_ASSERT(cs_node_->parent); cs_node_ = confd_find_cs_node_child(cs_node_->parent, root_[position_].tag); RW_ASSERT(cs_node_); return RW_STATUS_SUCCESS; } rw_status_t RwTLVAIterator::move_to_parent() { if (!path_.size()) { return RW_STATUS_FAILURE; } position_ = path_.top(); path_.pop(); RW_ASSERT(cs_node_); RW_ASSERT(cs_node_->parent); cs_node_ = cs_node_->parent; return RW_STATUS_SUCCESS; } rw_status_t RwTLVAIterator::get_value(rw_ylib_data_t* data) const { data->type = RW_YLIB_DATA_TYPE_CONFD; rw_confd_value_t *v = &data->rw_confd; v->cs_node = cs_node_; v->value = nullptr; if (!path_.size()) { return RW_STATUS_SUCCESS; } struct confd_value *val = &root_[position_].v; if (val->type != C_LIST) { v->value = val; return RW_STATUS_SUCCESS; } RW_ASSERT(list_index_ < val->val.list.size); v->value = &val->val.list.ptr[list_index_]; return RW_STATUS_SUCCESS; } const char* RwTLVAIterator::get_yang_node_name() const { return confd_hash2str (cs_node_->tag); } const char* RwTLVAIterator::get_yang_ns() const { return confd_hash2str (cs_node_->ns); } RwHKeyPathIterator::RwHKeyPathIterator() { } RwHKeyPathIterator::RwHKeyPathIterator (confd_hkeypath_t *key) :h_key_path_(key) { if (key) { depth_ = key->len; } } RwHKeyPathIterator::~RwHKeyPathIterator() { } rw_status_t RwHKeyPathIterator::move_to_first_child() { if (!h_key_path_ || (0 == depth_) ||((depth_ != (size_t) h_key_path_->len) && (C_XMLTAG != h_key_path_->v[depth_][0].type))) { return RW_STATUS_FAILURE; } if (position_) { // at a leaf, cannot have children return RW_STATUS_FAILURE; } // go down depth_--; return RW_STATUS_SUCCESS; } rw_status_t RwHKeyPathIterator::move_to_next_sibling() { if ((!h_key_path_) || (depth_ == (size_t) h_key_path_->len)) { return RW_STATUS_FAILURE; } if (C_XMLTAG == h_key_path_->v[depth_][0].type ) { return RW_STATUS_FAILURE; } if (C_NOEXISTS != h_key_path_->v[depth_][position_+1].type ) { position_++; return RW_STATUS_SUCCESS; } if (!depth_) { return RW_STATUS_FAILURE; } depth_ --; return RW_STATUS_SUCCESS; } rw_status_t RwHKeyPathIterator::move_to_parent() { RW_ASSERT(h_key_path_->len >= 0); if (!h_key_path_ || ((size_t) h_key_path_->len == depth_ )) { return RW_STATUS_FAILURE; } uint8_t i = depth_ + 1; while ((i < h_key_path_->len) && h_key_path_->v[i][0].type != C_XMLTAG) { i++; } if (h_key_path_->len < i) { return RW_STATUS_FAILURE; } depth_ = i; position_ = 0; return RW_STATUS_SUCCESS; } struct confd_cs_node *RwHKeyPathIterator::cs_node() const { struct confd_cs_node *cs_node = confd_find_cs_node (h_key_path_, h_key_path_->len - depth_); if (h_key_path_->v[depth_][0].type != C_XMLTAG) { RW_ASSERT(cs_node); RW_ASSERT(cs_node->info.keys); struct xml_tag tag = {0}; tag.ns = cs_node->ns; tag.tag = cs_node->info.keys[position_]; cs_node = confd_find_cs_node_child (cs_node, tag); RW_ASSERT(cs_node); } return cs_node; } rw_status_t RwHKeyPathIterator::get_value(rw_ylib_data_t* data) const { data->type = RW_YLIB_DATA_TYPE_CONFD; rw_confd_value_t *v = &data->rw_confd; v->cs_node = cs_node(); RW_ASSERT(v->cs_node); v->value = &h_key_path_->v[depth_][position_]; return RW_STATUS_SUCCESS; } const char* RwHKeyPathIterator::get_yang_node_name() const { return confd_hash2str (cs_node()->tag); } const char* RwHKeyPathIterator::get_yang_ns() const { return confd_hash2str (cs_node()->ns); } rw_status_t RwTLVListIterator::move_to_first_child() { if (!elements_.size()) { return RW_STATUS_FAILURE; } if (position_->v.type != C_XMLBEGIN) { return RW_STATUS_FAILURE; } path_.push (position_); position_++; RW_ASSERT(elements_.end() != position_); RW_ASSERT(position_->v.type != C_XMLEND); return RW_STATUS_SUCCESS; } rw_status_t RwTLVListIterator::move_to_next_sibling() { tlv_list_iter_t new_pos = position_; struct confd_value *val = &new_pos->v; if ((val->type == C_LIST) && (val->val.list.size > list_index_ + 1)) { list_index_++; RW_ASSERT(list_index_ < val->val.list.size); return RW_STATUS_SUCCESS; } new_pos++; if (C_XMLBEGIN != position_->v.type) { if (C_XMLEND == new_pos->v.type) { return RW_STATUS_FAILURE; } else { // The old position was an XMLBEGIN type, which is a container or list. // move over any children - and subchildren uint8_t xml_begin_count = 1, xml_end_count = 0; for (;elements_.end() != new_pos; new_pos++) { switch (new_pos->v.type) { case C_XMLEND: xml_end_count++; if (xml_end_count < xml_begin_count) { continue; } RW_ASSERT(xml_end_count == xml_begin_count); break; case C_XMLBEGIN: xml_begin_count++; break; default: break; } } if (xml_begin_count != xml_end_count) { return RW_STATUS_FAILURE; } } } if ((elements_.end() == new_pos) || (C_XMLEND == new_pos->v.type)) { return RW_STATUS_FAILURE; } position_ = new_pos; list_index_ = 0; RW_ASSERT(cs_node_); RW_ASSERT(cs_node_->parent); cs_node_ = confd_find_cs_node_child(cs_node_->parent, position_->tag); RW_ASSERT(cs_node_); return RW_STATUS_SUCCESS; } rw_status_t RwTLVListIterator::get_value(tlv_list_iter_t& value) { if (position_ == elements_.end()) { return RW_STATUS_FAILURE; } value = position_; return RW_STATUS_SUCCESS; } rw_status_t RwTLVListIterator::move_to_child(tlv_list_iter_t& child) { if (elements_.end() == position_) { RW_ASSERT(!elements_.size()); } path_.push(position_); position_ = child; return RW_STATUS_SUCCESS; } rw_status_t RwTLVListIterator::move_to_parent() { if (!path_.size()) { return RW_STATUS_FAILURE; } position_ = path_.top(); path_.pop(); RW_ASSERT(cs_node_); RW_ASSERT(cs_node_->parent); cs_node_ = cs_node_->parent; return RW_STATUS_SUCCESS; } const char * RwTLVListIterator::get_yang_ns() const { return confd_hash2str (cs_node_->ns); } const char * RwTLVListIterator::get_yang_node_name() const { return confd_hash2str (cs_node_->tag); } static rw_tree_walker_status_t add_tlv_list_child (RwTLVListIterator *parent, ProtobufCFieldInfo *child_pb, const char *yang_node_name, const char *yang_ns, RwTLVListIterator::tlv_list_iter_t& child) { // Find the child cs node const struct confd_cs_node *cs_node = parent->schema_node(); RW_ASSERT(cs_node); rw_status_t rs; struct xml_tag tag = {0}; tag.tag = confd_str2hash (yang_node_name); tag.ns = confd_str2hash (yang_ns); cs_node = confd_find_cs_node_child (cs_node, tag); RW_ASSERT(cs_node); confd_tag_value_t child_tag_val = {0}; child_tag_val.tag = tag; confd_value_t *child_val = &child_tag_val.v; const void *elt = child_pb->element; switch (cs_node->info.shallow_type) { case C_NOEXISTS: case C_STR: case C_SYMBOL: case C_QNAME: case C_DATETIME: case C_DATE: case C_TIME: case C_DURATION: case C_BIT32: case C_BIT64: case C_OBJECTREF: case C_UNION: case C_PTR: case C_CDBBEGIN: case C_OID: case C_DEFAULT: case C_IDENTITYREF: case C_XMLBEGINDEL: case C_DQUAD: case C_XMLEND: case C_MAXTYPE: RW_CRASH(); break; case C_XMLTAG: break; case C_BUF: { std::string str; rs = get_string_value(child_pb, str); if (RW_STATUS_SUCCESS != rs) { CONFD_SET_BUF(child_val, (unsigned char *) strdup (str.c_str()), str.length()); } } break; case C_INT8: CONFD_SET_INT8(child_val, (int8_t) (*(int32_t *)elt)); break; case C_INT16: CONFD_SET_INT16(child_val, (int16_t) (*(int32_t *)elt)); break; case C_INT32: CONFD_SET_INT32(child_val, (*(int32_t *)elt)); break; case C_INT64: CONFD_SET_INT64(child_val, (*(int64_t *)elt)); break; case C_UINT8: CONFD_SET_UINT8(child_val, (uint8_t) (*(uint32_t *)elt)); break; case C_UINT16: CONFD_SET_UINT16(child_val, (uint16_t) (*(uint32_t *)elt)); break; case C_UINT32: CONFD_SET_UINT32(child_val, (*(uint32_t *)elt)); break; case C_UINT64: CONFD_SET_UINT64(child_val, (*(uint64_t *)elt)); break; case C_DOUBLE: case C_IPV4: case C_IPV6: case C_IPV4PREFIX: case C_IPV6PREFIX: case C_DECIMAL64: case C_IPV4_AND_PLEN: case C_IPV6_AND_PLEN: case C_BINARY: case C_HEXSTR: break; case C_BOOL: CONFD_SET_BOOL (child_val, *(protobuf_c_boolean *)elt); break; case C_ENUM_VALUE: CONFD_SET_ENUM_VALUE(child_val,(*(uint32_t *)elt)); break; case C_LIST: { struct confd_type *ct = confd_get_leaf_list_type ((confd_cs_node*) cs_node); RW_ASSERT(ct); } break; case C_XMLBEGIN: break; } return RW_TREE_WALKER_SUCCESS; } rw_status_t RwTLVListIterator::get_value (rw_ylib_data_t* data) const { data->type = RW_YLIB_DATA_TYPE_CONFD; rw_confd_value_t *v = &data->rw_confd; v->cs_node = cs_node_; v->value = nullptr; struct confd_value *val = &position_->v; if (val->type != C_LIST) { v->value = val; return RW_STATUS_SUCCESS; } RW_ASSERT(list_index_ < val->val.list.size); v->value = &val->val.list.ptr[list_index_]; return RW_STATUS_SUCCESS; } namespace rw_yang { rw_status_t get_string_value (const RwTLVListIterator *iter, std::string& str) { rw_ylib_data_t val; rw_status_t rs = iter->get_value(&val); RW_ASSERT(RW_STATUS_SUCCESS == rs); return get_string_value(&val.rw_confd, str); } rw_tree_walker_status_t add_xml_child (XMLNode *parent, rw_confd_value_t *confd, XMLNode*& child) { confd_cs_node *cs_node = confd->cs_node; confd_value_t *child_src = confd->value; const char *name = confd_hash2str (confd->cs_node->tag); const char *ns = confd_hash2str (confd->cs_node->ns); YangNode *child_yn = nullptr; child = nullptr; YangNode *yn = parent->get_yang_node(); if (!yn) { return RW_TREE_WALKER_FAILURE; } child_yn = yn->search_child (name, ns); if (!child_yn) { return RW_TREE_WALKER_FAILURE; } if (!child_yn->is_leafy()) { child = parent->add_child(child_yn); if (child) { return RW_TREE_WALKER_SUCCESS; } return RW_TREE_WALKER_FAILURE; } char value[1024]; char *val_p = nullptr; switch (child_src->type) { default: case C_QNAME: case C_DATETIME: case C_DATE: case C_TIME: case C_DURATION: case C_NOEXISTS: case C_STR: case C_SYMBOL: case C_BIT32: case C_BIT64: case C_XMLBEGIN: case C_XMLEND: case C_OBJECTREF: case C_UNION: case C_PTR: case C_CDBBEGIN: case C_OID: case C_DEFAULT: case C_IDENTITYREF: case C_XMLBEGINDEL: case C_DQUAD: case C_HEXSTR: RW_CRASH(); break; case C_XMLTAG: break; case C_BUF: case C_INT8: case C_INT16: case C_INT32: case C_INT64: case C_UINT8: case C_UINT16: case C_UINT32: case C_UINT64: case C_DOUBLE: case C_BOOL: case C_ENUM_VALUE: case C_BINARY: case C_DECIMAL64: case C_IPV4: case C_IPV6: case C_IPV4PREFIX: case C_IPV4_AND_PLEN: case C_IPV6_AND_PLEN: case C_IPV6PREFIX: { struct confd_type *ct = cs_node->info.type; int len = confd_val2str (ct, child_src, value, sizeof (value)); if (len < 0) { return RW_TREE_WALKER_FAILURE; } val_p = &value[0]; } break; case C_LIST: { // ATTN: ATTN: // This code is inefficient. TAIL-F has been asked what the best method // for doing this is. Once TAILF responds, change this code. // ATTN: ATTN: // This also needs to change when protobuf representation of a leaf list // transitions to becoming a list of single elements struct confd_type *ct = confd_get_leaf_list_type (cs_node); RW_ASSERT(ct); int len = confd_val2str (ct, child_src, value, sizeof (value)); if (len < 0) { return RW_TREE_WALKER_FAILURE; } val_p = &value[0]; } break; } child = parent->add_child (child_yn, val_p); if (child) { return RW_TREE_WALKER_SUCCESS; } return RW_TREE_WALKER_FAILURE; } rw_tree_walker_status_t add_pbcm_child (ProtobufCMessage *parent, rw_confd_value_t *confd, ProtobufCFieldInfo *child_tgt, bool find_field) { if (find_field) { memset (child_tgt, 0, sizeof (ProtobufCFieldInfo)); const char *name = confd_hash2str (confd->cs_node->tag); const char *ns = confd_hash2str (confd->cs_node->ns); child_tgt->fdesc = protobuf_c_message_descriptor_get_field_by_yang ( parent->descriptor, name, ns); } child_tgt->element = nullptr; child_tgt->len = 0; RW_ASSERT(child_tgt->fdesc); confd_cs_node *cs_node = confd->cs_node; confd_value_t *child_src = confd->value; uint32_t v_uint32 = 0; int32_t v_int32 = 0; uint64_t v_uint64 = 0; int64_t v_int64 = 0; double v_double = 0.0; protobuf_c_boolean v_bool = 0; switch (child_src->type) { default: case C_NOEXISTS: case C_STR: case C_SYMBOL: RW_CRASH(); break; case C_XMLTAG: // Empty in YANG, bool in pbcm v_bool = 1; child_tgt->element = &v_bool; break; case C_BUF: child_tgt->element = CONFD_GET_BUFPTR(child_src); child_tgt->len = CONFD_GET_BUFSIZE(child_src); break; case C_INT8: v_int32 = (int32_t)CONFD_GET_INT8 (child_src); child_tgt->element = &v_int32; break; case C_INT16: v_int32 = (int32_t)CONFD_GET_INT16 (child_src); child_tgt->element = &v_int32; break; case C_INT32: v_int32 = CONFD_GET_INT32 (child_src); child_tgt->element = &v_int32; break; case C_INT64: v_int64 = CONFD_GET_INT64 (child_src); child_tgt->element = &v_int64; break; case C_UINT8: v_uint32 = (uint32_t)CONFD_GET_UINT8 (child_src); child_tgt->element = &v_uint32; break; case C_UINT16: v_uint32 = (uint32_t)CONFD_GET_UINT16 (child_src); child_tgt->element = &v_uint32; break; case C_UINT32: v_uint32 = CONFD_GET_UINT32 (child_src); child_tgt->element = &v_uint32; break; case C_UINT64: v_uint64 = CONFD_GET_UINT64 (child_src); child_tgt->element = &v_uint64; break; case C_DOUBLE: v_double = CONFD_GET_DOUBLE (child_src); child_tgt->element = &v_double; break; case C_BOOL: v_bool = CONFD_GET_BOOL(child_src); child_tgt->element = &v_bool; break; case C_QNAME: RW_CRASH(); break; case C_DATETIME: RW_CRASH(); break; case C_DATE: RW_CRASH(); break; case C_TIME: RW_CRASH(); break; case C_DURATION: RW_CRASH(); break; case C_ENUM_VALUE: v_uint32 = (uint32_t) CONFD_GET_ENUM_VALUE (child_src); child_tgt->element = &v_uint32; break; case C_BIT32: RW_CRASH(); break; case C_BIT64: RW_CRASH(); break; case C_LIST: { // ATTN: ATTN: // This code is inefficient. TAIL-F has been asked what the best method // for doing this is. Once TAILF responds, change this code. // ATTN: ATTN: // This also needs to change when protobuf representation of a leaf list // transitions to becoming a list of single elements char value[1024]; struct confd_type *ct = confd_get_leaf_list_type (cs_node); RW_ASSERT(ct); int len = confd_val2str (ct, child_src, value, sizeof (value)); if (len < 0) { return RW_TREE_WALKER_FAILURE; } bool ok = protobuf_c_message_set_field_text_value ( nullptr, parent, child_tgt->fdesc, value, len); if (ok) { return RW_TREE_WALKER_SUCCESS; } else { return RW_TREE_WALKER_FAILURE; } } break; case C_XMLBEGIN: { // Add a message bool ok = protobuf_c_message_set_field_message ( nullptr, parent, child_tgt->fdesc, (ProtobufCMessage **) &child_tgt->element); if (ok) { return RW_TREE_WALKER_SUCCESS; } else { return RW_TREE_WALKER_FAILURE; } } break; case C_XMLEND: RW_CRASH(); break; case C_OBJECTREF: RW_CRASH(); break; case C_UNION: RW_CRASH(); break; case C_PTR: RW_CRASH(); break; case C_CDBBEGIN: RW_CRASH(); break; case C_OID: RW_CRASH(); break; case C_BINARY: child_tgt->element = CONFD_GET_BINARY_PTR(child_src); child_tgt->len = CONFD_GET_BINARY_SIZE(child_src); break; case C_DECIMAL64: case C_IPV4: case C_IPV6: case C_IPV4PREFIX: case C_IPV4_AND_PLEN: case C_IPV6_AND_PLEN: case C_IPV6PREFIX: { char value[1024]; struct confd_type *ct = cs_node->info.type; int len = confd_val2str (ct, child_src, value, sizeof (value)); if (len < 0) { return RW_TREE_WALKER_FAILURE; } bool ok = protobuf_c_message_set_field_text_value ( nullptr, parent, child_tgt->fdesc, value, len); if (ok) { return RW_TREE_WALKER_SUCCESS; } else { return RW_TREE_WALKER_FAILURE; } } break; case C_DEFAULT: RW_CRASH(); break; case C_IDENTITYREF: RW_CRASH(); break; case C_XMLBEGINDEL: RW_CRASH(); break; case C_DQUAD: RW_CRASH(); break; case C_HEXSTR: RW_CRASH(); break; } bool ok = protobuf_c_message_set_field (nullptr, parent, child_tgt); if (ok) { return RW_TREE_WALKER_SUCCESS; } return RW_TREE_WALKER_FAILURE; } rw_status_t get_string_value (rw_confd_value_t *v, std::string& str) { str.clear(); if (v->value) { if (v->cs_node->info.type) { char value[1024]; struct confd_type *ct = v->cs_node->info.type; if (C_LIST == v->cs_node->info.shallow_type) { ct = confd_get_leaf_list_type (v->cs_node); RW_ASSERT(ct); } int len = confd_val2str (ct, v->value,value, sizeof (value)); if (len < 0) { return RW_STATUS_FAILURE; } RW_ASSERT ((size_t) len < sizeof (value)); str = value; } else { str = confd_hash2str(v->cs_node->tag); } } return RW_STATUS_SUCCESS; } rw_status_t get_string_value (const RwTLVAIterator *iter, std::string& str) { rw_ylib_data_t val; rw_status_t rs = iter->get_value(&val); RW_ASSERT(RW_STATUS_SUCCESS == rs); return get_string_value(&val.rw_confd, str); } // Copiers for PBCM iterator rw_tree_walker_status_t build_and_move_iterator_child_value (RwPbcmTreeIterator* parent_iter, RwTLVAIterator* child_iter) { ProtobufCMessage *parent; rw_status_t rs = parent_iter->get_value (parent); RW_ASSERT(RW_STATUS_SUCCESS == rs); if (nullptr == parent) { return RW_TREE_WALKER_FAILURE; } ProtobufCFieldInfo child; memset (&child, 0, sizeof (child)); rw_ylib_data_t tlv_child; rs = child_iter->get_value(&tlv_child); RW_ASSERT(RW_STATUS_SUCCESS == rs); RW_ASSERT(RW_YLIB_DATA_TYPE_CONFD == tlv_child.type); rw_tree_walker_status_t rt = add_pbcm_child (parent, &tlv_child.rw_confd, &child, true); if (rt != RW_TREE_WALKER_SUCCESS) { // no need to move to a child return rt; } // Move to the last child of this type for now? this wont work when // things are sorted properly for leaf lists, and lists? rs = parent_iter->move_to_child (child.fdesc,RW_YLIB_LIST_POSITION_LAST); if (RW_STATUS_SUCCESS != rs) { return RW_TREE_WALKER_FAILURE; } return rt; } // Copiers for Schema Iterators rw_tree_walker_status_t build_and_move_iterator_child_value (RwSchemaTreeIterator* parent_iter, RwHKeyPathIterator* child_iter) { rw_ylib_data_t tlv_child; rw_status_t rs = child_iter->get_value(&tlv_child); RW_ASSERT(RW_STATUS_SUCCESS == rs); rw_confd_value_t *v = &tlv_child.rw_confd; const char *name = confd_hash2str(v->cs_node->tag); const char *ns = confd_hash2str (v->cs_node->ns); rs = RW_STATUS_FAILURE; if (v->value->type == C_XMLTAG) { rs = parent_iter->move_to_first_child(); if ((RW_STATUS_SUCCESS != rs) || strcmp(parent_iter->get_yang_node_name(), name) || strcmp(parent_iter->get_yang_ns(), ns)) { return RW_TREE_WALKER_FAILURE; } return RW_TREE_WALKER_SUCCESS; } // Not an XML tag - have to add a value rw_keyspec_entry_t* parent = nullptr; rs = parent_iter->get_value(parent); ProtobufCFieldInfo child; memset (&child, 0, sizeof (child)); const ProtobufCFieldDescriptor *k_desc = nullptr; rs = rw_keyspec_path_key_descriptors_by_yang_name (parent, name, ns, &k_desc, &child.fdesc); RW_ASSERT(RW_STATUS_SUCCESS == rs) ; RW_ASSERT(k_desc); RW_ASSERT(k_desc->quantifier_offset); RW_ASSERT(child.fdesc); rw_tree_walker_status_t rt = add_pbcm_child ( STRUCT_MEMBER_PTR (ProtobufCMessage, parent,k_desc->offset), v, &child,false); if (rt == RW_TREE_WALKER_SUCCESS) { // Mark the key as present in the path - // ATTN - Maybe all this needs to be consolidated as a single call into // rw_keyspec *(STRUCT_MEMBER_PTR (uint32_t, parent, k_desc->quantifier_offset)) = 1; rs = parent_iter->move_to_child(k_desc); RW_ASSERT(RW_STATUS_SUCCESS == rs); } return rt; } // Copiers for Confd TLV List Iterators rw_tree_walker_status_t build_and_move_iterator_child_value (RwTLVListIterator* parent_iter, RwPbcmTreeIterator* child_iter) { rw_ylib_data_t child_val; rw_status_t rs = child_iter->get_value(&child_val); RW_ASSERT(RW_STATUS_SUCCESS == rs); RwTLVListIterator::tlv_list_iter_t parent,child; rs = parent_iter->get_value(parent); if (rs != RW_STATUS_SUCCESS) { return RW_TREE_WALKER_FAILURE; } // Adding a child needs zero (leaf list with existing confd TLV), one // (leaf with no existing confd TLV) or two (containers and lists) confd // TLV value rw_tree_walker_status_t rt = RW_TREE_WALKER_FAILURE; RW_ASSERT(RW_YLIB_DATA_TYPE_PB == child_val.type); rt = add_tlv_list_child (parent_iter, &child_val.rw_pb, child_iter->get_yang_node_name(), child_iter->get_yang_ns(), child); if (rt != RW_TREE_WALKER_SUCCESS) { // no need to move to a child return rt; } rs = parent_iter->move_to_child (child); RW_ASSERT(RW_STATUS_SUCCESS == rs); return rt; } }
[ "Leslie.Giles@riftio.com" ]
Leslie.Giles@riftio.com
60f6ca7d8e6e2470fcf27b04650950890d1d5e1d
e93e33cdf3df6aa6f41dc0c61ebd425a2bb730f7
/advanced_programming_ex06/advanced_programming_ex06/Diary.cpp
c94e6585db947ede037660c458c886cff043ed18
[]
no_license
arielstolerman/tau-cs-spring-2010-advanced-topics-in-programming-ariel-shay
537f4936e1c6a386952c4cc81af0f26deb300578
714cbf1d0b1555b3a3c673143f02af0a584a1648
refs/heads/master
2021-01-20T09:32:59.237122
2011-12-20T05:45:45
2011-12-20T05:45:45
32,401,930
0
0
null
null
null
null
UTF-8
C++
false
false
4,248
cpp
/****************************************************************************** * Exercise 06 - Advanced Programming 2010b, TAU. * Authors: Ariel Stolerman (-) and Shay Davidson (-). * Diary Source File. *****************************************************************************/ #include "stdafx.h" #include "Diary.h" using namespace std; // CTOR: Diary::Diary() { for (int i = 1; i < 6; i++) { m_days.push_back(new Day(i)); } } // Adds meeting by pointer. Returns 1 on success, 0 on failure. int Diary::addMeeting(Meeting* meeting) { int day = meeting->getDay(); if (day >= 6) { cout << "Unable to add new meetings on Friday or Sautrday." << endl; return 0; } if (!meeting->getMeetingTime().isValidMeetingTime()) { cout << "Meeting has invalid time (non-legal time / ending time before starting time)." << endl; return 0; } // if passed criteria, check if new meeting is not overlapping any other meeting in this day. for (int i = 0; i < (int) m_days[day-1]->m_meetings.size(); i++) { if (*m_days[day-1]->m_meetings[i] == *meeting) // using Meeting == operator { cout << "A meeting overlapping the given day and time exists, cannot set meeting." << endl; return 0; } } // safe to insert meeting into day schedule, sorted by hours if (m_days[day-1]->m_meetings.empty()){ m_days[day-1]->m_meetings.push_back(meeting); } else { vector<Meeting*>::iterator it = m_days[day-1]->m_meetings.begin(); vector<Meeting*>::iterator vec_end = m_days[day-1]->m_meetings.end(); // get to the position to insert the new meeting into while (it != vec_end && (*it)->getStartHour() < meeting->getStartHour()) it++; m_days[day-1]->m_meetings.insert(it,meeting); } return 1; } // Removes meeting by pointer. void Diary::removeMeeting(const Meeting* meeting) { int day = meeting->getDay(); MeetingTime thisTime = meeting->getMeetingTime(); for (int i = 0; i < (int) m_days[day-1]->m_meetings.size(); i++) { MeetingTime thatTime = m_days[day-1]->m_meetings[i]->getMeetingTime(); if (thisTime == thatTime) { m_days[day-1]->m_meetings.erase(m_days[day-1]->m_meetings.begin()+i); break; } } } // Finds meeting according to day and time. Returns pointer to meeting found overlapping the // given day and time, or NULL if didn't find such meeting. Meeting* Diary::findMeeting(int day, int hour, int mins) const { MeetingTime givenTime = MeetingTime(hour,mins,hour,mins); // create a "0-time" interval to check overlapping time-frames later for (int i = 0; i < (int) m_days[day-1]->m_meetings.size(); i++) { MeetingTime meetingTime = m_days[day-1]->m_meetings[i]->getMeetingTime(); if (meetingTime.isOverlapping(givenTime)) { return m_days[day-1]->m_meetings[i]; } } return NULL; } // Moves meeting to new day and time. Meeting length remains the same. void Diary::moveMeeting(Meeting* meeting, int newDay, int newHour, int newMins) { if (newDay >=6) { cout << "Unable to move meetings to Friday or Sautrday." << endl; } else { int hour_length = meeting->getEndHour() - meeting->getStartHour(); int mins_length = meeting->getEndMins() - meeting->getStartMins(); if (mins_length < 0){ hour_length -= 1; mins_length += 60; } // calculate new ending time int newEndHour = newHour + hour_length; int newEndMins = newMins + mins_length; if (newEndMins >= 60){ newEndHour += 1; newEndMins -= 60; } // check validity of new ending time if (newEndHour >= 24) { cout << "Unable to move meeting so it crosses 2 days." << endl; } else { // saving for backup incase adding fails. int oldDay = meeting->getDay(); MeetingTime oldTime = meeting->getMeetingTime(); removeMeeting(meeting); meeting->setDay(newDay); MeetingTime newTime = MeetingTime(newHour,newMins,newEndHour,newEndMins); meeting->setMeetingTime(newTime); if (!addMeeting(meeting)) { meeting->setDay(oldDay); meeting->setMeetingTime(oldTime); addMeeting(meeting); } } } } // Print Method: void Diary::print(void) const { ostrstream output; output << "DIARY FOR THIS WEEK" << endl; for (int i = 0; i < (int)m_days.size(); i++) { output << (*m_days[i]) << endl; } output << ends; cout << output.str() << endl; }
[ "arielstolerman@885801dc-8b0f-3d06-18ec-ad975b9ac306" ]
arielstolerman@885801dc-8b0f-3d06-18ec-ad975b9ac306
09596fa4e4a5db0931dc5d0d316a3197104dfc1d
68c7d60bcbfd7b2b887d8dfd64bbec0bd710c9da
/2588.cpp
04396bf02eef34b6c89e75d1562538200ef8cc4c
[]
no_license
1000ship/BOJ
42b6cc67b06412fb95f132849f6d5843f6feb351
491d479fbd57663f297a935f3505650bc840744e
refs/heads/master
2021-08-03T23:36:50.788794
2021-07-22T01:10:59
2021-07-22T01:10:59
212,285,659
1
0
null
null
null
null
UTF-8
C++
false
false
176
cpp
#include <stdio.h> int main ( void ) { int a, b; scanf( "%d %d", &a, &b ); printf( "%d\n%d\n%d\n%d", a*(b%10), a*((b/10)%10), a*((b/100)%10), a*b); return 0; }
[ "cjstjdgur1234@gmail.com" ]
cjstjdgur1234@gmail.com
0ca695a73c2f9daa81d968168cd3920b6fc29ed8
df02b8cdf15be1d973bb1462ea57891a9ab6255c
/widgets/canvas/SceneBackground.cpp
b8b8feecf50ff0843dbde4c5dde5cfabb5293c40
[]
no_license
coder89/PhotoFramesEditor
6d965fa87884d5d46110d9e87d2879046c562170
5c6e54085387aa603944bf931ab99a8991a2e331
refs/heads/master
2021-01-20T01:03:47.857809
2011-08-31T13:30:07
2011-08-31T13:30:07
1,955,861
0
0
null
null
null
null
UTF-8
C++
false
false
21,356
cpp
#include "SceneBackground.h" #include "global.h" #include <QPainter> #include <QGraphicsScene> #include <QUndoCommand> #include <QStyleOptionGraphicsItem> #include <QDebug> #include <QPixmap> #include <QBuffer> #include <klocalizedstring.h> using namespace KIPIPhotoFramesEditor; class KIPIPhotoFramesEditor::SceneBackground::BackgroundImageChangedCommand : public QUndoCommand { QImage m_image; Qt::Alignment m_alignment; Qt::AspectRatioMode m_aspect_ratio; QSize m_size; bool m_repeat; SceneBackground * m_backgropund_item; public: BackgroundImageChangedCommand(const QImage & image, Qt::Alignment alignment, const QSize & size, bool repeat, SceneBackground * backgroundItem, QUndoCommand * parent = 0) : QUndoCommand(i18n("Background changed"), parent), m_image(image), m_alignment(alignment), m_size(size), m_repeat(repeat), m_backgropund_item(backgroundItem) { } BackgroundImageChangedCommand(const QImage & image, Qt::Alignment alignment, Qt::AspectRatioMode aspectRatio, bool repeat, SceneBackground * backgroundItem, QUndoCommand * parent = 0) : QUndoCommand(i18n("Background changed"), parent), m_image(image), m_alignment(alignment), m_aspect_ratio(aspectRatio), m_repeat(repeat), m_backgropund_item(backgroundItem) { } virtual void redo() { run(); } virtual void undo() { run(); } void run() { QImage temp = m_backgropund_item->m_image; m_backgropund_item->m_image = m_image; m_backgropund_item->m_first_brush.setTextureImage(m_image); m_image = temp; Qt::Alignment temp2 = m_backgropund_item->m_image_align; m_backgropund_item->m_image_align = m_alignment; m_alignment = temp2; Qt::AspectRatioMode temp3 = m_backgropund_item->m_image_aspect_ratio; m_backgropund_item->m_image_aspect_ratio = m_aspect_ratio; m_aspect_ratio = temp3; bool temp4 = m_backgropund_item->m_image_repeat; m_backgropund_item->m_image_repeat = m_repeat; m_repeat = temp4; QSize temp5 = m_backgropund_item->m_image_size; m_backgropund_item->m_image_size = m_size.isValid() ? m_size : m_image.size(); m_size = temp5; m_backgropund_item->render(); m_backgropund_item->update(); } }; class KIPIPhotoFramesEditor::SceneBackground::BackgroundFirstBrushChangeCommand : public QUndoCommand { QBrush m_brush; SceneBackground * m_background; public: BackgroundFirstBrushChangeCommand(const QBrush & brush, SceneBackground * background, QUndoCommand * parent = 0) : QUndoCommand(i18n("Background changed"), parent), m_brush(brush), m_background(background) {} virtual void redo() { this->run(); } virtual void undo() { this->run(); } void run() { QBrush temp = m_background->m_first_brush; m_background->m_first_brush = m_brush; m_brush = temp; m_background->render(); m_background->update(); } }; class KIPIPhotoFramesEditor::SceneBackground::BackgroundSecondBrushChangeCommand : public QUndoCommand { QBrush m_brush; SceneBackground * m_background; public: BackgroundSecondBrushChangeCommand(const QBrush & brush, SceneBackground * background, QUndoCommand * parent = 0) : QUndoCommand(i18n("Background changed"), parent), m_brush(brush), m_background(background) {} virtual void redo() { this->run(); } virtual void undo() { this->run(); } void run() { QBrush temp = m_background->m_second_brush; m_background->m_second_brush = m_brush; m_brush = temp; m_background->render(); m_background->update(); } }; SceneBackground::SceneBackground(QGraphicsScene * scene) : QGraphicsItem(0, scene), m_first_brush(Qt::transparent), m_second_brush(Qt::transparent) { this->setZValue(-1.0/0.0); this->setFlags(0); this->sceneChanged(); } QRectF SceneBackground::boundingRect() const { return m_rect; } void SceneBackground::setSecondColor(const QColor & color) { bool colorChanged = (m_second_brush.color() != color); bool patternChanged = (m_second_brush.style() != Qt::SolidPattern); if (colorChanged || patternChanged) { QUndoCommand * command = new BackgroundSecondBrushChangeCommand(QBrush(color), this); PFE_PostUndoCommand(command); } } void SceneBackground::setSolidColor(const QColor & color) { bool colorChanged = (m_first_brush.color() != color); bool patternChaged = (m_first_brush.style() != Qt::SolidPattern); bool secondColorChanged = (m_second_brush.color() != Qt::transparent); QUndoCommand * parent = 0; QUndoCommand * command = 0; if ((colorChanged && secondColorChanged) || (patternChaged && secondColorChanged)) parent = new QUndoCommand(i18n("Background changed")); if (colorChanged || patternChaged) command = new BackgroundFirstBrushChangeCommand(QBrush(color), this, parent); if (secondColorChanged) command = new BackgroundSecondBrushChangeCommand(QBrush(Qt::transparent), this, parent); if (parent) PFE_PostUndoCommand(parent); else if (command) PFE_PostUndoCommand(command); } void SceneBackground::setPattern(const QColor & firstColor, const QColor & secondColor, Qt::BrushStyle patternStyle) { bool color1Changed = (firstColor != m_first_brush.color() || patternStyle != m_first_brush.style()); bool color2Changed = (secondColor != m_second_brush.color() || m_second_brush.style() != Qt::SolidPattern); QUndoCommand * parent = 0; if (color1Changed && color2Changed) parent = new QUndoCommand("Background changed"); QUndoCommand * command = 0; if (color1Changed) command = new BackgroundFirstBrushChangeCommand(QBrush(firstColor, patternStyle), this, parent); if (color2Changed) command = new BackgroundSecondBrushChangeCommand(QBrush(secondColor, Qt::SolidPattern), this, parent); if (parent) PFE_PostUndoCommand(parent); else PFE_PostUndoCommand(command); } void SceneBackground::setImage(const QImage & image, const QColor & backgroundColor, Qt::Alignment align, Qt::AspectRatioMode aspectRatio, bool repeat) { bool imageChanged = (m_first_brush.textureImage() != image || m_first_brush.style() != Qt::TexturePattern || m_image_align != align || m_image_aspect_ratio != aspectRatio || m_image_repeat != repeat); bool colorChanged = (m_second_brush.color() != backgroundColor || m_second_brush.style() != Qt::SolidPattern); QUndoCommand * parent = 0; if (imageChanged && colorChanged) parent = new QUndoCommand(i18n("Background changed")); QUndoCommand * command = 0; if (imageChanged) command = new BackgroundImageChangedCommand(image, align, aspectRatio, repeat, this, parent); if (colorChanged) command = new BackgroundSecondBrushChangeCommand(QBrush(backgroundColor, Qt::SolidPattern), this, parent); if (parent) PFE_PostUndoCommand(parent); else if (command) PFE_PostUndoCommand(command); } void SceneBackground::setImage(const QImage & image, const QColor & backgroundColor, Qt::Alignment align, const QSize & fixedSize, bool repeat) { bool imageChanged = (m_first_brush.textureImage() != image || m_first_brush.style() != Qt::TexturePattern || m_image_align != align || m_image_size != fixedSize || m_image_repeat != repeat); bool colorChanged = (m_second_brush.color() != backgroundColor || m_second_brush.style() != Qt::SolidPattern); QUndoCommand * parent = 0; if (imageChanged && colorChanged) parent = new QUndoCommand(i18n("Background changed")); QUndoCommand * command = 0; if (imageChanged) command = new BackgroundImageChangedCommand(image, align, fixedSize, repeat, this, parent); if (colorChanged) command = new BackgroundSecondBrushChangeCommand(QBrush(backgroundColor, Qt::SolidPattern), this, parent); if (parent) PFE_PostUndoCommand(parent); else if (command) PFE_PostUndoCommand(command); } bool SceneBackground::isColor() const { return m_first_brush.style() == Qt::SolidPattern; } bool SceneBackground::isGradient() const { return m_first_brush.style() == Qt::LinearGradientPattern || m_first_brush.style() == Qt::RadialGradientPattern || m_first_brush.style() == Qt::ConicalGradientPattern; } bool SceneBackground::isImage() const { return m_first_brush.style() == Qt::TexturePattern; } bool SceneBackground::isPattern() const { return !(isColor() || isGradient() || isImage()); } QDomElement SceneBackground::toSvg(QDomDocument & document) const { QDomElement result = document.createElement("g"); result.setAttribute("id", "background"); QDomElement defs = document.createElement("defs"); result.appendChild(defs); QDomElement type = document.createElement("type"); defs.appendChild(type); if (this->isColor()) { type.appendChild( document.createTextNode("color") ); QDomElement rect = document.createElement("rect"); rect.setAttribute("width", m_rect.width()); rect.setAttribute("height", m_rect.height()); rect.setAttribute("x", 0); rect.setAttribute("y", 0); rect.setAttribute("fill", m_first_brush.color().name()); rect.setAttribute("opacity", QString::number(m_first_brush.color().alphaF())); result.appendChild(rect); } else if (this->isPattern()) { QDomElement pattern = document.createElement("image"); pattern.setAttribute("width", m_pixmap.rect().width()); pattern.setAttribute("height", m_pixmap.rect().height()); pattern.setAttribute("x", 0); pattern.setAttribute("y", 0); QByteArray byteArray; QBuffer buffer(&byteArray); m_pixmap.save(&buffer, "PNG"); pattern.setAttribute("xlink:href", QString("data:image/png;base64,") + byteArray.toBase64()); result.appendChild(pattern); type.appendChild( document.createTextNode("pattern") ); QDomElement bs = document.createElement("brush_style"); bs.appendChild( document.createTextNode(QString::number(m_first_brush.style())) ); defs.appendChild(bs); QDomElement c1 = document.createElement("color1"); c1.appendChild( document.createTextNode(m_first_brush.color().name()) ); c1.setAttribute("opacity", QString::number(m_first_brush.color().alphaF()) ); defs.appendChild(c1); QDomElement c2 = document.createElement("color2"); c2.appendChild( document.createTextNode(m_second_brush.color().name()) ); c2.setAttribute("opacity", QString::number(m_second_brush.color().alphaF()) ); defs.appendChild(c2); } else if (this->isImage()) { type.appendChild( document.createTextNode("image") ); QSize s = m_first_brush.textureImage().size(); QDomElement pattern = document.createElement("pattern"); pattern.setAttribute("x", QString::number(m_first_brush.transform().m31())); pattern.setAttribute("y", QString::number(m_first_brush.transform().m32())); pattern.setAttribute("width", QString::number(s.width())+"px"); pattern.setAttribute("height",QString::number(s.height())+"px"); pattern.setAttribute("patternUnits", "userSpaceOnUse"); defs.appendChild(pattern); QDomElement image = document.createElement("image"); QByteArray byteArray; QBuffer buffer(&byteArray); m_image.save(&buffer, "PNG"); image.setAttribute("width", QString::number(s.width())+"px"); image.setAttribute("height",QString::number(s.height())+"px"); image.setAttribute("xlink:href",QString("data:image/png;base64,")+byteArray.toBase64()); pattern.setAttribute("id", QString::number(qChecksum(byteArray.constData(), byteArray.length())).append("bkg")); pattern.appendChild(image); QDomElement align = document.createElement("align"); align.appendChild( document.createTextNode(QString::number(m_image_align)) ); defs.appendChild(align); QDomElement aspect_ratio = document.createElement("aspect_ratio"); aspect_ratio.appendChild( document.createTextNode(QString::number(m_image_aspect_ratio)) ); defs.appendChild(aspect_ratio); QDomElement repeat = document.createElement("repeat"); repeat.appendChild( document.createTextNode(QString::number(m_image_repeat)) ); defs.appendChild(repeat); QDomElement bColor = document.createElement("background_color"); bColor.appendChild( document.createTextNode(m_second_brush.color().name()) ); bColor.setAttribute("opacity", QString::number(m_second_brush.color().alphaF())); defs.appendChild(bColor); QDomElement bckColor = document.createElement("rect"); bckColor.setAttribute("x", 0); bckColor.setAttribute("y", 0); bckColor.setAttribute("width", m_pixmap.width()); bckColor.setAttribute("height",m_pixmap.height()); bckColor.setAttribute("fill", m_second_brush.color().name()); bckColor.setAttribute("opacity", QString::number(m_second_brush.color().alphaF())); result.appendChild(bckColor); QDomElement bckg = document.createElement("rect"); if (m_image_repeat) { bckg.setAttribute("x", 0); bckg.setAttribute("y", 0); bckg.setAttribute("width", m_pixmap.width()); bckg.setAttribute("height",m_pixmap.height()); } else { bckg.setAttribute("x", pattern.attribute("x")); bckg.setAttribute("y", pattern.attribute("y")); bckg.setAttribute("width", pattern.attribute("width")); bckg.setAttribute("height",pattern.attribute("height")); } bckg.setAttribute("fill", "url(#"+pattern.attribute("id")+")"); result.appendChild(bckg); } else if (this->isGradient()) { type.appendChild( document.createTextNode("gradient") ); } return result; } bool SceneBackground::fromSvg(QDomElement & element) { QDomNodeList list = element.childNodes(); QDomElement background; for (int i = list.count()-1; i >= 0; --i) { if (!list.at(i).isElement()) continue; background = list.at(i).toElement(); if (background.attribute("id") != "background") { background = QDomElement(); continue; } } if (background.isNull()) return false; QDomElement defs = background.firstChildElement("defs"); if (defs.isNull()) return false; QString type = defs.firstChildElement("type").text(); if (type == "color") { QDomElement rect = background.firstChildElement("rect"); if (rect.isNull()) return false; QColor color(rect.attribute("fill")); color.setAlphaF(rect.attribute("opacity").toDouble()); if (!color.isValid()) return false; m_first_brush.setColor(color); } else if (type == "pattern") { bool ok = true; QDomElement bse = defs.firstChildElement("brush_style"); if (bse.isNull()) return false; Qt::BrushStyle bs = (Qt::BrushStyle) bse.text().toInt(&ok); QDomElement c1e = defs.firstChildElement("color1"); if (c1e.isNull()) return false; QColor color1 = c1e.text(); color1.setAlphaF(c1e.attribute("opacity").toInt()); QDomElement c2e = defs.firstChildElement("color2"); if (c2e.isNull()) return false; QColor color2 = c2e.text(); color2.setAlphaF(c2e.attribute("opacity").toInt()); if (!color1.isValid() || !color2.isValid() || !ok || bs <= Qt::SolidPattern || bs >= Qt::LinearGradientPattern) return false; m_first_brush.setStyle(bs); m_first_brush.setColor(color1); m_second_brush.setStyle(Qt::SolidPattern); m_second_brush.setColor(color2); } else if (type == "image") { m_image_align = (Qt::Alignment) defs.firstChildElement("align").text().toInt(); m_image_aspect_ratio = (Qt::AspectRatioMode) defs.firstChildElement("aspect_ratio").text().toInt(); m_image_repeat = (bool) defs.firstChildElement("repeat").text().toInt(); QDomElement pattern = defs.firstChildElement("pattern"); if (pattern.isNull()) return false; QDomElement image = pattern.firstChildElement("image"); if (image.isNull()) return false; m_image_size.setWidth(image.attribute("width").remove("px").toInt()); m_image_size.setHeight(image.attribute("height").remove("px").toInt()); m_image = QImage::fromData( QByteArray::fromBase64(image.attributeNS("http://www.w3.org/1999/xlink", "href").remove("data:image/png;base64,").toAscii()) ); m_first_brush.setTextureImage(m_image.scaled(m_image_size, m_image_aspect_ratio)); QDomElement bColor = defs.firstChildElement("background_color"); QColor backgroundColor(bColor.text()); backgroundColor.setAlphaF(bColor.attribute("opacity").toDouble()); m_second_brush.setColor(backgroundColor); } else if (type == "gradient") {} else return false; render(); return true; } QColor SceneBackground::firstColor() const { return m_first_brush.color(); } QColor SceneBackground::secondColor() const { return m_second_brush.color(); } Qt::BrushStyle SceneBackground::pattern() const { return m_first_brush.style(); } QImage SceneBackground::image() const { return m_image; } Qt::Alignment SceneBackground::imageAlignment() const { return m_image_align; } Qt::AspectRatioMode SceneBackground::imageAspectRatio() const { return m_image_aspect_ratio; } QSize SceneBackground::imageSize() const { return m_image_size; } bool SceneBackground::imageRepeated() const { return m_image_repeat; } QVariant SceneBackground::itemChange(GraphicsItemChange change, const QVariant &value) { switch(change) { case QGraphicsItem::ItemParentChange: return QVariant(0); case QGraphicsItem::ItemSceneHasChanged: sceneChanged(); default: return QGraphicsItem::itemChange(change, value); } } void SceneBackground::paint(QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * /*widget*/) { if (!m_rect.isValid()) return; painter->setRenderHint(QPainter::SmoothPixmapTransform); painter->drawPixmap(QPoint(0,0), m_pixmap, option->exposedRect); } void SceneBackground::render() { this->m_pixmap.fill(Qt::transparent); QPainter p(&this->m_pixmap); this->render(&p, this->m_pixmap.rect()); } void SceneBackground::render(QPainter * painter, const QRect & rect) { if (!rect.isValid()) return; QRect r = rect; painter->save(); painter->fillRect(r, m_second_brush); if (this->isImage()) { QSize scaleSize = (m_image_aspect_ratio == Qt::IgnoreAspectRatio ? m_image_size : rect.size()); m_first_brush.setTextureImage( m_image.scaled(scaleSize, m_image_aspect_ratio, Qt::SmoothTransformation) ); m_image_size = m_first_brush.textureImage().size(); QSize bgSize = rect.size(); QSize imSize = m_first_brush.textureImage().size(); QTransform tr; qreal x = 0; if (m_image_align & Qt::AlignHCenter) x = (bgSize.width() - imSize.width()) / 2.0; else if (m_image_align & Qt::AlignRight) x = bgSize.width() - imSize.width(); qreal y = 0; if (m_image_align & Qt::AlignVCenter) y = (bgSize.height() - imSize.height()) / 2.0; else if (m_image_align & Qt::AlignBottom) y = bgSize.height() - imSize.height(); tr.translate(x,y); m_first_brush.setTransform(tr); if (!this->m_image_repeat) r = m_first_brush.transform().mapRect(QRect(0, 0, m_image_size.width(), m_image_size.height())); } painter->fillRect(r, m_first_brush); painter->restore(); } void SceneBackground::sceneChanged() { this->disconnect(0, 0, this, SLOT(sceneRectChanged(QRectF))); if (scene()) { sceneRectChanged(scene()->sceneRect()); this->connect(scene(), SIGNAL(sceneRectChanged(QRectF)), this, SLOT(sceneRectChanged(QRectF))); } else sceneRectChanged(QRectF()); } void SceneBackground::sceneRectChanged(const QRectF & sceneRect) { if (sceneRect.isValid()) { m_rect = sceneRect; m_pixmap = QPixmap(m_rect.size().toSize()); m_pixmap.fill(Qt::transparent); QPainter p(&m_pixmap); render(&p, m_rect.toRect()); } else m_rect = QRectF(); }
[ "lukasz.spas@gmail.com" ]
lukasz.spas@gmail.com
6bc95195bb5072c9fcd2c38c9bf1c1142c6d1f92
9ab0bce5cca0e3aa0965bbd58d212144d8c51669
/include/modules/nickserv/set_misc.h
18d49dd0f3de621a301cabf6cb11a03760dbe01d
[]
no_license
Adam-/anope
250671fae7b9e18b5ee734893faabcc85ca4f76e
a3c8afae00c54d5b95c620248b51f90679d7d53f
refs/heads/master
2023-06-08T13:34:59.062359
2016-01-03T22:15:31
2016-01-03T22:16:55
6,416,073
1
0
null
null
null
null
UTF-8
C++
false
false
639
h
/* * (C) 2014 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. */ class NSMiscData : public Serialize::Object { protected: using Serialize::Object::Object; public: virtual NickServ::Account *GetAccount() anope_abstract; virtual void SetAccount(NickServ::Account *) anope_abstract; virtual Anope::string GetName() anope_abstract; virtual void SetName(const Anope::string &) anope_abstract; virtual Anope::string GetData() anope_abstract; virtual void SetData(const Anope::string &) anope_abstract; }; static Serialize::TypeReference<NSMiscData> nsmiscdata("NSMiscData");
[ "Adam@anope.org" ]
Adam@anope.org
1d840f64e4056f4bc95853136cbb01ad4f90e0a8
4a8c93591269fba8e7f87ffacf2d1e18f049a682
/Uva/10193.cpp
521828c6e552e296e556ea3349db733a3bcf976e
[]
no_license
Pooh1223/Online-Judge
fd3c237b21bd07396e841b4d077a997c51383d8a
afb208ccc5ecc6f3fa42693d190dc64e19195ff6
refs/heads/master
2020-07-25T19:28:30.163074
2020-06-29T15:15:32
2020-06-29T15:15:32
208,401,769
0
0
null
null
null
null
UTF-8
C++
false
false
512
cpp
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i = 1;i <= n;++i){ string s1,s2; cin >> s1 >> s2; bitset<32> b1(s1); bitset<32> b2(s2); long long nm1 = b1.to_ulong(),nm2 = b2.to_ulong(); cout << "Pair #" << i << ": "; if(__gcd(nm1,nm2) == 1){ cout << "Love is not all you need!\n"; } else { cout << "All you need is love!\n"; } } return 0; }
[ "leo891223@gmail.com" ]
leo891223@gmail.com
daa8f1e00d46d184edc7391918713711272b16e8
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/inetsrv/msmq/src/mqsec/encrypt/pbkeys.cpp
89ddb21923ff7733d63b974352b500fb4e4cde62
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
28,512
cpp
/*++ Copyright (c) 1996 Microsoft Corporation Module Name: pbkeys.cpp Abstract: Public keys operations. 1. If the machine key container does not exist, create it, and create the key exchange and signature key sets. 2. If the machine key container exist and the keys should be re-generated (fRegenerate == TRUE), re-generate the keys. 3. Send the key exchange public key to the DS. 4. Send the signature public key to the DS. Author: Boaz Feldbaum (BoazF) 30-Oct-1996. Doron Juster (DoronJ) 23-Nov-1998, adapt for multiple provider Ilan Herbst (ilanh) 01-Jun-2000, integrate AD lib --*/ #include <stdh_sec.h> #include <mqutil.h> #include <dsproto.h> #include "encrypt.H" #include <uniansi.h> #include "ad.h" #include "pbkeys.tmh" static WCHAR *s_FN=L"encrypt/pbkeys"; // // DsEnv Initialization Control // static LONG s_fDsEnvInitialized = FALSE; static eDsEnvironment s_DsEnv = eUnknown; static bool DsEnvIsMqis(void) /*++ Routine Description: check the Ds Enviroment: eAD or eMqis Arguments: None Returned Value: true if the DsEnv is eMqis false if eAD or eUnknown (Workgroup) --*/ { if(!s_fDsEnvInitialized) { // // The s_DsEnv was not initialized, init s_DsEnv // s_DsEnv = ADGetEnterprise(); LONG fDsEnvAlreadyInitialized = InterlockedExchange(&s_fDsEnvInitialized, TRUE); // // The s_DsEnv has *already* been initialized. You should // not initialize it more than once. This assertion would be violated // if two or more threads initalize it concurently. // DBG_USED(fDsEnvAlreadyInitialized); ASSERT(!fDsEnvAlreadyInitialized); } if(s_DsEnv == eMqis) return true; // // eAD or eUnknown (WorkGroup) // return false; } //+------------------------------------------------------------------- // // HRESULT SetKeyContainerSecurity( HCRYPTPROV hProv ) // // Note: This function is also called when registering an internal // certificte for LocalSystem service. // //+------------------------------------------------------------------- HRESULT SetKeyContainerSecurity( HCRYPTPROV hProv ) { // // Modify the security of the key container, so that the key container // will not be accessible in any way by non-admin users. // SECURITY_DESCRIPTOR SD; PSID pAdminSid; P<ACL> pDacl; DWORD dwDaclSize; SID_IDENTIFIER_AUTHORITY NtSecAuth = SECURITY_NT_AUTHORITY; InitializeSecurityDescriptor(&SD, SECURITY_DESCRIPTOR_REVISION); AllocateAndInitializeSid( &NtSecAuth, 2, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &pAdminSid ); dwDaclSize = sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) + GetLengthSid(pAdminSid) - sizeof(DWORD); pDacl = (PACL)(char*) new BYTE[dwDaclSize]; InitializeAcl(pDacl, dwDaclSize, ACL_REVISION); AddAccessAllowedAce(pDacl, ACL_REVISION, KEY_ALL_ACCESS, pAdminSid); SetSecurityDescriptorDacl(&SD, TRUE, pDacl, FALSE); if (!CryptSetProvParam( hProv, PP_KEYSET_SEC_DESCR, (BYTE*)&SD, DACL_SECURITY_INFORMATION )) { DBGMSG((DBGMOD_SECURITY, DBGLVL_ERROR, _T("Can't set the security descriptor of the machine key set. %!winerr!"), GetLastError())); FreeSid(pAdminSid); return LogHR(MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR, s_FN, 30) ; } FreeSid(pAdminSid); return(MQ_OK); } //+--------------------------------------- // // HRESULT _ExportAndPackKey() // //+--------------------------------------- STATIC HRESULT _ExportAndPackKey( IN HCRYPTKEY hKey, IN WCHAR *pwszProviderName, IN DWORD dwProviderType, IN OUT P<MQDSPUBLICKEYS>& pPublicKeysPack ) /*++ Routine Description: Export the input key into a keyblob and Pack it in the end of the PublicKeysPack structure Arguments: hKey - input key to be exported and packed pwszProviderName - provider name dwProviderType - provider type (base, enhanced) pPublicKeysPack - in\out Pointer to Public keys pack, the hKey blob will be add add the end of pPublicKeysPack Returned Value: MQ_SecOK, if successful, else error code. --*/ { AP<BYTE> pKeyBlob = NULL; DWORD dwKeyLength; DWORD dwErr; BOOL bRet = CryptExportKey( hKey, NULL, PUBLICKEYBLOB, 0, NULL, // key blob &dwKeyLength ); if (!bRet) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 40); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } pKeyBlob = new BYTE[dwKeyLength]; bRet = CryptExportKey( hKey, NULL, PUBLICKEYBLOB, 0, pKeyBlob, &dwKeyLength ); if (!bRet) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 50); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } HRESULT hr = PackPublicKey( pKeyBlob, dwKeyLength, pwszProviderName, dwProviderType, pPublicKeysPack ); return LogHR(hr, s_FN, 60); } //+------------------------------------ // // HRESULT GetPbKeys() // //+------------------------------------ STATIC HRESULT GetPbKeys( IN BOOL fRegenerate, IN LPCWSTR pwszContainerName, IN LPCWSTR pwszProviderName, IN DWORD dwProviderType, IN HRESULT hrDefault, OUT HCRYPTPROV *phProv, OUT HCRYPTKEY *phKeyxKey, OUT HCRYPTKEY *phSignKey ) /*++ Routine Description: Generate or retrieve Public keys for signing and for session key exchange Arguments: fRegenerate - flag for regenerate new keys or just retrieve the existing keys pwszContainerName - container name pwszProviderName - provider name dwProviderType - provider type (base, enhanced) hrDefault - default hr return value phProv - pointer to crypto provider handle phKeyxKey - pointer to exchange key handle phSignKey - pointer to sign key handle Returned Value: MQ_SecOK, if successful, else error code. --*/ { // // By default, try to create a new keys container. // BOOL fSuccess = CryptAcquireContext( phProv, pwszContainerName, pwszProviderName, dwProviderType, (CRYPT_NEWKEYSET | CRYPT_MACHINE_KEYSET) ); HRESULT hr; DWORD dwErr = 0; if (fSuccess) { // // New container created. Set the container security. // hr = SetKeyContainerSecurity(*phProv); if (FAILED(hr)) { return LogHR(hr, s_FN, 70); } fRegenerate = TRUE; } else { dwErr = GetLastError(); if (dwErr != NTE_EXISTS) { LogHR(dwErr, s_FN, 80); return hrDefault; } // // NTE_EXISTS // The key set already exist, so just acquire the CSP context. // fSuccess = CryptAcquireContext( phProv, pwszContainerName, pwszProviderName, dwProviderType, CRYPT_MACHINE_KEYSET ); if (!fSuccess) { // // Can't open the keys container. // We delete previous keys container and create a new one // in three cases: // 1. The keys got corrupted. // 2. We're asked to regenerate the keys themselves. In that // case, old container does not have much value. // This case also happen during setup or upgrade from // nt4/win9x, because of bugs in crypto api that do not // translate correctly the security descriptor of the key // container, when migrating the keys from registry to // file format. See msmq bug 4561, nt bug 359901. // 3. Upgrade of cluster. That's probably a CryptoAPI bug, // we just workaround it. msmq bug 4839. // DWORD dwErr = GetLastError(); LogHR(dwErr, s_FN, 90); if (fRegenerate || (dwErr == NTE_KEYSET_ENTRY_BAD)) { // // Delete the bad key container. // fSuccess = CryptAcquireContext( phProv, pwszContainerName, pwszProviderName, dwProviderType, (CRYPT_MACHINE_KEYSET | CRYPT_DELETEKEYSET) ); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 100); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } // // Re-create the key container. // fSuccess = CryptAcquireContext( phProv, pwszContainerName, pwszProviderName, dwProviderType, (CRYPT_MACHINE_KEYSET | CRYPT_NEWKEYSET) ); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 110); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } // // Set the container security. // hr = SetKeyContainerSecurity(*phProv); if (FAILED(hr)) { return LogHR(hr, s_FN, 120); } // // Now we must generate new key sets. // fRegenerate = TRUE; } else { return LogHR(MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION, s_FN, 130); } } if (!fRegenerate) { // // Retrieve the key exchange key set. // fSuccess = CryptGetUserKey(*phProv, AT_KEYEXCHANGE, phKeyxKey); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 140); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } // // Retrieve the signing key set. // fSuccess = CryptGetUserKey(*phProv, AT_SIGNATURE, phSignKey); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 150); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } } } if (fRegenerate) { // // Re-generate the key exchange key set. // fSuccess = CryptGenKey( *phProv, AT_KEYEXCHANGE, CRYPT_EXPORTABLE, phKeyxKey ); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 160); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } // // Re-generate the signing key set. // fSuccess = CryptGenKey( *phProv, AT_SIGNATURE, CRYPT_EXPORTABLE, phSignKey ); if (!fSuccess) { dwErr = GetLastError(); LogHR(dwErr, s_FN, 170); return MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; } } return MQSec_OK; } //+------------------------------------ // // HRESULT _PrepareKeyPacks() // //+------------------------------------ STATIC HRESULT _PrepareKeyPacks( IN BOOL fRegenerate, IN enum enumProvider eProvider, IN OUT P<MQDSPUBLICKEYS>& pPublicKeysPackExch, IN OUT P<MQDSPUBLICKEYS>& pPublicKeysPackSign ) /*++ Routine Description: Prepare exchange PublicKeys pack and Signature PublicKeys pack. Arguments: fRegenerate - flag for regenerate new keys or just retrieve the existing keys. eProvider - Provider type. pPublicKeysPackExch - exchange PublicKeys pack. pPublicKeysPackSign - signature PublicKeys pack. Returned Value: MQ_SecOK, if successful, else error code. --*/ { HRESULT hrDefault = MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION; if (eProvider != eBaseProvider) { hrDefault = MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED; } AP<WCHAR> pwszProviderName = NULL; AP<WCHAR> pwszContainerName = NULL; DWORD dwProviderType; HRESULT hr = GetProviderProperties( eProvider, &pwszContainerName, &pwszProviderName, &dwProviderType ); if (FAILED(hr)) { return LogHR(hr, s_FN, 180); } CHCryptProv hProv; CHCryptKey hKeyxKey; CHCryptKey hSignKey; hr = GetPbKeys( fRegenerate, pwszContainerName, pwszProviderName, dwProviderType, hrDefault, &hProv, &hKeyxKey, &hSignKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 190); } // // Export key and pack it. // On MSMQ1.0, we could have been called for site object (from PSC) and // machine object. Only machine object need the key exchange key. // On MSMQ2.0, we expect to be called only for machine object. // hr = _ExportAndPackKey( hKeyxKey, pwszProviderName, dwProviderType, pPublicKeysPackExch ); if (FAILED(hr)) { return LogHR(hr, s_FN, 200); } hr = _ExportAndPackKey( hSignKey, pwszProviderName, dwProviderType, pPublicKeysPackSign ); if (FAILED(hr)) { return LogHR(hr, s_FN, 210); } return MQSec_OK; } //+---------------------------------------------------------------- // // HRESULT PbKeysBlobMQIS() // // This code is taken as is from MSMQ1.0 (mqutil\pbkeys.cpp). // It's used when server is msmq1.0 on nt4. // //+---------------------------------------------------------------- STATIC HRESULT PbKeysBlobMQIS( IN BOOL fRegenerate, IN enum enumProvider eBaseCrypProv, OUT BLOB * pblobEncrypt, OUT BLOB * pblobSign ) { BYTE abSignPbK[1024]; BYTE abKeyxPbK[1024]; PMQDS_PublicKey pMQDS_SignPbK = (PMQDS_PublicKey)abSignPbK; PMQDS_PublicKey pMQDS_KeyxPbK = (PMQDS_PublicKey)abKeyxPbK; // // We need to read the keys from registry since multiple // QMs can live on same machine, each with its own keys, // stored in its own registry. (ShaiK) // WCHAR wzContainer[255] = {L""}; DWORD cbSize = sizeof(wzContainer); DWORD dwType = REG_SZ; LONG rc = GetFalconKeyValue( MSMQ_CRYPTO40_CONTAINER_REG_NAME, &dwType, wzContainer, &cbSize, MSMQ_CRYPTO40_DEFAULT_CONTAINER ); DBG_USED(rc); ASSERT(("failed to read from registry", ERROR_SUCCESS == rc)); // // OK, we're almost safe, lets hope the DS will not go off from now until we // update the public keys in it... // CHCryptProv hProv; CHCryptKey hKeyxKey; CHCryptKey hSignKey; HRESULT hr = GetPbKeys( fRegenerate, wzContainer, MS_DEF_PROV, PROV_RSA_FULL, MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION, &hProv, &hKeyxKey, &hSignKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 320); } // // Always machine when calling this function // Set the key exchange public key blob, only for a machine object. // // // Get the key exchange public key blob // pMQDS_KeyxPbK->dwPublikKeyBlobSize = sizeof(abKeyxPbK) - sizeof(DWORD); if (!CryptExportKey( hKeyxKey, NULL, PUBLICKEYBLOB, 0, pMQDS_KeyxPbK->abPublicKeyBlob, &pMQDS_KeyxPbK->dwPublikKeyBlobSize )) { return LogHR(MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION, s_FN, 330); } // // Set the signature public key blob. // pMQDS_SignPbK->dwPublikKeyBlobSize = sizeof(abSignPbK) - sizeof(DWORD); if (!CryptExportKey( hSignKey, NULL, PUBLICKEYBLOB, 0, pMQDS_SignPbK->abPublicKeyBlob, &pMQDS_SignPbK->dwPublikKeyBlobSize )) { return LogHR(MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION, s_FN, 350); } AP<BYTE> pTempEncryptBlob = new BYTE[pMQDS_KeyxPbK->dwPublikKeyBlobSize]; memcpy(pTempEncryptBlob, pMQDS_KeyxPbK->abPublicKeyBlob, pMQDS_KeyxPbK->dwPublikKeyBlobSize); AP<BYTE> pTempSignBlob = new BYTE[pMQDS_SignPbK->dwPublikKeyBlobSize]; memcpy(pTempSignBlob, pMQDS_SignPbK->abPublicKeyBlob, pMQDS_SignPbK->dwPublikKeyBlobSize); pblobEncrypt->cbSize = pMQDS_KeyxPbK->dwPublikKeyBlobSize; pblobEncrypt->pBlobData = pTempEncryptBlob.detach(); pblobSign->cbSize = pMQDS_SignPbK->dwPublikKeyBlobSize; pblobSign->pBlobData = pTempSignBlob.detach(); return MQSec_OK; } //+---------------------------------------------------------------------- // // HRESULT MQSec_StorePubKeys() // // This function always store four keys in local machine: // Key-Exchange and signing for Base provider and similar two keys // for enhanced provider. // //+---------------------------------------------------------------------- HRESULT APIENTRY MQSec_StorePubKeys( IN BOOL fRegenerate, IN enum enumProvider eBaseCrypProv, IN enum enumProvider eEnhCrypProv, OUT BLOB * pblobEncrypt, OUT BLOB * pblobSign ) { P<MQDSPUBLICKEYS> pPublicKeysPackExch = NULL; P<MQDSPUBLICKEYS> pPublicKeysPackSign = NULL; HRESULT hr = _PrepareKeyPacks( fRegenerate, eBaseCrypProv, pPublicKeysPackExch, pPublicKeysPackSign ); if (FAILED(hr)) { return LogHR(hr, s_FN, 360); } hr = _PrepareKeyPacks( fRegenerate, eEnhCrypProv, pPublicKeysPackExch, pPublicKeysPackSign ); // // ignore error at this stage // // // Encrypt Blob // MQDSPUBLICKEYS * pBuf = pPublicKeysPackExch; pblobEncrypt->cbSize = pPublicKeysPackExch->ulLen; pblobEncrypt->pBlobData = (BYTE*) pBuf; // // Sign Blob // pBuf = pPublicKeysPackSign; pblobSign->cbSize = pPublicKeysPackSign->ulLen; pblobSign->pBlobData = (BYTE*) pBuf; pPublicKeysPackExch.detach(); pPublicKeysPackSign.detach(); return MQSec_OK; } // MQSec_StorePubKeys //+---------------------------------------------------------------------- // // HRESULT MQSec_StorePubKeysInDS() // // This function always store four keys in the DS: // Key-Exchange and signing for Base provider and similar two keys // for enhanced provider. // //+---------------------------------------------------------------------- HRESULT APIENTRY MQSec_StorePubKeysInDS( IN BOOL fRegenerate, IN LPCWSTR wszObjectName, IN DWORD dwObjectType ) { TCHAR szMachineName[MAX_COMPUTERNAME_LENGTH + 1]; DWORD dwMachineNameSize = sizeof(szMachineName) /sizeof(TCHAR); enum enumProvider eBaseCrypProv = eBaseProvider ; enum enumProvider eEnhCrypProv = eEnhancedProvider ; if (dwObjectType == MQDS_FOREIGN_MACHINE) { if (wszObjectName == NULL) { // // Name of foreign machine must be provided. // return LogHR(MQ_ERROR_ILLEGAL_OPERATION, s_FN, 380) ; } eBaseCrypProv = eForeignBaseProvider ; eEnhCrypProv = eForeignEnhProvider ; dwObjectType = MQDS_MACHINE ; } else if (dwObjectType != MQDS_MACHINE) { ASSERT(0); return LogHR(MQ_ERROR, s_FN, 390); } HRESULT hr; if (!wszObjectName) { hr = GetComputerNameInternal(szMachineName, &dwMachineNameSize) ; if (FAILED(hr)) { ASSERT(0); return LogHR(MQ_ERROR, s_FN, 400); } wszObjectName = szMachineName; } // // Explicit ADInit call to override the default of downlevel // notification support. // // NOTE - overriding the default is ok because this API is used to // update either this computer or foreign computers (to which MSMQ // doesn't send notifications). // hr = ADInit( NULL, // pLookDS NULL, // pGetServers false, // fDSServerFunctionality false, // fSetupMode false, // fQMDll false, // fIgnoreWorkGroup NULL, // pNoServerAuth NULL, // szServerName true // fDisableDownlevelNotifications ); if (FAILED(hr)) { return LogHR(MQ_ERROR, s_FN, 401); } // // First verify that the DS is reachable and that we have access rights // to do what we want to do. We don't want to change the keys before we // verify this. // // // Read the signature public key from the DS. This way we verify that the // DS is available, at least for the moment, and that we have read // permissions access rights on the object. // PROPID propId = PROPID_QM_SIGN_PK; PROPVARIANT varKey ; varKey.vt = VT_NULL ; hr = ADGetObjectProperties( eMACHINE, NULL, // pwcsDomainController false, // fServerName wszObjectName, 1, &propId, &varKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 410); } // // Write the signature public key in the DS. This way we verify that the // DS is still available and that we have write permissions on the object. // hr = ADSetObjectProperties( eMACHINE, NULL, // pwcsDomainController false, // fServerName wszObjectName, 1, &propId, &varKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 420); } // // OK, we're almost safe, lets hope the DS will not go off from now until // we update the public keys in it... // BLOB blobEncrypt; blobEncrypt.cbSize = 0; blobEncrypt.pBlobData = NULL; BLOB blobSign; blobSign.cbSize = 0; blobSign.pBlobData = NULL; if(DsEnvIsMqis()) { hr = PbKeysBlobMQIS( fRegenerate, eBaseCrypProv, &blobEncrypt, &blobSign ); } else // eAD { hr = MQSec_StorePubKeys( fRegenerate, eBaseCrypProv, eEnhCrypProv, &blobEncrypt, &blobSign ); } if (FAILED(hr)) { return LogHR(hr, s_FN, 430); } AP<BYTE> pCleaner1 = blobEncrypt.pBlobData; AP<BYTE> pCleaner2 = blobSign.pBlobData; // // Write the public keys in the DS. // propId = PROPID_QM_ENCRYPT_PK; varKey.vt = VT_BLOB; varKey.blob = blobEncrypt; hr = ADSetObjectProperties( eMACHINE, NULL, // pwcsDomainController false, // fServerName wszObjectName, 1, &propId, &varKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 440); } propId = PROPID_QM_SIGN_PK; varKey.vt = VT_BLOB ; varKey.blob = blobSign; hr = ADSetObjectProperties( eMACHINE, NULL, // pwcsDomainController false, // fServerName wszObjectName, 1, &propId, &varKey ); if (FAILED(hr)) { return LogHR(hr, s_FN, 450); } return MQSec_OK ; } //+------------------------------------------------------------------------- // // HRESULT MQSec_GetPubKeysFromDS() // // if caller supply machine guid, then "pfDSGetObjectPropsGuidEx" must be // pointer to "DSGetObjectPropsGuidEx". Otherwise, if caller supply machine // name, it must be pointer to "DSGetObjectPropsGuidEx". // //+------------------------------------------------------------------------- HRESULT APIENTRY MQSec_GetPubKeysFromDS( IN const GUID *pMachineGuid, IN LPCWSTR lpwszMachineName, IN enum enumProvider eProvider, IN DWORD propIdKeys, OUT BYTE **ppPubKeyBlob, OUT DWORD *pdwKeyLength ) { // // Since all AD* will return PROPID_QM_ENCRYPT_PK unpack // assert so if we are called with this prop, change the code // ASSERT(propIdKeys != PROPID_QM_ENCRYPT_PK); if ((eProvider != eBaseProvider) && (DsEnvIsMqis())) { // // msmq1.0 server support only base providers. // return LogHR(MQ_ERROR_PUBLIC_KEY_NOT_FOUND, s_FN, 460); } if ((eProvider == eBaseProvider) && (propIdKeys == PROPID_QM_ENCRYPT_PKS) && (DsEnvIsMqis())) { // // msmq1.0 server support only PROPID_QM_ENCRYPT_PK // propIdKeys = PROPID_QM_ENCRYPT_PK; } P<WCHAR> pwszProviderName = NULL; DWORD dwProviderType; HRESULT hr = GetProviderProperties( eProvider, NULL, &pwszProviderName, &dwProviderType ); if (FAILED(hr)) { return LogHR(hr, s_FN, 470); } ASSERT(pwszProviderName); PROPID propId = (PROPID) propIdKeys; PROPVARIANT varKey; varKey.vt = VT_NULL; // // The Ex queries used below are supported only on Windows 2000. If // a Windows 2000 client is served only by NT4 MQIS servers, then the // query will fail with error MQ_ERROR_NO_DS. We don't want the mqdscli // code to search for all DS servers, looking for a Windows 2000 DC. // That's the reason for the FALSE parameter. That means that 128 bit // encryption is fully supported only in native mode, i.e., when all // DS servers are Windows 2000. // Better solutions are to enabled per-thread server lookup (as is // enabled in run-time) or lazy query of encryption key. both are // expensive in terms of coding and testing. // Note that the FALSE flag is effective only if the server is alive and // is indeed a NT4 one. If DS servers are not availalbe, then mqdscli // wil look for available servers. // if (pMachineGuid) { ASSERT(!lpwszMachineName); hr = ADGetObjectPropertiesGuid( eMACHINE, NULL, // pwcsDomainController false, // fServerName pMachineGuid, 1, &propId, &varKey ); } else if (lpwszMachineName) { hr = ADGetObjectProperties( eMACHINE, NULL, // pwcsDomainController false, // fServerName lpwszMachineName, 1, &propId, &varKey ); } else { return LogHR(MQ_ERROR_INVALID_PARAMETER, s_FN, 480); } if (FAILED(hr)) { return LogHR(hr, s_FN, 510); } if (varKey.blob.pBlobData == NULL) { return LogHR(MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST, s_FN, 520); } ASSERT(varKey.vt == VT_BLOB); if(DsEnvIsMqis()) { // // msmq1.0 treatment // *ppPubKeyBlob = varKey.blob.pBlobData; *pdwKeyLength = varKey.blob.cbSize; return MQSec_OK; } // // msmq2.0 treatment eAD // ASSERT(s_DsEnv == eAD); P<MQDSPUBLICKEYS> pPublicKeysPack = (MQDSPUBLICKEYS*) varKey.blob.pBlobData; ASSERT(pPublicKeysPack->ulLen == varKey.blob.cbSize); if ((long) (pPublicKeysPack->ulLen) > (long) (varKey.blob.cbSize)) { // // Either blob is corrupted or we read a beta2 format (same as // MQIS, key blob without package). // return LogHR(MQ_ERROR_CORRUPTED_SECURITY_DATA, s_FN, 530); } ULONG ulKeySize; BYTE *pKeyBlob = NULL; hr = MQSec_UnpackPublicKey( pPublicKeysPack, pwszProviderName, dwProviderType, &pKeyBlob, &ulKeySize ); if (FAILED(hr)) { return LogHR(hr, s_FN, 540); } ASSERT(pKeyBlob); *pdwKeyLength = ulKeySize; *ppPubKeyBlob = new BYTE[*pdwKeyLength]; memcpy(*ppPubKeyBlob, pKeyBlob, *pdwKeyLength); return MQSec_OK; }
[ "112426112@qq.com" ]
112426112@qq.com
659dd5eaa00c49c7a3ca17e7c2b4f6a1cbe76530
1929c33f96719af6ce62da7d76e5cba6d361eea8
/matrizes/exemplo de matriz.cpp
97050a9d07c8dd2f234f5ea5732889e117ec883f
[ "MIT" ]
permissive
RuthMaria/algoritmo
b863a6d3610fbce4e29a3fcf3641f2179b7df818
ec9ebf629598dd75a05e33861706f1a6bc956cd5
refs/heads/master
2022-06-26T09:50:28.224747
2020-05-04T04:32:25
2020-05-04T04:32:25
261,061,115
0
0
null
null
null
null
UTF-8
C++
false
false
950
cpp
#include<stdio.h> #include<conio.h> #define LIN 2 #define COL 3 main(){ float mat[LIN][COL], soma = 0, soma2 = 0, maior = 0; int i, j; for(i = 1; i <= LIN; i++){ printf("\n"); for(j = 1; j <= COL; j++){ printf("Linha %d e coluna %d: ", i, j); scanf("%f",&mat[i][j]); if(mat[i][j] > maior) maior = mat[i][j]; if(i == j) soma2+= mat[i][j]; if(i == 2) soma+= mat[2][j]; } } printf("\n\n Soma dos elementos da linha 2: %.0f", soma); printf("\n Soma das linha e colunas iguais: %.0f", soma2); printf("\n Maior de todos os numeros: %.0f", maior); getch(); }
[ "ruth-15rms@hotmail.com" ]
ruth-15rms@hotmail.com
890e7960955fbf43e12f87912079a38f0b09141d
3013aca68b0f2b51e4709532c6e81f963236c260
/ClientDisforbook.h
f71e5ee4de36d2448b722e784d882bb4698b1d70
[]
no_license
kevinchenbin/retail
c4e383c4edbf8699207b9606f7dabf0a506568dd
f875aef1c1d8790899ef1cdb7d1e984761912c7e
refs/heads/master
2020-08-03T10:18:00.835937
2016-11-12T11:45:11
2016-11-12T11:45:11
73,549,161
0
0
null
null
null
null
UTF-8
C++
false
false
2,962
h
//--------------------------------------------------------------------------- #ifndef ClientDisforbookH #define ClientDisforbookH //--------------------------------------------------------------------------- #include <Classes.hpp> #include <Controls.hpp> #include <StdCtrls.hpp> #include <Forms.hpp> #include <ExtCtrls.hpp> #include "RzButton.hpp" #include "RzDBGrid.hpp" #include "RzEdit.hpp" #include "RzLabel.hpp" #include "RzPanel.hpp" #include <ComCtrls.hpp> #include <DBGrids.hpp> #include <Grids.hpp> #include <Mask.hpp> #include <ADODB.hpp> #include <DB.hpp> #include <Menus.hpp> //--------------------------------------------------------------------------- class Tfrmclientdisforbook : public TForm { __published: // IDE-managed Components TPanel *Panel1; TRzToolbar *RzToolbar1; TRzToolButton *BtnExit; TRzToolButton *BtnSave; TRzToolButton *BtnAlignBottom; TRzDBGrid *dbgdiscount; TRzGroupBox *rgbdiscountplan; TRzLabel *lblCatalog; TLabel *Label7; TRzEdit *edtCatalog; TDBGrid *DBGrid1; TGroupBox *GroupBox2; TLabel *Label4; TLabel *Label9; TLabel *Label6; TEdit *eddiscount; TEdit *edprice; TGroupBox *GroupBox1; TLabel *Label1; TLabel *Label5; TComboBox *cbstorage; TComboBox *cbCusName; TADOQuery *aqcustom; TPopupMenu *pm; TMenuItem *N1; TMenuItem *N3; TMenuItem *N2; TMenuItem *N4; TADOQuery *querydetail; TDataSource *ds2; TADOQuery *query; TADOQuery *aq; TDataSource *ds1; TPopupMenu *pm1; TMenuItem *N5; TMenuItem *N7; TEdit *edquery; TPopupMenu *pmdel; TMenuItem *MenuItem1; void __fastcall edqueryKeyPress(TObject *Sender, wchar_t &Key); void __fastcall lblCatalogMouseDown(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y); void __fastcall edtCatalogKeyPress(TObject *Sender, wchar_t &Key); void __fastcall cbstorageSelect(TObject *Sender); void __fastcall DBGrid1CellClick(TColumn *Column); void __fastcall BtnSaveClick(TObject *Sender); void __fastcall dbgdiscountCellClick(TColumn *Column); void __fastcall BtnAlignBottomClick(TObject *Sender); void __fastcall BtnExitClick(TObject *Sender); void __fastcall FormClose(TObject *Sender, TCloseAction &Action); void __fastcall eddiscountKeyPress(TObject *Sender, wchar_t &Key); void __fastcall N5Click(TObject *Sender); void __fastcall N7Click(TObject *Sender); void __fastcall MenuItem1Click(TObject *Sender); private: // User declarations TADOConnection *fcon; int m_catalogSearchMode; int stgid; public: // User declarations void init(TADOConnection *con, int stgida); void ChangeCatalogSearchMode(); void Query(); void __fastcall disable(); __fastcall Tfrmclientdisforbook(TComponent* Owner); void excuit(); bool modify; }; //--------------------------------------------------------------------------- extern PACKAGE Tfrmclientdisforbook *frmclientdisforbook; //--------------------------------------------------------------------------- #endif
[ "legendbin@gmail.com" ]
legendbin@gmail.com
afc2e7921ed52066cd8d4ad7bb963cabdadeac90
8d6c298d5b37ac55c777a3215e8668fdfef3fd4a
/modules/CollectdClient/collectd_handler.hpp
9c630f41a456a6b169718e0e60a2de10e6d1317a
[]
no_license
kain64/nscp
326d2c7223b7bec3c88ec5f8b66bb14d92b6ae7a
58b6d2bcf910b57c84b8271c4392f937898e970b
refs/heads/master
2021-01-14T10:52:28.874449
2016-08-28T15:22:18
2016-08-28T15:22:18
66,774,814
0
0
null
2016-08-28T15:10:23
2016-08-28T15:10:23
null
UTF-8
C++
false
false
2,826
hpp
#pragma once #include <utils.h> #include <strEx.h> #include <collectd/collectd_packet.hpp> #include <socket/client.hpp> #include <nscapi/nscapi_settings_helper.hpp> #include <nscapi/nscapi_protobuf_functions.hpp> #include <nscapi/nscapi_core_helper.hpp> #include <boost/make_shared.hpp> #include "collectd_client.hpp" namespace collectd_handler { namespace sh = nscapi::settings_helper; struct collectd_target_object : public nscapi::targets::target_object { typedef nscapi::targets::target_object parent; collectd_target_object(std::string alias, std::string path) : parent(alias, path) { set_property_string("port", "25826"); set_property_string("host", "239.192.74.66"); } collectd_target_object(const nscapi::settings_objects::object_instance other, std::string alias, std::string path) : parent(other, alias, path) {} virtual void read(boost::shared_ptr<nscapi::settings_proxy> proxy, bool oneliner, bool is_sample) { parent::read(proxy, oneliner, is_sample); nscapi::settings_helper::settings_registry settings(proxy); nscapi::settings_helper::path_extension root_path = settings.path(get_path()); if (is_sample) root_path.set_sample(); //add_ssl_keys(root_path); settings.register_all(); settings.notify(); } }; struct options_reader_impl : public client::options_reader_interface { virtual nscapi::settings_objects::object_instance create(std::string alias, std::string path) { return boost::make_shared<collectd_target_object>(alias, path); } virtual nscapi::settings_objects::object_instance clone(nscapi::settings_objects::object_instance parent, const std::string alias, const std::string path) { return boost::make_shared<collectd_target_object>(parent, alias, path); } void process(boost::program_options::options_description &desc, client::destination_container &source, client::destination_container &data) { //add_ssl_options(desc, data); desc.add_options() ("payload-length,l", po::value<unsigned int>()->notifier(boost::bind(&client::destination_container::set_int_data, &data, "payload length", _1)), "Length of payload (has to be same as on the server)") ("buffer-length", po::value<unsigned int>()->notifier(boost::bind(&client::destination_container::set_int_data, &data, "payload length", _1)), "Length of payload to/from the NRPE agent. This is a hard specific value so you have to \"configure\" (read recompile) your NRPE agent to use the same value for it to work.") ("password", po::value<std::string>()->notifier(boost::bind(&client::destination_container::set_string_data, &data, "password", _1)), "Password") ("time-offset", po::value<std::string>()->notifier(boost::bind(&client::destination_container::set_string_data, &data, "time offset", _1)), "") ; } }; }
[ "michael@medin.name" ]
michael@medin.name
d48cb991a6535045df16866ba310e4e87aead733
7bc58e0e6a34f3d74c2da7b367ad348e1a8862d0
/tools/kactus2/kactus2-3.1.0/designEditors/SystemDesign/UndoCommands/SystemMoveCommands.h
3b1ef2ed460dd1e54a2f64ace4cecfbdd4302ce3
[]
no_license
ouabache/fossi
3069e7440597b283b657eaee11fbc203909d54aa
e780307bff0bb702e6da36df5d15305354c95f42
refs/heads/master
2020-07-02T08:58:41.834354
2017-04-06T15:59:09
2017-04-06T15:59:09
67,724,364
4
1
null
null
null
null
WINDOWS-1252
C++
false
false
3,803
h
//----------------------------------------------------------------------------- // File: SystemMoveCommands.h //----------------------------------------------------------------------------- // Project: Kactus 2 // Author: Joni-Matti Määttä // Date: 17.10.2011 // // Description: // Undo move commands for system designs. //----------------------------------------------------------------------------- #ifndef SYSTEMMOVECOMMANDS_H #define SYSTEMMOVECOMMANDS_H #include <QUndoCommand> #include <QGraphicsScene> #include <QString> class SWPortItem; class GraphicsConnection; //----------------------------------------------------------------------------- //! SWConnectionMoveCommand class. //----------------------------------------------------------------------------- class SWConnectionMoveCommand : public QUndoCommand { public: /*! * Constructor. * * @param [in] conn The SW connection. * @param [in] oldRoute The old route of the connection. * @param [in] parent The parent command. */ SWConnectionMoveCommand(GraphicsConnection* conn, QList<QPointF> const& oldRoute, QUndoCommand* parent = 0); /*! * Destructor. */ ~SWConnectionMoveCommand(); /*! * Undoes the command. */ virtual void undo(); /*! * Redoes the command. */ virtual void redo(); private: // Disable copying. SWConnectionMoveCommand(SWConnectionMoveCommand const& rhs); SWConnectionMoveCommand& operator=(SWConnectionMoveCommand const& rhs); //----------------------------------------------------------------------------- // Data. //----------------------------------------------------------------------------- //! The SW connection. GraphicsConnection* conn_; //! The old route of the connection. QList<QPointF> oldRoute_; //! The new route of the connection. QList<QPointF> newRoute_; }; //----------------------------------------------------------------------------- //! SWPortMoveCommand class. //----------------------------------------------------------------------------- class SWPortMoveCommand : public QUndoCommand { public: /*! * Constructor. * * @param [in] port The port to move. * @param [in] oldPos The port's old position. * @param [in] parent The parent command. */ SWPortMoveCommand(SWPortItem* port, QPointF const& oldPos, QUndoCommand* parent = 0); /*! * Constructor. * * @param [in] port The port to move. * @param [in] oldPos The port's old position. * @param [in] newPos The port's new position. * @param [in] parent The parent command. */ SWPortMoveCommand(SWPortItem* port, QPointF const& oldPos, QPointF const& newPos, QUndoCommand* parent = 0); /*! * Destructor. */ ~SWPortMoveCommand(); /*! * Undoes the command. */ virtual void undo(); /*! * Redoes the command. */ virtual void redo(); private: // Disable copying. SWPortMoveCommand(SWPortMoveCommand const& rhs); SWPortMoveCommand& operator=(SWPortMoveCommand const& rhs); //----------------------------------------------------------------------------- // Data. //----------------------------------------------------------------------------- //! The port item. SWPortItem* port_; //! The old position of the port. QPointF oldPos_; //! The new position of the port. QPointF newPos_; }; //----------------------------------------------------------------------------- #endif // SYSTEMMOVECOMMANDS_H
[ "z3qmtr45@gmail.com" ]
z3qmtr45@gmail.com
b0c9a9b6e34a8a574538a2fc6d93c07b14866560
ff0335c49b4d0dc90615ba9ce1df7e42f2da3a41
/src/oauth.cpp
155b47bf51cb30e622697c2311dd9b37dc55b094
[ "ISC", "MIT" ]
permissive
ueshita/tinytwit
d83050a8a32a4b103db9ae065648d3db2fe16ecf
33a1832b5e8c165ef28f91d64cb78c5c4ce1572f
refs/heads/master
2020-03-25T04:19:33.429816
2013-10-14T14:17:07
2013-10-14T14:17:07
6,529,948
1
1
null
null
null
null
UTF-8
C++
false
false
22,362
cpp
/* * OAuth string functions in POSIX-C. * * Copyright 2007-2010 Robin Gareus <robin@gareus.org> * * The base64 functions are by Jan-Henrik Haukeland, <hauk@tildeslash.com> * and un/escape_url() was inspired by libcurl's curl_escape under ISC-license * many thanks to Daniel Stenberg <daniel@haxx.se>. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #if HAVE_CONFIG_H # include <config.h> #endif #define WIPE_MEMORY ///< overwrite sensitve data before free()ing it. #include <stdio.h> #include <stdarg.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <math.h> #include <ctype.h> // isxdigit #include "oauth.h" #ifndef WIN32 // getpid() on POSIX systems #include <sys/types.h> #include <unistd.h> #else #define snprintf _snprintf #define strncasecmp strnicmp #pragma warning(disable:4996) #endif #include <vector> #include <algorithm> #include <sstream> /** * Base64 encode one byte */ char oauth_b64_encode(unsigned char u) { if (u < 26) return 'A' + u; if (u < 52) return 'a' + (u - 26); if (u < 62) return '0' + (u - 52); if (u == 62) return '+'; return '/'; } /** * Decode a single base64 character. */ unsigned char oauth_b64_decode(char c) { if (c >= 'A' && c <= 'Z') return(c - 'A'); if (c >= 'a' && c <= 'z') return(c - 'a' + 26); if (c >= '0' && c <= '9') return(c - '0' + 52); if (c == '+') return 62; return 63; } /** * Return TRUE if 'c' is a valid base64 character, otherwise FALSE */ bool oauth_b64_is_base64(char c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || (c == '+') || (c == '/') || (c == '=')); } /** * Base64 encode and return size data in 'src'. The caller must free the * returned string. * * @param size The size of the data in src * @param src The data to be base64 encode * @return encoded string otherwise NULL */ std::string oauth_encode_base64(const unsigned char *src, int size) { int i; std::stringbuf sb; if (!src) return NULL; if (!size) size= strlen((char *)src); for (i = 0; i < size; i += 3) { unsigned char b1 = 0, b2 = 0, b3 = 0, b4 = 0, b5 = 0, b6 = 0, b7 = 0; b1= src[i]; if (i + 1 < size) b2 = src[i + 1]; if (i + 2 < size) b3 = src[i + 2]; b4= b1 >> 2; b5= ((b1 & 0x3) << 4) | (b2 >> 4); b6= ((b2 & 0xf) << 2) | (b3 >> 6); b7= b3 & 0x3f; sb.sputc(oauth_b64_encode(b4)); sb.sputc(oauth_b64_encode(b5)); if (i + 1 < size) { sb.sputc(oauth_b64_encode(b6)); } else { sb.sputc('='); } if (i + 2 < size) { sb.sputc(oauth_b64_encode(b7)); } else { sb.sputc('='); } } return sb.str(); } /** * Decode the base64 encoded string 'src' into the memory pointed to by * 'dest'. * * @param dest Pointer to memory for holding the decoded string. * Must be large enough to receive the decoded string. * @param src A base64 encoded string. * @return the length of the decoded string if decode * succeeded otherwise 0. */ std::string oauth_decode_base64(const char *src) { if (src && *src) { std::stringbuf sb; //unsigned char *p= dest; int k, l= strlen(src)+1; std::vector<unsigned char> buf(l); /* Ignore non base64 chars as per the POSIX standard */ for (k = 0, l = 0; src[k]; k++) { if (oauth_b64_is_base64(src[k])) { buf[l++]= src[k]; } } for (k = 0; k < l; k += 4) { char c1='A', c2='A', c3='A', c4='A'; unsigned char b1 = 0, b2 = 0, b3 = 0, b4 = 0; c1= buf[k]; if (k + 1 < l) c2 = buf[k + 1]; if (k + 2 < l) c3 = buf[k + 2]; if (k + 3 < l) c4 = buf[k + 3]; b1 = oauth_b64_decode(c1); b2 = oauth_b64_decode(c2); b3 = oauth_b64_decode(c3); b4 = oauth_b64_decode(c4); sb.sputc((b1 << 2) | (b2 >> 4)); if (c3 != '=') sb.sputc(((b2 & 0xf) << 4) | (b3 >> 2)); if (c4 != '=') sb.sputc(((b3 & 0x3) << 6) | b4); } return sb.str(); } return 0; } /** * Escape 'string' according to RFC3986 and * http://oauth.net/core/1.0/#encoding_parameters. * * @param string The data to be encoded * @return encoded string otherwise NULL * The caller must free the returned string. */ std::string oauth_url_escape(const char *string) { unsigned char in; size_t length; if (!string) { return std::string(); } length = strlen(string); std::stringbuf sb; while (length--) { in = *string; if (strchr("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_~.-", in)) { sb.sputc(in); } else { char tmp[10]; snprintf(tmp, 4, "%%%02X", in); sb.sputc(tmp[0]); sb.sputc(tmp[1]); sb.sputc(tmp[2]); } string++; } return sb.str(); } #ifndef ISXDIGIT # define ISXDIGIT(x) (isxdigit((int) ((unsigned char)x))) #endif /** * Parse RFC3986 encoded 'string' back to unescaped version. * * @param string The data to be unescaped * @param olen unless NULL the length of the returned string is stored there. * @return decoded string or NULL * The caller must free the returned string. */ std::string oauth_url_unescape(const char *string) { size_t alloc, strindex=0; unsigned char in; long hex; if (!string) return NULL; alloc = strlen(string)+1; std::vector<char> ns(alloc); while(--alloc > 0) { in = *string; if (('%' == in) && ISXDIGIT(string[1]) && ISXDIGIT(string[2])) { char hexstr[3]; // '%XX' hexstr[0] = string[1]; hexstr[1] = string[2]; hexstr[2] = 0; hex = strtol(hexstr, NULL, 16); in = (unsigned char)hex; /* hex is always < 256 */ string += 2; alloc -= 2; } ns[strindex++] = in; string++; } ns[strindex]=0; return &ns[0]; } /** * returns plaintext signature for the given key. * * the returned string needs to be freed by the caller * * @param m message to be signed * @param k key used for signing * @return signature string */ std::string oauth_sign_plaintext (const char *m, const char *k) { return oauth_url_escape(k); } /** * encode strings and concatenate with '&' separator. * The number of strings to be concatenated must be * given as first argument. * all arguments thereafter must be of type (char *) * * @param len the number of arguments to follow this parameter * @param ... string to escape and added (may be NULL) * * @return pointer to memory holding the concatenated * strings - needs to be free(d) by the caller. or NULL * in case we ran out of memory. */ std::string oauth_catenc(int len, ...) { va_list va; std::string str; va_start(va, len); for (int i = 0; i < len; i++) { char *arg = va_arg(va, char *); std::string enc = oauth_url_escape(arg); if (i > 0) str += "&"; str += enc; } va_end(va); return str; } /** * splits the given url into a parameter array. * (see \ref oauth_serialize_url and \ref oauth_serialize_url_parameters for the reverse) * * NOTE: Request-parameters-values may include an ampersand character. * However if unescaped this function will use them as parameter delimiter. * If you need to make such a request, this function since version 0.3.5 allows * to use the ASCII SOH (0x01) character as alias for '&' (0x26). * (the motivation is convenience: SOH is /untypeable/ and much more * unlikely to appear than '&' - If you plan to sign fancy URLs you * should not split a query-string, but rather provide the parameter array * directly to \ref oauth_serialize_url) * * @param url the url or query-string to parse. * @param argv pointer to a (char *) array where the results are stored. * The array is re-allocated to match the number of parameters and each * parameter-string is allocated with strdup. - The memory needs to be freed * by the caller. * @param qesc use query parameter escape (vs post-param-escape) - if set * to 1 all '+' are treated as spaces ' ' * * @return number of parameter(s) in array. */ void oauth_split_post_paramters(const char *url, std::vector<std::string>& argv, short qesc) { int argc=0; char *token, *tmp; std::vector<char> t1(strlen(url) + 1); strcpy(&t1[0], url); // '+' represents a space, in a URL query string while ((qesc&1) && (tmp=strchr(&t1[0],'+'))) *tmp = ' '; tmp = &t1[0]; while ((token = strtok(tmp,"&?"))) { if (!strncasecmp("oauth_signature=", token, 16)) continue; while (!(qesc & 2) && (tmp = strchr(token, '\001'))) *tmp = '&'; argv.push_back(oauth_url_unescape(token)); if (argc == 0 && strstr(token, ":/")) { // HTTP does not allow empty absolute paths, so the URL // 'http://example.com' is equivalent to 'http://example.com/' and should // be treated as such for the purposes of OAuth signing (rfc2616, section 3.2.1) // see http://groups.google.com/group/oauth/browse_thread/thread/c44b6f061bfd98c?hl=en char *slash = strstr(token, ":/"); while (slash && *(++slash) == '/') ; // skip slashes eg /xxx:[\/]*/ #if 0 // skip possibly unescaped slashes in the userinfo - they're not allowed by RFC2396 but have been seen. // the hostname/IP may only contain alphanumeric characters - so we're safe there. if (slash && strchr(slash,'@')) slash=strchr(slash, '@'); #endif if (slash && !strchr(slash,'/')) { #ifdef DEBUG_OAUTH fprintf(stderr, "\nliboauth: added trailing slash to URL: '%s'\n\n", token); #endif argv.push_back(std::string(token) + "/"); } } if (argc == 0 && (tmp = strstr((char *)argv.at(argc).c_str(), ":80/"))) { memmove(tmp, tmp + 3, strlen(tmp + 2)); } tmp = NULL; argc++; } } void oauth_split_url_parameters(const char *url, std::vector<std::string>& argv) { oauth_split_post_paramters(url, argv, 1); } /** * build a url query string from an array. * * @param argc the total number of elements in the array * @param start element in the array at which to start concatenating. * @param argv parameter-array to concatenate. * @return url string needs to be freed by the caller. * */ std::string oauth_serialize_url (std::vector<std::string>& argv, int start) { return oauth_serialize_url_sep(argv, start, "&", 0); } /** * encode query parameters from an array. * * @param argc the total number of elements in the array * @param start element in the array at which to start concatenating. * @param argv parameter-array to concatenate. * @param sep separator for parameters (usually "&") * @param mod - bitwise modifiers: * 1: skip all values that start with "oauth_" * 2: skip all values that don't start with "oauth_" * 4: add double quotation marks around values (use with sep=", " to generate HTTP Authorization header). * @return url string needs to be freed by the caller. */ std::string oauth_serialize_url_sep(std::vector<std::string>& argv, int start, const char *sep, int mod) { int i; int first = 0; int seplen = strlen(sep); std::string query; for (i = start; i < (int)argv.size(); i++) { std::string tmp; if ((mod & 1) == 1 && (strncmp(argv[i].c_str(), "oauth_", 6) == 0 || strncmp(argv[i].c_str(), "x_oauth_", 8) == 0)) continue; if ((mod & 2) == 2 && (strncmp(argv[i].c_str(), "oauth_", 6) != 0 && strncmp(argv[i].c_str(), "x_oauth_", 8) != 0) && i != 0) continue; if (i == start && i == 0 && strstr(argv[i].c_str(), ":/")) { tmp = argv[i]; } else { char *p = strchr((char *)argv[i].c_str(), '='); if (p) { std::string t2; tmp = oauth_url_escape(std::string(argv[i].c_str(), (char const *)p).c_str()); t2 = oauth_url_escape(p + 1); tmp += "="; if (mod & 4) { tmp += "\"" + t2 + "\""; } else { tmp += t2; } } else { // see http://oauth.net/core/1.0/#anchor14 // escape parameter names and arguments but not the '=' tmp=argv[i]; tmp += "="; } } query += ((i == start || first) ? "" : sep); query += tmp; first = 0; if (i == start && i == 0 && strstr((char *)tmp.c_str(), ":/")) { query += "?"; first = 1; } } return (query); } /** * build a query parameter string from an array. * * This function is a shortcut for \ref oauth_serialize_url (argc, 1, argv). * It strips the leading host/path, which is usually the first * element when using oauth_split_url_parameters on an URL. * * @param argc the total number of elements in the array * @param argv parameter-array to concatenate. * @return url string needs to be freed by the caller. */ std::string oauth_serialize_url_parameters (std::vector<std::string>& argv) { return oauth_serialize_url(argv, 1); } /** * generate a random string between 15 and 32 chars length * and return a pointer to it. The value needs to be freed by the * caller * * @return zero terminated random string. */ std::string oauth_gen_nonce() { static const char *chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_"; const unsigned int max = 26 + 26 + 10 + 1; //strlen(chars); char tmp[50]; int i, len; srand((unsigned int)time(0)); len = 15 + rand() % 16; for (i = 0; i < len; i++) { tmp[i] = chars[rand() % max]; } tmp[i]='\0'; return &tmp[0]; } /** * string compare function for oauth parameters. * * used with qsort. needed to normalize request parameters. * see http://oauth.net/core/1.0/#anchor14 */ int oauth_cmpstringp(const void *p1, const void *p2) { char const *e1; char const *e2; e1 = strchr((char *)p1, '='); e2 = strchr((char *)p2, '='); if (e1 && e2) { std::string left((char const *)p1, e1); std::string right((char const *)p2, e2); return strcmp(left.c_str(), right.c_str()); } std::string left = oauth_url_escape((char const *)p1); std::string right = oauth_url_escape((char const *)p2); return strcmp(left.c_str(), right.c_str()); } bool oauth_cmpstringp_ex(std::string const &left, std::string const &right) { return oauth_cmpstringp(left.c_str(), right.c_str()) < 0; } /** * search array for parameter key. * @param argv length of array to search * @param argc parameter array to search * @param key key of parameter to check. * * @return FALSE (0) if array does not contain a parameter with given key, TRUE (1) otherwise. */ bool oauth_param_exists(std::vector<std::string>& argv, const char *key) { int i; size_t l = strlen(key); for (i = 0; i < (int)argv.size(); i++) { if (!strncmp(argv[i].c_str(), key, l) && argv[i][l] == '=') { return true; } } return false; } /** * */ void oauth_add_protocol( std::vector<std::string>& argv, OAuthMethod method, const char *c_key, //< consumer key - posted plain text const char *t_key //< token key - posted plain text in URL ) { char oarg[1024]; // add OAuth specific arguments if (!oauth_param_exists(argv,"oauth_nonce")) { std::string tmp = oauth_gen_nonce(); snprintf(oarg, 1024, "oauth_nonce=%s", tmp.c_str()); argv.push_back(oarg); } if (!oauth_param_exists(argv,"oauth_timestamp")) { snprintf(oarg, 1024, "oauth_timestamp=%li", (long int) time(NULL)); argv.push_back(oarg); } if (t_key) { snprintf(oarg, 1024, "oauth_token=%s", t_key); argv.push_back(oarg); } snprintf(oarg, 1024, "oauth_consumer_key=%s", c_key); argv.push_back(oarg); snprintf(oarg, 1024, "oauth_signature_method=%s", method==0?"HMAC-SHA1":method==1?"RSA-SHA1":"PLAINTEXT"); argv.push_back(oarg); if (!oauth_param_exists(argv,"oauth_version")) { snprintf(oarg, 1024, "oauth_version=1.0"); argv.push_back(oarg); } #if 0 // oauth_version 1.0 Rev A if (!oauth_param_exists(argv,argc,"oauth_callback")) { snprintf(oarg, 1024, "oauth_callback=oob"); argv.push_back(oarg); } #endif } std::string oauth_sign_url( const char *url, std::string& postargs, OAuthMethod method, const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { return oauth_sign_url2(url, postargs, method, NULL, c_key, c_secret, t_key, t_secret); } std::string oauth_sign_url2( const char *url, std::string& postargs, OAuthMethod method, const char *http_method, //< HTTP request method const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { //char *argv = NULL; std::vector<std::string> argv; std::string rv; if (!postargs.empty()) { oauth_split_post_paramters(url, argv, 0); } else { oauth_split_url_parameters(url, argv); } rv = oauth_sign_array2(argv, postargs, method, http_method, c_key, c_secret, t_key, t_secret); return(rv); } std::string oauth_sign_header( const char *url, std::string& postargs, OAuthMethod method, const char *http_method, //< HTTP request method const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { std::vector<std::string> argv; std::string result; if (!postargs.empty()) { oauth_split_post_paramters(url, argv, 0); } else { oauth_split_url_parameters(url, argv); } oauth_sign_array2_process(argv, postargs, method, http_method, c_key, c_secret, t_key, t_secret); std::sort(argv.begin() + 1, argv.end(), oauth_cmpstringp_ex); result = std::string("Authorization: OAuth ") + oauth_serialize_url_sep(argv, 1, ", ", 4); return result; } std::string oauth_sign_array( std::vector<std::string>& argv, std::string& postargs, OAuthMethod method, const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { return oauth_sign_array2( argv, postargs, method, NULL, c_key, c_secret, t_key, t_secret ); } void oauth_sign_array2_process( std::vector<std::string>& argv, std::string& postargs, OAuthMethod method, const char *http_method, //< HTTP request method const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { char oarg[1024]; std::string query; std::string sign; std::string http_request_method; if (!http_method) { http_request_method = !postargs.empty() ? "POST" : "GET"; } else { std::vector<char> tmp(strlen(http_method) + 1); int i; for (i = 0; http_method[i]; i++) { tmp[i] = toupper(http_method[i]); } tmp[i] = 0; http_request_method = &tmp[0]; } // add required OAuth protocol parameters oauth_add_protocol(argv, method, c_key, t_key); if (!postargs.empty()) { argv.push_back(postargs); } // sort parameters //qsort(&(argv)[1], (*argcp)-1, sizeof(char *), oauth_cmpstringp); std::sort(argv.begin() + 1, argv.end(), oauth_cmpstringp_ex); // serialize URL - base-url query= oauth_serialize_url_parameters(argv); // generate signature std::string okey = oauth_catenc(2, c_secret, t_secret); std::string odat = oauth_catenc(3, http_request_method.c_str(), (argv)[0].c_str(), query.c_str()); // base-string #ifdef DEBUG_OAUTH fprintf (stderr, "\nliboauth: data to sign='%s'\n\n", odat.c_str()); fprintf (stderr, "\nliboauth: key='%s'\n\n", okey.c_str()); #endif switch(method) { //case OA_RSA: // sign = oauth_sign_rsa_sha1(odat.c_str(), okey.c_str()); // XXX okey needs to be RSA key! // break; case OA_PLAINTEXT: sign = oauth_sign_plaintext(odat.c_str(), okey.c_str()).c_str(); break; default: sign = oauth_sign_hmac_sha1(odat.c_str(), okey.c_str()); break; } // append signature to query args. snprintf(oarg, 1024, "oauth_signature=%s",sign.c_str()); argv.push_back(oarg); } std::string oauth_sign_array2( std::vector<std::string>& argv, std::string& postargs, OAuthMethod method, const char *http_method, //< HTTP request method const char *c_key, //< consumer key - posted plain text const char *c_secret, //< consumer secret - used as 1st part of secret-key const char *t_key, //< token key - posted plain text in URL const char *t_secret //< token secret - used as 2st part of secret-key ) { std::string result; oauth_sign_array2_process(argv, postargs, method, http_method, c_key, c_secret, t_key, t_secret); // build URL params result = oauth_serialize_url(argv, (!postargs.empty() ? 1 : 0)); if (!postargs.empty()) { postargs = result; result = argv.at(0); } return result; }
[ "nalto32@gmail.com" ]
nalto32@gmail.com
b5173d2d123b6f16603079eb38adcb7d178fd189
1fea1b1bcb283931afea6aa3103795236f12fb6d
/test_xtensor/src/main.cpp
604803e7253601e23fc098afa4eebaedd4a31aef
[]
no_license
LeoBaro/rtadqlibcpp_proto
09b3ec479117fec37ce5a5dd6441a16316a3bc8f
9802c180e29a3aecc9bfbee4735ec51c8328f755
refs/heads/master
2022-12-06T13:10:59.449412
2020-08-22T09:21:49
2020-08-22T09:21:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
507
cpp
#include <iostream> #include "xtensor/xarray.hpp" #include "xtensor/xio.hpp" #include "xtensor/xview.hpp" int main(int argc, char* argv[]) { xt::xarray<double> arr1 {{1.0, 2.0, 3.0}, {2.0, 5.0, 7.0}, {2.0, 5.0, 7.0}}; xt::xarray<double> arr2 {5.0, 6.0, 7.0}; xt::xarray<double> res = xt::view(arr1, 1) + arr2; std::cout << res << std::endl; xt::xarray<double> arr3 {1.0, 2.0, 3.0, 4.0}; arr3.reshape({2, 2}); std::cout << arr3; return 0; }
[ "leonardo.baroncelli@inaf.it" ]
leonardo.baroncelli@inaf.it
44fe74758c849a685fa49d8cc68762c4afe148e2
9685b931b456818682197e0fef5ac5e086416a15
/analysis/test/exampleParamConfig.cpp
4c79572da7c4c93d200f8a8c5858c2dc7901e7bf
[]
no_license
dromeroa/CMSDASHiggsInv
5448443655b5d7a8a70ca24424b3c2a09a531116
9aa3487abc25387033b9ec6866d4cba87cba61e5
refs/heads/master
2021-01-15T10:34:45.035501
2015-01-23T11:29:17
2015-01-23T11:29:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,920
cpp
#include <boost/algorithm/string.hpp> #include "boost/lexical_cast.hpp" #include "boost/program_options.hpp" #include "boost/format.hpp" #include "boost/function.hpp" using boost::lexical_cast; namespace po=boost::program_options; int main(int argc, char** argv){//main //Input output and config options std::string cfg; bool concept; unsigned pNevts; std::string inFilePath; std::string outFilePath; unsigned nSiLayers; unsigned debug; po::options_description preconfig("Configuration"); //config parameter input file //must contain one line per parameter with identifier=value pairs. preconfig.add_options()("cfg,c",po::value<std::string>(&cfg)->required()); po::variables_map vm; po::store(po::command_line_parser(argc, argv).options(preconfig).allow_unregistered().run(), vm); po::notify(vm); po::options_description config("Configuration"); config.add_options() //Input output and config options //->required() ("concept", po::value<bool>(&concept)->default_value(true)) ("pNevts,n", po::value<unsigned>(&pNevts)->default_value(0)) ("inFilePath,i", po::value<std::string>(&inFilePath)->required()) ("outFilePath,o", po::value<std::string>(&outFilePath)->required()) ("nSiLayers", po::value<unsigned>(&nSiLayers)->default_value(2)) ("debug,d", po::value<unsigned>(&debug)->default_value(0)) ; po::store(po::command_line_parser(argc, argv).options(config).allow_unregistered().run(), vm); po::store(po::parse_config_file<char>(cfg.c_str(), config), vm); po::notify(vm); //then run with //./bin/executable -c configfile //or to run with a different option than the one in the config file: //./bin/executable -c configfile --inFilePath=/blah/blah/ //each option has a short "-i", "-o" etc... //specified in the lines above after the ",", //and the long option with --inFilePath etc.... }
[ "a.magnan@imperial.ac.uk" ]
a.magnan@imperial.ac.uk
6164b50b62d3df92f590cc717c9ec656df86c753
83857373cf14478a9db0002c9c17e317401dfd03
/1790_Rotate_String_II.cpp
c1b46d2982b9f3af3d86bb48a47549343cb6b028
[]
no_license
neoVincent/LeetCodePlayground
acdefed387158f4c53b9199498d9cd1c62b5e50e
994b80108fd6dac8b413c858f5182a0e80adbf7b
refs/heads/master
2021-06-11T03:37:46.534237
2019-10-03T00:28:16
2019-10-03T00:28:16
128,283,607
0
0
null
null
null
null
UTF-8
C++
false
false
761
cpp
1790_Rotate_String_II.cpp class Solution { public: /** * @param str: An array of char * @param left: a left offset * @param right: a right offset * @return: return a rotate string */ string RotateString2(string &str, int left, int right) { // left, append end // right, append front left %= str.size(); right %= str.size(); if (left == right) return str; int diff = 0; if (left > right) { diff = left - right; return str.substr(diff) + str.substr(0,diff); } else { diff = right - left; return str.substr(str.size()-diff) + str.substr(0,str.size()-diff); } } };
[ "neovincent@163.com" ]
neovincent@163.com
39818fa703a7d0d7fbe2711ecbf997ac112d43e1
6b1c4163a5192347ad1407b1fc4d1b35a1a86330
/src/TouchDownConfig.cpp
a3d6b85338d1036c71c426afb1d7bb48970842ed
[ "MIT" ]
permissive
ShihaoWang/Online-Contact-Planning-for-Fall-Mitigation
278422f48855fe3b0d1c46a51434b815c60fd607
ef63e67e92e369edbff9854f681e1c2329f2a6d3
refs/heads/master
2020-09-06T23:31:51.272153
2020-05-29T15:03:56
2020-05-29T15:03:56
220,543,163
0
0
null
null
null
null
UTF-8
C++
false
false
9,048
cpp
#include <iostream> #include <fstream> #include <sstream> #include "CommonHeader.h" #include <omp.h> #include "NonlinearOptimizerInfo.h" static Robot SimRobotObj; static int SwingLimbIndex; static std::vector<int> SwingLimbChain; static Vector3 PosGoal; static Vector3 GradGoal; static double EndEffectorDist; static std::vector<double> RefConfig; static std::vector<double> InitConfig; static SelfLinkGeoInfo SelfLinkGeoObj; struct TouchDownConfigOpt: public NonlinearOptimizerInfo { TouchDownConfigOpt():NonlinearOptimizerInfo(){}; // This struct inherits the NonlinearOptimizerInfo struct and we just need to defined the Constraint function static void ObjNConstraint(int *Status, int *n, double x[], int *needF, int *neF, double F[], int *needG, int *neG, double G[], char *cu, int *lencu, int iu[], int *leniu, double ru[], int *lenru) { std::vector<double> x_vec(*n); for (int i = 0; i < *n; i++) { x_vec[i] = x[i]; } std::vector<double> F_val = TouchDownConfigOptNCons(*n, *neF, x_vec); for (int i = 0; i < *neF; i++) { F[i] = F_val[i]; } } void Solve(std::vector<double> &RobotConfig) { int StartType = 0; NonlinearProb.solve(StartType, neF, n, ObjAdd, ObjRow, ObjNConstraint, xlow, xupp, Flow, Fupp, x, xstate, xmul, F, Fstate, Fmul, nS, nInf, sumInf); for (int i = 0; i < n; i++) { RobotConfig[i] = x[i]; } delete []x; delete []xlow; delete []xupp; delete []xmul; delete []xstate; delete []F; delete []Flow; delete []Fupp; delete []Fmul; delete []Fstate; } static std::vector<double> TouchDownConfigOptNCons(const int & nVar, const int & nObjNCons, const std::vector<double> & ActiveConfigOpt) { // This funciton provides the constraint for the configuration variable std::vector<double> F(nObjNCons); double ConfigDiff = 0.0; for (int i = 0; i < SwingLimbChain.size(); i++) { RefConfig[SwingLimbChain[i]] = ActiveConfigOpt[i]; double ConfigDiff_i = InitConfig[SwingLimbChain[i]] - ActiveConfigOpt[i]; ConfigDiff+=ConfigDiff_i*ConfigDiff_i; } SimRobotObj.UpdateConfig(Config(RefConfig)); SimRobotObj.UpdateGeometry(); Vector3 LinkiCenterPos; SimRobotObj.GetWorldPosition(NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].AvgLocalContact, NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LinkIndex, LinkiCenterPos); Vector3 AvgDiff = LinkiCenterPos - PosGoal; F[0] = AvgDiff.normSquared(); int ConstraintIndex = 1; // Self-collision constraint std::vector<double> SelfCollisionDistVec(SwingLimbChain.size()-3); for (int i = 0; i < SwingLimbChain.size()-3; i++) // Due to the bounding box size of torso link { Box3D Box3DObj = SimRobotObj.geometry[SwingLimbChain[i]]->GetBB(); std::vector<Vector3> BoxVerticesVec = BoxVertices(Box3DObj); std::vector<double> DistVec(BoxVerticesVec.size()); for (int j = 0; j < BoxVerticesVec.size(); j++) { DistVec[j] = SelfLinkGeoObj.SelfCollisionDist(SwingLimbIndex, BoxVerticesVec[j]); } SelfCollisionDistVec[i] = *std::min_element(DistVec.begin(), DistVec.end()); } F[ConstraintIndex] = *std::min_element(SelfCollisionDistVec.begin(), SelfCollisionDistVec.end()); ConstraintIndex+=1; for (int i = 0; i < NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LocalContacts.size(); i++) { Vector3 LinkiPjPos; SimRobotObj.GetWorldPosition(NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LocalContacts[i], NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LinkIndex, LinkiPjPos); F[ConstraintIndex] = SDFInfo.SignedDistance(LinkiPjPos) - EndEffectorDist; ConstraintIndex+=1; } RobotLink3D Link_i = SimRobotObj.links[NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LinkIndex]; Vector3 AlignDirection; AlignDirection.x = Link_i.T_World.R.data[2][0]; AlignDirection.y = Link_i.T_World.R.data[2][1]; AlignDirection.z = Link_i.T_World.R.data[2][2]; double Proj = AlignDirection.dot(GradGoal); F[ConstraintIndex] = Proj - 1.0; ConstraintIndex+=1; return F; } }; std::vector<double> TouchDownConfigOptFn(const Robot & SimRobot, const int & _SwingLimbIndex, const Vector3 & _PosGoal, const double & SwingContactDist, SelfLinkGeoInfo & _SelfLinkGeoObj, ReachabilityMap & RMObject, bool & OptFlag, const int & Type) { // This function is used to optimize robot's touch down configuration such that the end effector touches the environment without self-collision. SimRobotObj = SimRobot; SwingLimbIndex = _SwingLimbIndex; SwingLimbChain = RMObject.EndEffectorLink2Pivotal[_SwingLimbIndex]; PosGoal = _PosGoal; GradGoal = NonlinearOptimizerInfo::SDFInfo.SignedDistanceNormal(PosGoal); RefConfig = SimRobot.q; InitConfig = SimRobot.q;; SelfLinkGeoObj = _SelfLinkGeoObj; OptFlag = true; TouchDownConfigOpt TouchDownConfigOptProblem; // Static Variable Substitution std::vector<double> InitSwingLimbChain(SwingLimbChain.size()); int n = SwingLimbChain.size(); // Cost function on the norm difference between the reference avg position and the modified contact position. int neF = 1; neF += 1; // Self-Collision neF = neF + NonlinearOptimizerInfo::RobotLinkInfo[_SwingLimbIndex].LocalContacts.size(); // Touch-down constraint neF = neF + 1; // End Effector Alignment TouchDownConfigOptProblem.InnerVariableInitialize(n, neF); /* Initialize the bounds of variables */ std::vector<double> xlow_vec(n), xupp_vec(n); for (int i = 0; i < n; i++) { // Configuration xlow_vec[i] = SimRobot.qMin(SwingLimbChain[i]); xupp_vec[i] = SimRobot.qMax(SwingLimbChain[i]); InitSwingLimbChain[i] = RefConfig[SwingLimbChain[i]]; } TouchDownConfigOptProblem.VariableBoundsUpdate(xlow_vec, xupp_vec); /* Initialize the bounds of variables */ std::vector<double> Flow_vec(neF), Fupp_vec(neF); if(Type==1){ EndEffectorDist = max(0.0, SwingContactDist); for (int i = 0; i < neF-1; i++) { Flow_vec[i] = 0; Fupp_vec[i] = 1e10; } Flow_vec[neF-1] = 0; Fupp_vec[neF-1] = 0; } else { EndEffectorDist = 0.0; Flow_vec[0] = 0; Fupp_vec[0] = 1e10; for (int i = 0; i < neF; i++) { Flow_vec[i] = 0.0; Fupp_vec[i] = 0.0; } } TouchDownConfigOptProblem.ConstraintBoundsUpdate(Flow_vec, Fupp_vec); /* Initialize the seed guess */ TouchDownConfigOptProblem.SeedGuessUpdate(InitSwingLimbChain); /* Given a name of this problem for the output */ TouchDownConfigOptProblem.ProblemNameUpdate("TouchDownConfigOptProblem", 0); // Here we would like allow much more time to be spent on IK TouchDownConfigOptProblem.NonlinearProb.setIntParameter("Iterations limit", 5000); TouchDownConfigOptProblem.NonlinearProb.setIntParameter("Major iterations limit", 250); TouchDownConfigOptProblem.NonlinearProb.setIntParameter("Major print level", 0); TouchDownConfigOptProblem.NonlinearProb.setIntParameter("Minor print level", 0); /* ProblemOptions seting */ // Solve with Finite-Difference TouchDownConfigOptProblem.ProblemOptionsUpdate(0, 3); TouchDownConfigOptProblem.Solve(InitSwingLimbChain); std::vector<double> OptConfig = RefConfig; for (int i = 0; i < n; i++) { OptConfig[SwingLimbChain[i]] = InitSwingLimbChain[i]; } SimRobotObj.UpdateConfig(Config(OptConfig)); SimRobotObj.UpdateGeometry(); // std::string ConfigPath = "/home/motion/Desktop/Online-Contact-Planning-for-Fall-Mitigation/user/hrp2/"; // string _OptConfigFile = "TouchDownConfig.config"; // RobotConfigWriter(OptConfig, ConfigPath, _OptConfigFile); // Self-collision constraint numerical checker std::vector<double> SelfCollisionDistVec(SwingLimbChain.size()-3); for (int i = 0; i < SwingLimbChain.size()-3; i++) // Due to the bounding box size of torso link { Box3D Box3DObj = SimRobotObj.geometry[SwingLimbChain[i]]->GetBB(); std::vector<Vector3> BoxVerticesVec = BoxVertices(Box3DObj); std::vector<double> DistVec(BoxVerticesVec.size()); for (int j = 0; j < BoxVerticesVec.size(); j++) { DistVec[j] = SelfLinkGeoObj.SelfCollisionDist(SwingLimbIndex, BoxVerticesVec[j]); } SelfCollisionDistVec[i] = *std::min_element(DistVec.begin(), DistVec.end()); } double SelfCollisionDistTol = *std::min_element(SelfCollisionDistVec.begin(), SelfCollisionDistVec.end()); if(SelfCollisionDistTol<-0.0025){ std::printf("Touch Down Optimization Failure due to Self-collision for Link %d! \n", NonlinearOptimizerInfo::RobotLinkInfo[SwingLimbIndex].LinkIndex); OptFlag = false; } OptConfig = YPRShifter(OptConfig); return OptConfig; }
[ "sw309@duke.edu" ]
sw309@duke.edu
da32818d49aec2ea74e92a87128af629df34885b
4e53bc7b0159337b1c6b9633c66ef93a60649ac9
/week8/trees/tree_52.cpp
b28e0d290ea710d64fe2190bdff6d4719dfb8e45
[]
no_license
NanthR/IPMP
8ee6fb4577c38a91640ef8a1735742b08d887e14
1b6ca8999a9e27d9aeb201ca7863f3261598b049
refs/heads/main
2023-06-06T01:58:10.581967
2021-06-26T16:30:33
2021-06-26T16:30:33
352,302,818
0
0
null
null
null
null
UTF-8
C++
false
false
474
cpp
#include "tree.h" node* array_to_bst(int arr[], int start, int end) { if (start > end) return NULL; int mid = (start + end)/2; node *head = new node(arr[mid]); head->left = array_to_bst(arr, start, mid - 1); head->right = array_to_bst(arr, mid + 1, end); return head; } int main() { int arr[] = {1, 2, 3, 4, 5, 6, 7}; int n = sizeof(arr) / sizeof(arr[0]); node *head = array_to_bst(arr, 0, n-1); inorder(head); }
[ "nanth.raghul@gmail.com" ]
nanth.raghul@gmail.com
6083cf682e12bcbcfe8796a57eb51c008fa56caf
38c10c01007624cd2056884f25e0d6ab85442194
/components/autofill/content/browser/content_autofill_driver.h
b9e93299c463766963f25ee04cb71dbecf976eeb
[ "BSD-3-Clause" ]
permissive
zenoalbisser/chromium
6ecf37b6c030c84f1b26282bc4ef95769c62a9b2
e71f21b9b4b9b839f5093301974a45545dad2691
refs/heads/master
2022-12-25T14:23:18.568575
2016-07-14T21:49:52
2016-07-23T08:02:51
63,980,627
0
2
BSD-3-Clause
2022-12-12T12:43:41
2016-07-22T20:14:04
null
UTF-8
C++
false
false
3,944
h
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_ #include <string> #include "base/memory/scoped_ptr.h" #include "base/supports_user_data.h" #include "components/autofill/content/browser/request_autocomplete_manager.h" #include "components/autofill/core/browser/autofill_driver.h" #include "components/autofill/core/browser/autofill_external_delegate.h" #include "components/autofill/core/browser/autofill_manager.h" namespace content { class BrowserContext; class RenderFrameHost; struct FrameNavigateParams; struct LoadCommittedDetails; } namespace IPC { class Message; } namespace autofill { class AutofillClient; // Class that drives autofill flow in the browser process based on // communication from the renderer and from the external world. There is one // instance per RenderFrameHost. class ContentAutofillDriver : public AutofillDriver { public: ContentAutofillDriver( content::RenderFrameHost* render_frame_host, AutofillClient* client, const std::string& app_locale, AutofillManager::AutofillDownloadManagerState enable_download_manager); ~ContentAutofillDriver() override; // AutofillDriver: bool IsOffTheRecord() const override; net::URLRequestContextGetter* GetURLRequestContext() override; base::SequencedWorkerPool* GetBlockingPool() override; bool RendererIsAvailable() override; void SendFormDataToRenderer(int query_id, RendererFormDataAction action, const FormData& data) override; void PropagateAutofillPredictions( const std::vector<autofill::FormStructure*>& forms) override; void SendAutofillTypePredictionsToRenderer( const std::vector<FormStructure*>& forms) override; void RendererShouldAcceptDataListSuggestion( const base::string16& value) override; void RendererShouldClearFilledForm() override; void RendererShouldClearPreviewedForm() override; void RendererShouldFillFieldWithValue(const base::string16& value) override; void RendererShouldPreviewFieldWithValue( const base::string16& value) override; void PopupHidden() override; // Handles a message that came from the associated render frame. bool HandleMessage(const IPC::Message& message); // Called when the frame has navigated. void DidNavigateFrame(const content::LoadCommittedDetails& details, const content::FrameNavigateParams& params); AutofillExternalDelegate* autofill_external_delegate() { return &autofill_external_delegate_; } AutofillManager* autofill_manager() { return autofill_manager_.get(); } content::RenderFrameHost* render_frame_host() { return render_frame_host_; } protected: // Sets the manager to |manager| and sets |manager|'s external delegate // to |autofill_external_delegate_|. Takes ownership of |manager|. void SetAutofillManager(scoped_ptr<AutofillManager> manager); private: // Weak ref to the RenderFrameHost the driver is associated with. Should // always be non-NULL and valid for lifetime of |this|. content::RenderFrameHost* const render_frame_host_; // The per-tab client. AutofillClient* client_; // AutofillManager instance via which this object drives the shared Autofill // code. scoped_ptr<AutofillManager> autofill_manager_; // AutofillExternalDelegate instance that this object instantiates in the // case where the Autofill native UI is enabled. AutofillExternalDelegate autofill_external_delegate_; // Driver for the interactive autocomplete dialog. RequestAutocompleteManager request_autocomplete_manager_; }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_CONTENT_AUTOFILL_DRIVER_H_
[ "zeno.albisser@hemispherian.com" ]
zeno.albisser@hemispherian.com
1bdc6fa53132ba04b66b6a40b7cb363e46f19bc5
14cd1a06fc36753d4c25ae952e9500813bd17b4a
/source/utils/BufferedLogger.cpp
a3d496d4cb2aca7029d5fab51612eb47ed2db5ee
[ "MIT" ]
permissive
knut0815/CubismUP_3D
5191237d8cbccf41b9b6e8733e5b73b5636847f6
de9a31945d8dde975a3a2f34c1f3423eae160581
refs/heads/master
2022-12-27T14:01:48.962191
2020-10-18T17:40:59
2020-10-18T17:40:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,928
cpp
// // Cubism3D // Copyright (c) 2018 CSE-Lab, ETH Zurich, Switzerland. // Distributed under the terms of the MIT license. // // Created by Ivica Kicic (kicici@ethz.ch) in May 2018. // #include "BufferedLogger.h" #include <fstream> #include <unordered_map> namespace cubismup3d { BufferedLogger logger; struct BufferedLoggerImpl { struct Stream { std::stringstream stream; int requests_since_last_flush = 0; // GN: otherwise icpc complains Stream() = default; Stream(Stream &&) = default; Stream(const Stream& c) : requests_since_last_flush(c.requests_since_last_flush) { stream << c.stream.rdbuf(); } }; typedef std::unordered_map<std::string, Stream> container_type; container_type files; /* * Flush a single stream and reset the counter. */ void flush(container_type::value_type &p) { std::ofstream savestream; savestream.open(p.first, std::ios::app | std::ios::out); savestream << p.second.stream.rdbuf(); savestream.close(); p.second.requests_since_last_flush = 0; } std::stringstream& get_stream(const std::string &filename) { auto it = files.find(filename); if (it != files.end()) { if (++it->second.requests_since_last_flush == BufferedLogger::AUTO_FLUSH_COUNT) flush(*it); return it->second.stream; } else { // With request_since_last_flush == 0, // the first flush will have AUTO_FLUSH_COUNT frames. auto new_it = files.emplace(filename, Stream()).first; return new_it->second.stream; } } }; BufferedLogger::BufferedLogger() : impl(new BufferedLoggerImpl) { } BufferedLogger::~BufferedLogger() { flush(); delete impl; } std::stringstream& BufferedLogger::get_stream(const std::string &filename) { return impl->get_stream(filename); } void BufferedLogger::flush(void) { for (auto &pair : impl->files) impl->flush(pair); } } // namespace cubismup3d
[ "novatig@ethz.ch" ]
novatig@ethz.ch
b0f5ce8389ac18d2356bd28ba0acde8b812c7208
a3273f0fb34638b4518d75eb094359a9c6ec897c
/WIPTitel/Source/WIPTitel/WIPTitelGameModeBase.cpp
c91f428dcea8a56709c1c7d73a9dc330a00947cb
[]
no_license
umatin/TiefeSGJ
a3d24d1de1f13d83d55e51dfaa63299f1a4ee6f1
24e1d3f082dc81f891fdb47a59aa603194a51f19
refs/heads/master
2021-01-25T10:55:43.465488
2017-06-11T15:02:56
2017-06-11T15:02:56
93,890,561
0
0
null
null
null
null
UTF-8
C++
false
false
118
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "WIPTitelGameModeBase.h"
[ "martin.eppert@web.de" ]
martin.eppert@web.de
bd78ce86d85ff099c993f86d270e1592bed5c57d
d6e724186efb6ed39eb581201824940dfd89c1ce
/tokenizer_list.h
0f8f7a24f441dbbf0a37b62cabfcedc8d1337f59
[]
no_license
lineCode/unqlite-dictionary
bcee2bc3238b6ed8adecad5e903ac703937c2412
0c0cbe0c152fa1b83d2c354f42de3b5d8dc36956
refs/heads/master
2021-01-19T21:54:46.833312
2014-10-20T00:55:56
2014-10-20T00:55:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
719
h
#define TOKEN_SIZE 128 template<typename Type, class Wrapper, class List, class Tokenizer>class TokenizerList { public: TokenizerList(Wrapper * wrapper, Tokenizer * tokenizer):wrapper(wrapper), tokenizer(tokenizer) {} void tokens(Type key, List * & list) { tokens(wrapper, tokenizer, key, list); } private: Wrapper * wrapper; Tokenizer * tokenizer; void tokens(Wrapper * & wrapper, Tokenizer * & tokenizer, Type key, List * & list) { // add tokens to list char __token[TOKEN_SIZE]; while(tokenizer->token(__token)) { list->insert_right(key, __token); wrapper->clear(__token, TOKEN_SIZE); } list->insert_right(key, __token); wrapper->clear(__token, TOKEN_SIZE); } };
[ "nikola_pav@eunet.rs" ]
nikola_pav@eunet.rs
bef659d6b8ed2598fad7f8329dcd7bad34282637
cb5ed402b086c58b7d67600f0b8d49662a0a9dc6
/examples/ResampleMontage2D.cxx
3be5acf153f18950b43d733ca67a7905014293d1
[ "Apache-2.0" ]
permissive
fbudin69500/ITKMontage
9e0fa050506f8650550399d5abd72f37fc52b91d
4982fda5b0809ff0ef5e24b6570ef5ec9e002630
refs/heads/master
2021-05-04T00:54:04.384005
2019-05-10T20:15:16
2019-05-10T21:31:37
120,355,349
0
0
null
2018-02-05T20:06:08
2018-02-05T20:06:07
null
UTF-8
C++
false
false
6,181
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 "itkImageFileWriter.h" #include "itkParseTileConfiguration.h" #include "itkRGBPixel.h" #include "itkRGBAPixel.h" #include "itkTileMergeImageFilter.h" #include "itksys/SystemTools.hxx" //taken from test/itkMontageTestHelper.hxx and simplified template< typename PixelType, typename AccumulatePixelType > void montage2D( const itk::TileLayout2D& actualTiles, const std::string& inputPath, const std::string& outFilename, unsigned streamSubdivisions ) { constexpr unsigned Dimension = 2; using TransformType = itk::TranslationTransform< double, Dimension >; using OriginalImageType = itk::Image< PixelType, Dimension >; // possibly RGB instead of scalar typename OriginalImageType::SpacingType sp; sp.Fill( 1.0 ); // most data assumes unit spacing, even if the files themselves have something else (72 DPI, 96 DPI, 300 DPI etc) const unsigned yMontageSize = actualTiles.size(); const unsigned xMontageSize = actualTiles[0].size(); // write generated mosaic using Resampler = itk::TileMergeImageFilter< OriginalImageType, AccumulatePixelType >; typename Resampler::Pointer resampleF = Resampler::New(); resampleF->SetMontageSize( { xMontageSize, yMontageSize } ); resampleF->SetForcedSpacing( sp ); typename Resampler::TileIndexType ind; for ( unsigned y = 0; y < yMontageSize; y++ ) { ind[1] = y; for ( unsigned x = 0; x < xMontageSize; x++ ) { ind[0] = x; resampleF->SetInputTile( ind, inputPath + actualTiles[y][x].FileName ); TransformType::ParametersType params( Dimension ); typename TransformType::Pointer regTr = TransformType::New(); params[0] = -actualTiles[y][x].Position[0]; params[1] = -actualTiles[y][x].Position[1]; regTr->SetParametersByValue( params ); resampleF->SetTileTransform( ind, regTr ); } } // resampleF->Update(); //implicitly called by the writer using WriterType = itk::ImageFileWriter< OriginalImageType >; typename WriterType::Pointer w = WriterType::New(); w->SetInput( resampleF->GetOutput() ); // resampleF->DebugOn(); //generate an image of contributing regions // MetaImage and HDF5 formats support streaming w->SetFileName( outFilename ); // w->UseCompressionOn(); // streamSubdivisions of 1 disables streaming (higher memory useage) w->SetNumberOfStreamDivisions( streamSubdivisions ); w->Update(); } // dispatches to main implementation based on pixel type template< typename ComponentType, typename AccumulatePixelType > void montage2D( const itk::TileLayout2D& actualTiles, const std::string& inputPath, const std::string& outFilename, unsigned streamSubdivisions, itk::ImageIOBase::IOPixelType pixelType ) { switch ( pixelType ) { case itk::ImageIOBase::IOPixelType::SCALAR: montage2D< ComponentType, AccumulatePixelType >( actualTiles, inputPath, outFilename, streamSubdivisions ); break; case itk::ImageIOBase::IOPixelType::RGB: montage2D< itk::RGBPixel< ComponentType >, itk::RGBPixel< AccumulatePixelType > >( actualTiles, inputPath, outFilename, streamSubdivisions ); break; case itk::ImageIOBase::IOPixelType::RGBA: montage2D< itk::RGBAPixel< ComponentType >, itk::RGBAPixel< AccumulatePixelType > >( actualTiles, inputPath, outFilename, streamSubdivisions ); break; default: itkGenericExceptionMacro( "Only sclar, RGB and RGBA images are supported!" ); break; } } int main( int argc, char *argv[] ) { if ( argc < 3 ) { std::cout << "Usage: " << std::endl; std::cout << argv[0] << " <tileConfiguration> <outputFilename>" << std::endl; return EXIT_FAILURE; } std::string inputPath = itksys::SystemTools::GetFilenamePath( argv[1] ); if ( !inputPath.empty() ) // a path was given in addition to file name { inputPath += '/'; } itk::TileLayout2D actualTiles = itk::ParseTileConfiguration2D( argv[1] ); try { itk::ImageIOBase::Pointer imageIO = itk::ImageIOFactory::CreateImageIO( ( inputPath + actualTiles[0][0].FileName ).c_str(), itk::ImageIOFactory::ReadMode ); imageIO->SetFileName( inputPath + actualTiles[0][0].FileName ); imageIO->ReadImageInformation(); const unsigned numDimensions = imageIO->GetNumberOfDimensions(); if ( numDimensions != 2 ) { itkGenericExceptionMacro( "Only 2D images are supported!" ); } const itk::ImageIOBase::IOPixelType pixelType = imageIO->GetPixelType(); const itk::ImageIOBase::IOComponentType componentType = imageIO->GetComponentType(); switch ( componentType ) { case itk::ImageIOBase::IOComponentType::UCHAR: montage2D< unsigned char, unsigned int >( actualTiles, inputPath, argv[2], 1, pixelType ); break; case itk::ImageIOBase::IOComponentType::USHORT: montage2D< unsigned short, double >( actualTiles, inputPath, argv[2], 1, pixelType ); break; default: // instantiating too many types leads to long compileation time and big executable itkGenericExceptionMacro( "Only unsigned char and unsigned short are supported!" ); break; } } catch ( itk::ExceptionObject& e ) { std::cout << "Error during montaging:" << std::endl; std::cout << e << std::endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }
[ "dzenan.zukic@kitware.com" ]
dzenan.zukic@kitware.com
029a1310e3ac0183c2b5c82a3150ab4ebe707b3d
718c37490e1e1b343daf6600ac1f12db1da4ce71
/app/src/main/cpp/platform/android/egl.cpp
09ac7c75fa3390fa112cd578aca6574a740f2501
[]
no_license
BobDeng1974/glstitcher
890cd80504c24a4c74e4ec58cf4f65cb57599367
4a728c866166063075a63b8cbc7693b078b41d7f
refs/heads/master
2020-04-08T11:10:13.895068
2018-04-21T04:57:21
2018-04-21T04:57:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,387
cpp
// // ogles_gpgpu project - GPGPU for mobile devices and embedded systems using OpenGL ES 2.0 // // Author: Markus Konrad <post@mkonrad.net>, Winter 2014/2015 // http://www.mkonrad.net // // See LICENSE file in project repository root for the license. // #include "egl.h" #include "../../common/common_includes.h" using namespace ogles_gpgpu; EGLConfig EGL::conf = NULL; EGLSurface EGL::surface = EGL_NO_SURFACE; EGLContext EGL::ctx = EGL_NO_CONTEXT; EGLDisplay EGL::disp = EGL_NO_DISPLAY; bool EGL::setup(int rSize, int gSize, int bSize, int aSize, int depthSize) { // EGL config attributes const EGLint confAttr[] = { EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, // use OpenGL ES 2.0, very important! EGL_SURFACE_TYPE, EGL_PBUFFER_BIT, // we will create a pixelbuffer surface EGL_RED_SIZE, rSize, EGL_GREEN_SIZE, gSize, EGL_BLUE_SIZE, bSize, EGL_ALPHA_SIZE, aSize, EGL_DEPTH_SIZE, depthSize, EGL_NONE }; // EGL context attributes const EGLint ctxAttr[] = { EGL_CONTEXT_CLIENT_VERSION, 3, EGL_NONE }; EGLint eglMajVers, eglMinVers; EGLint numConfigs; disp = eglGetDisplay(EGL_DEFAULT_DISPLAY); if (disp == EGL_NO_DISPLAY) { OG_LOGERR("EGL", "eglGetDisplay failed: %d", eglGetError()); return false; } if (!eglInitialize(disp, &eglMajVers, &eglMinVers)) { OG_LOGERR("EGL", "eglInitialize failed: %d", eglGetError()); return false; } OG_LOGINF("EGL", "EGL init with version %d.%d", eglMajVers, eglMinVers); if (!eglChooseConfig(disp, confAttr, &conf, 1, &numConfigs)) { // choose the first config OG_LOGERR("EGL", "eglChooseConfig failed: %d", eglGetError()); return false; } ctx = eglCreateContext(disp, conf, EGL_NO_CONTEXT, ctxAttr); if (ctx == EGL_NO_CONTEXT) { OG_LOGERR("EGL", "eglCreateContext failed: %d", eglGetError()); return false; } return true; } bool EGL::createPBufferSurface(int w, int h) { assert(disp != EGL_NO_DISPLAY && conf != NULL && ctx != EGL_NO_CONTEXT); assert(w > 0 && h > 0); destroySurface(); // surface attributes // the surface size is set to the input frame size const EGLint surfaceAttr[] = { EGL_WIDTH, w, EGL_HEIGHT, h, EGL_NONE }; surface = eglCreatePbufferSurface(disp, conf, surfaceAttr); // create a pixelbuffer surface if (surface == EGL_NO_SURFACE) { OG_LOGERR("EGL", "eglCreatePbufferSurface failed: %d", eglGetError()); return false; } return true; } bool EGL::activate() { assert(disp != EGL_NO_DISPLAY && conf != NULL && ctx != EGL_NO_CONTEXT && surface != EGL_NO_SURFACE); if (!eglMakeCurrent(disp, surface, surface, ctx)) { OG_LOGERR("EGL", "eglMakeCurrent failed: %d", eglGetError()); return false; } return true; } bool EGL::deactivate() { if (!eglMakeCurrent(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT)) { OG_LOGERR("EGL", "eglMakeCurrent failed: %d", eglGetError()); return false; } return true; } void EGL::shutdown() { deactivate(); destroySurface(); eglDestroyContext(disp, ctx); eglTerminate(disp); disp = EGL_NO_DISPLAY; ctx = EGL_NO_CONTEXT; } void EGL::destroySurface() { if (surface == EGL_NO_SURFACE) return; eglDestroySurface(disp, surface); surface = EGL_NO_SURFACE; }
[ "su.jin@xiaoyi.com" ]
su.jin@xiaoyi.com
c077564f666378556ff477ddd6ae8bca4aefa121
a549bb936dc9003a79509999f1113f5e97f24c69
/vital/types/track_set.h
0a23b89b4f6930eaa5c87a44bdce7171faf1746d
[]
no_license
kfieldho/vital
98a7132f0f5fa52d1acea5bb1c6a455dedbc3f06
17e4b9b6cc9a464136c38f60bce89dd84fdfc587
refs/heads/master
2021-01-18T18:21:36.164460
2015-07-31T16:56:41
2015-07-31T16:56:41
43,644,265
0
0
null
2015-10-04T17:02:25
2015-10-04T17:02:25
null
UTF-8
C++
false
false
8,982
h
/*ckwg +29 * Copyright 2013-2014 by Kitware, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * * Neither name of Kitware, Inc. nor the names of any 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 AUTHORS 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. */ /** * \file * \brief Header file for an abstract \link vital::track_set track_set * \endlink and a concrete \link vital::simple_track_set * simple_track_set \endlink */ #ifndef VITAL_TRACK_SET_H_ #define VITAL_TRACK_SET_H_ #include <vital/vital_export.h> #include <vector> #include <set> #include <boost/shared_ptr.hpp> #include "descriptor_set.h" #include "feature_set.h" #include "track.h" namespace kwiver { namespace vital { class track_set; /// Shared pointer for base track_set type typedef boost::shared_ptr< track_set > track_set_sptr; /// A collection of 2D feature point tracks class VITAL_EXPORT track_set { public: /// Destructor virtual ~track_set() { } /// Return the number of tracks in the set virtual size_t size() const; /// Return whether or not there are any tracks in the set virtual bool empty() const; /// Return a vector of track shared pointers virtual std::vector< track_sptr > tracks() const = 0; /// Return the set of all frame IDs covered by these tracks virtual std::set< frame_id_t > all_frame_ids() const; /// Return the set of all track IDs in this track set virtual std::set< track_id_t > all_track_ids() const; /// Return the first (smallest) frame number containing tracks virtual frame_id_t first_frame() const; /// Return the last (largest) frame number containing tracks virtual frame_id_t last_frame() const; /// Return the track in this set with the specified id. /** * An empty pointer will be returned if the track cannot be found. * * \param [in] tid track identifier for the desired track. * * \returns a pointer to the track with the given id. */ virtual track_sptr const get_track( track_id_t tid ) const; /// Return all tracks active on a frame. /** * Active tracks are any tracks which contain a state on the target frame. * * \param [in] offset the frame offset for selecting the active frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a track set which is the subset of tracks that are active. */ virtual track_set_sptr active_tracks( int offset = -1 ); /// Return all tracks inactive on a frame. /** * Inactive tracks are any tracks which do not contain a state on the target frame. * * \param [in] offset the frame offset for selecting the active frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a track set which is the subset of tracks that are inactive. */ virtual track_set_sptr inactive_tracks( int offset = -1 ); /// Return all tracks newly initialized on the given frame. /** * New tracks include any tracks with a first track state on the target frame. * * \param [in] offset the frame offset for selecting the active frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a track set containing all new tracks for the given frame. */ virtual track_set_sptr new_tracks( int offset = -1 ); /// Return all tracks terminated on the given frame. /** * Terminated tracks include any tracks with a last track state on the frame. * * \param [in] offset the frame offset for selecting the active frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a track set containing all terminated tracks for the given frame. */ virtual track_set_sptr terminated_tracks( int offset = -1 ); /// Return the percentage of tracks successfully tracked between the two frames. /** * The percentage of tracks successfully tracked between frames is defined as the * number of tracks which have a track state on both frames, divided by the total * number of unique tracks which appear on both frames. * * \param [in] offset1 the frame offset for the first frame in the operation. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * \param [in] offset2 the frame offset for the second frame in the operation. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a floating point percent value (between 0.0 and 1.0). */ virtual double percentage_tracked( int offset1 = -2, int offset2 = -1 ); /// Return the set of features in tracks on the last frame virtual feature_set_sptr last_frame_features() const; /// Return the set of descriptors in tracks on the last frame virtual descriptor_set_sptr last_frame_descriptors() const; /// Return the set of features in all tracks for the given frame. /** * \param [in] offset the frame offset for selecting the target frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a feature_set_sptr for all features on the give frame. */ virtual feature_set_sptr frame_features( int offset = -1 ) const; /// Return the set of descriptors in all tracks for the given frame. /** * \param [in] offset the frame offset for selecting the target frame. * Postive number are absolute frame numbers while negative * numbers are relative to the last frame. For example, * offset of -1 refers to the last frame and is the default. * * \returns a descriptor_set_sptr for all features on the give frame. */ virtual descriptor_set_sptr frame_descriptors( int offset = -1 ) const; protected: /// Convert an offset number to an absolute frame number frame_id_t offset_to_frame( int offset ) const; }; /// A concrete track set that simply wraps a vector of tracks. class simple_track_set : public track_set { public: /// Default Constructor simple_track_set() { } /// Constructor from a vector of tracks explicit simple_track_set( const std::vector< track_sptr >& tracks ) : data_( tracks ) { } /// Return the number of tracks in the set virtual size_t size() const { return data_.size(); } /// Return a vector of track shared pointers virtual std::vector< track_sptr > tracks() const { return data_; } protected: /// The vector of tracks std::vector< track_sptr > data_; }; } } // end namespace vital #endif // VITAL_TRACK_SET_H_
[ "linus.sherrill@kitware.com" ]
linus.sherrill@kitware.com
3034f97e8927b110e2effd315656a58482a8ff07
290cb27a296aeb6f8b22530de28db2481d6d126a
/pic-core/include/MathUtils.h
3930aa504266a0903271161e863cc655fa7f8397
[]
no_license
LHugueniot/APIC_FLUID_SIM
cabd9adff37902bc6b0079c038be3fd20dfc1e74
41f981158cd31901ffc7b376047a90099f70fed2
refs/heads/master
2023-01-15T16:45:50.683657
2020-11-10T23:27:30
2020-11-10T23:27:30
239,333,578
7
2
null
null
null
null
UTF-8
C++
false
false
8,027
h
#pragma once #ifndef MATH_UTILS_H #define MATH_UTILS_H #include <array> #include <cmath> #include <random> #include <vector> #include <algorithm> #include <chrono> #include <string> #include <iostream> #include <iomanip> #include <stdexcept> #include <cassert> #include <system_error> #include <Eigen/Dense> #include <Eigen/Eigen> #include <Eigen/Core> #include <Eigen/IterativeLinearSolvers> #include <Eigen/CholmodSupport> #include <Eigen/Geometry> namespace pic{ #define EZ_MODE 0 #if EZ_MODE # define DEBUG() std::cout<<"BREAK POINT: LINE "<<__LINE__<<" IN "<<__FILE__<<std::endl; # define DEBUG_VAR(var) std::cout<<"BREAK POINT: LINE "<<__LINE__<<" IN "<<__FILE__<<" FOR VAR: "<<#var<<" = "<<var<<std::endl; # define DEBUG_MSG(msg) std::cout<<"BREAK POINT: LINE "<<__LINE__<<" IN "<<__FILE__<<" ~ WITH MSG: "<<msg<<std::endl; # define DEBUG_ASS(Expr, Msg) \ __M_Assert(#Expr, Expr, __FILE__, __LINE__, Msg) #else # define DEBUG(...) do {} while (0) # define DEBUG_VAR(var) do {} while (0) # define DEBUG_MSG(msg) do {} while (0) # define DEBUG_ASS(Expr, Msg) #endif template<typename T> void __M_Assert(const char* expr_str, bool expr, const char* file, int line, T msg){ if (!expr){ std::cerr << "Assert failed:\t" << msg << "\n" << "Expected:\t" << expr_str << "\n" << "Source:\t\t" << file << ", line " << line << "\n"; abort(); } } using namespace Eigen; typedef Matrix<size_t, 3, 1> Vector3st; typedef std::array<double, 2> tuple2d; typedef std::array<double, 3> tuple3d; typedef std::array<double, 4> tuple4d; typedef std::array<double, 8> tuple8d; typedef std::array<int, 2> tuple2i; typedef std::array<int, 3> tuple3i; typedef std::array<int, 4> tuple4i; typedef std::array<int, 5> tuple5i; typedef std::array<int, 6> tuple6i; typedef std::array<int, 7> tuple7i; typedef std::array<int, 8> tuple8i; typedef std::array<size_t, 2> tuple2st; typedef std::array<size_t, 3> tuple3st; typedef std::array<size_t, 4> tuple4st; typedef std::array<size_t, 6> tuple6st; typedef std::array<size_t, 8> tuple8st; typedef Map<Vector3d> Vector3dRef; void printVec3(Vector3d v); void printVec2(Vector2d v); template<typename T, size_t N> std::ostream &operator<<(std::ostream &out, const std::array<T, N>& arr){ out<<"array<"<<N<<">{"; for(auto & e : arr) out<<"\n"<<e; out<<"\n}\n"; return out; } template<typename T> std::ostream &operator<<(std::ostream &out, const std::vector<T>& vec){ out<<"vector.size()="<<vec.size()<<"{\n"; for(auto & e : vec) out<<"\n"<<e; out<<"\n}\n"; return out; } template<class T> Eigen::Matrix<T, 3, 1> gradientTrilinearInterpolation(std::array<T, 8> const & attr, Vector3d const & pos){ double x = pos[0]; double y = pos[1]; double z = pos[2]; auto [c000, c100, c001, c101, c010, c110, c011, c111] = attr; /* Eigen::Matrix<T, 3, 1>(-1.0 * (1 - y) * (1 - z), -1.0 * (1 - x) * (1 - z), -1.0 * (1 - x) * (1 - y)); Eigen::Matrix<T, 3, 1>(1.0 * (1 - y) * (1 - z), x * (-1.0) * (1 - z), x * (1 - y) * (-1.0)); Eigen::Matrix<T, 3, 1>((-1.0) * y * (1 - z), (1 - x) * 1.0 * (1 - z), (1 - x) * y * (-1.0)); Eigen::Matrix<T, 3, 1>(1.0 * y * (1 - z), x * 1.0 * (1 - z), x * y * (-1.0)); Eigen::Matrix<T, 3, 1>((-1.0) * (1 - y) * z, (1 - x) * (-1.0) * z, (1 - x) * (1 - y) * 1.0); Eigen::Matrix<T, 3, 1>(1.0 * (1 - y) * z, x * (-1.0) * z, x * (1 - y) * 1.0); Eigen::Matrix<T, 3, 1>((-1.0) * y * z, (1 - x) * 1.0 * z, (1 - x) * y * 1.0); Eigen::Matrix<T, 3, 1>(1.0 * y * z, x * 1.0 * z, x * y * 1.0); */ Eigen::Matrix<T, 3, 1> w000(-1.0 * (1 - y) * (1 - z), -1.0 * (1 - x) * (1 - z), -1.0 * (1 - x) * (1 - y)); Eigen::Matrix<T, 3, 1> w100(1.0 * (1 - y) * (1 - z), x * (-1.0) * (1 - z), x * (1 - y) * (-1.0)); Eigen::Matrix<T, 3, 1> w001((-1.0) * (1 - y) * z, (1 - x) * (-1.0) * z, (1 - x) * (1 - y) * 1.0); Eigen::Matrix<T, 3, 1> w101(1.0 * (1 - y) * z, x * (-1.0) * z, x * (1 - y) * 1.0); Eigen::Matrix<T, 3, 1> w010((-1.0) * y * (1 - z), (1 - x) * 1.0 * (1 - z), (1 - x) * y * (-1.0)); Eigen::Matrix<T, 3, 1> w110(1.0 * y * (1 - z), x * 1.0 * (1 - z), x * y * (-1.0)); Eigen::Matrix<T, 3, 1> w011((-1.0) * y * z, (1 - x) * 1.0 * z, (1 - x) * y * 1.0); Eigen::Matrix<T, 3, 1> w111(1.0 * y * z, x * 1.0 * z, x * y * 1.0); return c000 * w000 + c100 * w100 + c001 * w001 + c101 * w101 + c010 * w010 + c110 * w110 + c011 * w011 + c111 * w111; } //template<class T> //inline Eigen::Matrix<T, 2, 1> gradBilinearInterpolation( // const T& v00, // const T& v10, // const T& v01, // const T& v11, // T fx, T fy) //{ // return Eigen::Matrix<T, 2, 1>(fy - 1.0, fx - 1.0) * v00 + // Eigen::Matrix<T, 2, 1>(1.0 - fy, -fx) * v10 + // Eigen::Matrix<T, 2, 1>(-fy, 1.0 - fx) * v01 + // Eigen::Matrix<T, 2, 1>(fy, fx) * v11; //} double getDiff(double const x, double const x0, double const x1); Vector3d getDiff(Vector3d const x, Vector3d const x0, Vector3d const x1); double linearInterpolation(double const c0, double const c1, double const z); double bilinearInterpolation(tuple4d const & attr, Vector2d const & pos); double bilinearInterpolation(tuple4d const & attr, double const y, double const z); double trilinearInterpolation(tuple8d const & attr, Vector3d const & pos); double trilinearInterpolation(tuple8d const & attr, double const x, double const y, double const z); //Weights are gotten from scaled down tuple8d getWeights(double const x, double const y, double const z); tuple8d getWeights(Vector3d const & pos); tuple8d getWeights(Vector3d const & worldSpacePos, Vector3d const & c000Pos, Vector3d const & c111Pos); //tuple8d getDistWeights(double const x, double const y, double const z); tuple8d getDistWeights(Vector3d const pos); tuple8d getDistWeights(Vector3d const & worldSpacePos, Vector3d const & c000Pos, Vector3d const & c111Pos); Vector3d const project(Vector3d const& v1, Vector3d const& v2); template<typename T> decltype(auto) getFromIdcs(std::vector<T> v, tuple8i i){ return std::array<T, 8>{v[i[0]], v[i[1]], v[i[2]], v[i[3]], v[i[4]], v[i[5]], v[i[6]], v[i[7]]}; } template <typename T, size_t N1, size_t N2> decltype(auto) operator+(const std::array<T, N1>& ob1, const std::array<T, N2>& ob2){ std::array<T, N1 + N2> ob3; for (int i = 0; i < N1; ++i)ob3[i] = ob1[i]; for (int i = 0; i < N2; ++i)ob3[i + N1] = ob2[i]; return ob3; } template<typename T> void checkForNan(std::vector<T> v){ for (auto & i : v) assert(!std::isnan(i)); } template<typename T> void checkForNan(Matrix<T, Dynamic, 1> M){ for (int i = 0; i < M.rows(); ++i) assert(!std::isnan(M(i, 0))); } template<typename T> void checkForNan(SparseMatrix<T> M){ for (int i = 0; i < M.rows(); ++i) for (int j = 0; j < M.cols(); ++j) assert(!std::isnan(M.coeffRef(i, j))); } int intersectRaySphere(Vector3d const& pointPos, Vector3d const& pointVel, Vector3d const& sphereCenter, double sphereRad, double &t, Vector3d &q); /** template<typename G, void(G::*F)()> void gridPrint(G& grid, uint ni, uint nj, uint nk){ for ( uint i = 0 ; i < ni ; i++){ for ( uint j = 0 ; j < nj ; j++){ for ( uint k = 0 ; k < nk ; k++){ std::cout<<(grid.*F)(i, j, k)<<" "; } std::cout<<std::endl; } std::cout<<std::endl; } } **/ static double const GRAV_Y = -9.8f; //static double const GRAV_Y = 0; static double const WATER_PARTICLE_DENSITY = 10; static bool const ENFORCE_INCOMPRESSIBILITY = 1; static double const INV_WATER_PARTICLE_DENSITY = 1.f/WATER_PARTICLE_DENSITY; static double const FPIC_RATIO = 0.00f; static double const APIC_RATIO = 1.f; } #endif /* MATH_UTILS_H */
[ "lucien98@gmail.com" ]
lucien98@gmail.com
78f0a787925ff7048014255a1c417b74687faaf1
05f7573db159e870fb26c847991c4cb8c407ed4c
/VBF/Source/VBF_App/ModelingTool/C_WizardRelationCreateBatch.cpp
ce8ca3810b923e88fba5a0ad84b2bb45f1988f12
[]
no_license
riyue625/OneGIS.ModelingTool
e126ef43429ce58d22c65832d96dbd113eacbf85
daf3dc91584df7ecfed6a51130ecdf6671614ac4
refs/heads/master
2020-05-28T12:12:43.543730
2018-09-06T07:42:00
2018-09-06T07:42:00
null
0
0
null
null
null
null
GB18030
C++
false
false
699
cpp
#include "C_WizardRelationCreateBatch.h" C_WizardRelationCreateBatch::C_WizardRelationCreateBatch(QWidget* pParent) :QWizard(pParent) { m_pSelectType = new C_WizardPageSelectType(this); addPage(m_pSelectType); m_pSelectRule = new C_WizardPageSelectRule(this); addPage(m_pSelectRule); m_pSetParams = new C_WizardPageSetParams(this); addPage(m_pSetParams); setButtonText(QWizard::FinishButton, "完成"); setButtonText(QWizard::NextButton, "下一步"); setButtonText(QWizard::BackButton, "上一步"); setButtonText(QWizard::CancelButton, "取消"); this->setWindowTitle(tr("对象关系批量创建向导")); } C_WizardRelationCreateBatch::~C_WizardRelationCreateBatch(void) { }
[ "robertsam@126.com" ]
robertsam@126.com
ebb72e0f0c99b80f0305e1e478ac75d702038a99
4328806eb344f0aa156ebe403d9a1f80243b945b
/sms/StorageManager.h
87fe320ffcb611f07839796967f807b9895b19dc
[ "BSD-3-Clause" ]
permissive
stuartcampbell/adara
3faecf15cea176358d7db43c6a302152b152e9dc
692ce3a4d150d43c4f1205793c3968a8b48f2dff
refs/heads/master
2021-12-03T06:03:15.550105
2014-04-24T14:37:17
2014-04-24T14:37:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,557
h
#ifndef __STORAGE_MANAGER_H #define __STORAGE_MANAGER_H #include <boost/property_tree/ptree.hpp> #include <boost/smart_ptr.hpp> #include <boost/function.hpp> #include <boost/signal.hpp> #include <boost/thread.hpp> #include <stdint.h> #include <sys/uio.h> #include <string> #include <vector> #include "ADARA.h" #include "Storage.h" #include "StorageContainer.h" #include "StorageFile.h" class EventFd; class StorageManager { public: typedef boost::signal<void (StorageContainer::SharedPtr &, bool)> ContainerSignal; typedef boost::signal<void (void)> PrologueSignal; typedef boost::function<void (StorageFile::SharedPtr &, off_t)> FileOffSetFunc; static void init(void); static void lateInit(void); static void stop(void); static void startRecording(uint32_t run); static void stopRecording(void); static void iterateHistory(uint32_t startSeconds, FileOffSetFunc cb); static void addPacket(IoVector &iovec, bool notify = true); static void addPacket(const void *pkt, uint32_t len, bool notify = true) { IoVector iovec(1); iovec[0].iov_base = (void *) pkt; iovec[0].iov_len = len; addPacket(iovec, notify); } static void notify(void); static void addPrologue(IoVector &iovec); static void addPrologue(const void *pkt, uint32_t len) { IoVector iovec(1); iovec[0].iov_base = (void *) pkt; iovec[0].iov_len = len; addPrologue(iovec); } static int base_fd() { return m_base_fd; } static boost::signals::connection onContainerChange( const ContainerSignal::slot_type &s) { return m_contChange.connect(s); } static boost::signals::connection onPrologue( const PrologueSignal::slot_type &s) { return m_prologue.connect(s); } static StorageContainer::SharedPtr &container(void) { return m_cur_container; } static bool streaming(void) { return !!m_cur_container; } static uint32_t getNextRun(void); static bool updateNextRun(uint32_t run); static const struct timespec &scanStart(void) { return m_scanStart; } static void config(const boost::property_tree::ptree &conf); private: typedef boost::signals::connection connection; struct IndexEntry { StorageFile::SharedPtr m_stateFile; StorageFile::SharedPtr m_dataFile; uint32_t m_key; off_t m_resumeOffset; IndexEntry(uint32_t s, StorageFile::SharedPtr &f, StorageFile::SharedPtr &d, off_t r) : m_stateFile(f), m_dataFile(d), m_key(s), m_resumeOffset(r) {} bool isDataOnly(void) const { return !m_resumeOffset; } }; static std::string m_baseDir; static int m_base_fd; static uint32_t m_block_size; static uint64_t m_blocks_used; static uint64_t m_max_blocks_allowed; static struct timespec m_scanStart; static uint64_t m_scannedBlocks; static std::list<StorageContainer::SharedPtr> m_pendingRuns; static StorageContainer::SharedPtr m_cur_container; static StorageFile::SharedPtr m_prologueFile; static ContainerSignal m_contChange; static PrologueSignal m_prologue; static const char *m_run_filename; static const char *m_run_tempname; static std::string m_stateDirPrefix; static std::string m_stateDir; static std::list<IndexEntry> m_stateIndex; static uint32_t m_pulseTime; static uint32_t m_nextIndexTime; static uint32_t m_indexPeriod; static boost::thread m_ioThread; static bool m_ioActive; static EventFd *m_ioStartEvent; static EventFd *m_ioCompleteEvent; static uint64_t m_purgedBlocks; static bool m_dailyExhausted; static std::list<std::string> m_dailyCache; static uint32_t readRunFile(const char *path, bool notify); static bool cleanupRunFiles(void); static void stateSnapshot(StorageFile::SharedPtr &f); static bool retireIndexDir(bool remove = true); static bool cleanupIndexes(void); static void indexState(StorageFile::SharedPtr &state, StorageFile::SharedPtr &data, off_t dataOffset); static void scanStorage(void); static void scanDaily(const std::string &dir); static bool isValidDaily(const std::string &dir); static void backgroundIo(void); static void ioCompleted(void); static void requestPurge(uint64_t goal); static uint64_t purgeData(uint64_t goal); static uint64_t purgeDaily(const std::string &dir, uint64_t goal, bool last); static void populateDailyCache(void); static void addBaseStorage(off_t size); static void startContainer(uint32_t run = 0); static void endCurrentContainer(void); static void fileCreated(StorageFile::SharedPtr &f); static uint32_t validatePacket(const IoVector &iovec); friend class StorageContainer; }; #endif /* __STORAGE_MANAGER_H */
[ "stansberrydv@ornl.gov" ]
stansberrydv@ornl.gov
04d1c1593142ca040b32a1ce97f1f7e72198f137
365e39ea0cb61a1d9df6fc5d5523212b45ca8252
/src/client_main.cpp
2cb1f961f62f60124800947bf65a739e37409b9a
[]
no_license
zhengly123/YourSQL
51653e6f0c15b2361e7ca2b29f2fcdaf60665b92
d32fb30982d99d71af2091adec7d6d83272e56c5
refs/heads/master
2020-04-03T21:20:35.997928
2019-01-18T14:27:12
2019-01-18T14:27:12
155,571,546
0
0
null
null
null
null
UTF-8
C++
false
false
3,138
cpp
// // Created by eric on 19-1-6. // #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <string.h> #include <stdlib.h> #include <cstdio> #include <iostream> #include <string> #include <vector> using namespace std; #define BUFFER_SIZE 4000 const int ListenPort = 9999; string forbidMessage(char *buf) { string input = string(buf); vector<string> forbidCmd = {"use ", "drop database ", "create database "}; for (auto fcmd:forbidCmd) { if (input.compare(0, fcmd.length(), fcmd) == 0) { return fcmd; } } return string(""); } int main(int argc, char *argv[]) { int client_sockfd; int len; struct sockaddr_in remote_addr; char buf[BUFFER_SIZE]; memset(&remote_addr, 0, sizeof(remote_addr)); string ipAddr; int port; printf("====================================\n"); printf(" YourSQL \n"); printf("====================================\n"); printf("Default connection(localhost:9999)(Y/N):"); cin.getline(buf, 100); if (buf[0]=='N') { printf("Server IP address(default localhost):"); cin >> ipAddr; if (ipAddr=="") ipAddr = string("127.0.0.1"); printf("Server IP port:"); cin>>port; } else{ ipAddr="127.0.0.1"; port = 9999; } remote_addr.sin_family = AF_INET; // remote_addr.sin_addr.s_addr=inet_addr("127.0.0.1");// 服务器IP地址 // remote_addr.sin_port=htons(ListenPort); // 服务器端口号 remote_addr.sin_addr.s_addr = inet_addr(ipAddr.data()); remote_addr.sin_port = htons(port); if ((client_sockfd = socket(PF_INET, SOCK_STREAM, 0)) < 0) { perror("client socket creation failed"); exit(EXIT_FAILURE); } if(connect(client_sockfd,(struct sockaddr *)&remote_addr,sizeof(struct sockaddr))<0) { perror("connect to server failed"); exit(EXIT_FAILURE); } // get current db name memset(buf, 0, sizeof(buf)); len = recv(client_sockfd, buf, BUFFER_SIZE, 0); buf[len] = 0; string cdb = buf; #ifndef ADMIN if (cdb != string("")) { printf("Server not initiated\n"); return 0; } #endif // 循环监听服务器请求 while(1) { cout << "(" << cdb << ")" << "> "; cin.getline(buf,400); string ret; #ifdef ADMIN if ((ret=forbidMessage(buf))!=string("")) { cout << "Command " << ret << " is not support." << endl; continue; } #endif // exit if(strcmp(buf,"exit")==0) { break; } send(client_sockfd,buf,BUFFER_SIZE,0); // 接收服务器端信息 memset(buf, 0, sizeof(buf)); len=recv(client_sockfd,buf,BUFFER_SIZE,0); // buf[len]=0; printf("< %s\n",buf); if(len<0) { perror("receive from server failed"); exit(EXIT_FAILURE); } } close(client_sockfd);// 关闭套接字 return 0; }
[ "zhengly123@foxmail.com" ]
zhengly123@foxmail.com
8a3111179e4efdc5e8a38104366c32166ee8ac44
fe5bce6f5496c3ca66c1742fe53366cc3b2cd7fe
/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
7598571b411a6aa4610945e27075dacc24bd6e16
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "NCSA" ]
permissive
lgq2015/SiriusObfuscator-SymbolExtractorAndRenamer
f3ce7d235343df4ec84eae26f6cc7b641aca02b6
bb45190d8dd92b795bfa0307da5e593eb4733d9a
refs/heads/master
2022-01-09T02:41:08.991909
2018-08-08T13:52:49
2018-08-08T13:52:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
45,942
cpp
//===-- ObjCLanguage.cpp ----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // C Includes // C++ Includes #include <mutex> // Other libraries and framework includes // Project includes #include "ObjCLanguage.h" #include "lldb/Core/ConstString.h" #include "lldb/Core/PluginManager.h" #include "lldb/Core/StreamString.h" #include "lldb/Core/ValueObject.h" #include "lldb/DataFormatters/DataVisualization.h" #include "lldb/DataFormatters/FormattersHelpers.h" #include "lldb/Symbol/ClangASTContext.h" #include "lldb/Symbol/CompilerType.h" #include "lldb/Target/ObjCLanguageRuntime.h" #include "lldb/Target/Target.h" #include "CF.h" #include "Cocoa.h" #include "CoreMedia.h" #include "NSDictionary.h" #include "NSSet.h" #include "NSString.h" using namespace lldb; using namespace lldb_private; using namespace lldb_private::formatters; void ObjCLanguage::Initialize() { PluginManager::RegisterPlugin(GetPluginNameStatic(), "Objective-C Language", CreateInstance); } void ObjCLanguage::Terminate() { PluginManager::UnregisterPlugin(CreateInstance); } lldb_private::ConstString ObjCLanguage::GetPluginNameStatic() { static ConstString g_name("objc"); return g_name; } //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ lldb_private::ConstString ObjCLanguage::GetPluginName() { return GetPluginNameStatic(); } uint32_t ObjCLanguage::GetPluginVersion() { return 1; } //------------------------------------------------------------------ // Static Functions //------------------------------------------------------------------ Language *ObjCLanguage::CreateInstance(lldb::LanguageType language) { switch (language) { case lldb::eLanguageTypeObjC: return new ObjCLanguage(); default: return nullptr; } } void ObjCLanguage::MethodName::Clear() { m_full.Clear(); m_class.Clear(); m_category.Clear(); m_selector.Clear(); m_type = eTypeUnspecified; m_category_is_valid = false; } bool ObjCLanguage::MethodName::SetName(llvm::StringRef name, bool strict) { Clear(); if (name.empty()) return IsValid(strict); // If "strict" is true. then the method must be specified with a // '+' or '-' at the beginning. If "strict" is false, then the '+' // or '-' can be omitted bool valid_prefix = false; if (name[0] == '+' || name[0] == '-') { valid_prefix = name[1] == '['; if (name[0] == '+') m_type = eTypeClassMethod; else m_type = eTypeInstanceMethod; } else if (!strict) { // "strict" is false, the name just needs to start with '[' valid_prefix = name[0] == '['; } if (valid_prefix) { int name_len = name.size(); // Objective C methods must have at least: // "-[" or "+[" prefix // One character for a class name // One character for the space between the class name // One character for the method name // "]" suffix if (name_len >= (5 + (strict ? 1 : 0)) && name.back() == ']') { m_full.SetString(name); } } return IsValid(strict); } bool ObjCLanguage::MethodName::SetName(const char *name, bool strict) { return SetName(llvm::StringRef(name), strict); } const ConstString &ObjCLanguage::MethodName::GetClassName() { if (!m_class) { if (IsValid(false)) { const char *full = m_full.GetCString(); const char *class_start = (full[0] == '[' ? full + 1 : full + 2); const char *paren_pos = strchr(class_start, '('); if (paren_pos) { m_class.SetCStringWithLength(class_start, paren_pos - class_start); } else { // No '(' was found in the full name, we can definitively say // that our category was valid (and empty). m_category_is_valid = true; const char *space_pos = strchr(full, ' '); if (space_pos) { m_class.SetCStringWithLength(class_start, space_pos - class_start); if (!m_class_category) { // No category in name, so we can also fill in the m_class_category m_class_category = m_class; } } } } } return m_class; } const ConstString &ObjCLanguage::MethodName::GetClassNameWithCategory() { if (!m_class_category) { if (IsValid(false)) { const char *full = m_full.GetCString(); const char *class_start = (full[0] == '[' ? full + 1 : full + 2); const char *space_pos = strchr(full, ' '); if (space_pos) { m_class_category.SetCStringWithLength(class_start, space_pos - class_start); // If m_class hasn't been filled in and the class with category doesn't // contain a '(', then we can also fill in the m_class if (!m_class && strchr(m_class_category.GetCString(), '(') == nullptr) { m_class = m_class_category; // No '(' was found in the full name, we can definitively say // that our category was valid (and empty). m_category_is_valid = true; } } } } return m_class_category; } const ConstString &ObjCLanguage::MethodName::GetSelector() { if (!m_selector) { if (IsValid(false)) { const char *full = m_full.GetCString(); const char *space_pos = strchr(full, ' '); if (space_pos) { ++space_pos; // skip the space m_selector.SetCStringWithLength(space_pos, m_full.GetLength() - (space_pos - full) - 1); } } } return m_selector; } const ConstString &ObjCLanguage::MethodName::GetCategory() { if (!m_category_is_valid && !m_category) { if (IsValid(false)) { m_category_is_valid = true; const char *full = m_full.GetCString(); const char *class_start = (full[0] == '[' ? full + 1 : full + 2); const char *open_paren_pos = strchr(class_start, '('); if (open_paren_pos) { ++open_paren_pos; // Skip the open paren const char *close_paren_pos = strchr(open_paren_pos, ')'); if (close_paren_pos) m_category.SetCStringWithLength(open_paren_pos, close_paren_pos - open_paren_pos); } } } return m_category; } ConstString ObjCLanguage::MethodName::GetFullNameWithoutCategory( bool empty_if_no_category) { if (IsValid(false)) { if (HasCategory()) { StreamString strm; if (m_type == eTypeClassMethod) strm.PutChar('+'); else if (m_type == eTypeInstanceMethod) strm.PutChar('-'); strm.Printf("[%s %s]", GetClassName().GetCString(), GetSelector().GetCString()); return ConstString(strm.GetString()); } if (!empty_if_no_category) { // Just return the full name since it doesn't have a category return GetFullName(); } } return ConstString(); } size_t ObjCLanguage::MethodName::GetFullNames(std::vector<ConstString> &names, bool append) { if (!append) names.clear(); if (IsValid(false)) { StreamString strm; const bool is_class_method = m_type == eTypeClassMethod; const bool is_instance_method = m_type == eTypeInstanceMethod; const ConstString &category = GetCategory(); if (is_class_method || is_instance_method) { names.push_back(m_full); if (category) { strm.Printf("%c[%s %s]", is_class_method ? '+' : '-', GetClassName().GetCString(), GetSelector().GetCString()); names.emplace_back(strm.GetString()); } } else { const ConstString &class_name = GetClassName(); const ConstString &selector = GetSelector(); strm.Printf("+[%s %s]", class_name.GetCString(), selector.GetCString()); names.emplace_back(strm.GetString()); strm.Clear(); strm.Printf("-[%s %s]", class_name.GetCString(), selector.GetCString()); names.emplace_back(strm.GetString()); strm.Clear(); if (category) { strm.Printf("+[%s(%s) %s]", class_name.GetCString(), category.GetCString(), selector.GetCString()); names.emplace_back(strm.GetString()); strm.Clear(); strm.Printf("-[%s(%s) %s]", class_name.GetCString(), category.GetCString(), selector.GetCString()); names.emplace_back(strm.GetString()); } } } return names.size(); } static void LoadObjCFormatters(TypeCategoryImplSP objc_category_sp) { if (!objc_category_sp) return; TypeSummaryImpl::Flags objc_flags; objc_flags.SetCascades(false) .SetSkipPointers(true) .SetSkipReferences(true) .SetDontShowChildren(true) .SetDontShowValue(true) .SetShowMembersOneLiner(false) .SetHideItemNames(false); lldb::TypeSummaryImplSP ObjC_BOOL_summary(new CXXFunctionSummaryFormat( objc_flags, lldb_private::formatters::ObjCBOOLSummaryProvider, "")); objc_category_sp->GetTypeSummariesContainer()->Add(ConstString("BOOL"), ObjC_BOOL_summary); objc_category_sp->GetTypeSummariesContainer()->Add(ConstString("BOOL &"), ObjC_BOOL_summary); objc_category_sp->GetTypeSummariesContainer()->Add(ConstString("BOOL *"), ObjC_BOOL_summary); #ifndef LLDB_DISABLE_PYTHON // we need to skip pointers here since we are special casing a SEL* when // retrieving its value objc_flags.SetSkipPointers(true); AddCXXSummary(objc_category_sp, lldb_private::formatters::ObjCSELSummaryProvider<false>, "SEL summary provider", ConstString("SEL"), objc_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::ObjCSELSummaryProvider<false>, "SEL summary provider", ConstString("struct objc_selector"), objc_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::ObjCSELSummaryProvider<false>, "SEL summary provider", ConstString("objc_selector"), objc_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::ObjCSELSummaryProvider<true>, "SEL summary provider", ConstString("objc_selector *"), objc_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::ObjCSELSummaryProvider<true>, "SEL summary provider", ConstString("SEL *"), objc_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::ObjCClassSummaryProvider, "Class summary provider", ConstString("Class"), objc_flags); SyntheticChildren::Flags class_synth_flags; class_synth_flags.SetCascades(true).SetSkipPointers(false).SetSkipReferences( false); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::ObjCClassSyntheticFrontEndCreator, "Class synthetic children", ConstString("Class"), class_synth_flags); #endif // LLDB_DISABLE_PYTHON objc_flags.SetSkipPointers(false); objc_flags.SetCascades(true); objc_flags.SetSkipReferences(false); AddStringSummary(objc_category_sp, "${var.__FuncPtr%A}", ConstString("__block_literal_generic"), objc_flags); AddStringSummary(objc_category_sp, "${var.years} years, ${var.months} " "months, ${var.days} days, ${var.hours} " "hours, ${var.minutes} minutes " "${var.seconds} seconds", ConstString("CFGregorianUnits"), objc_flags); AddStringSummary(objc_category_sp, "location=${var.location} length=${var.length}", ConstString("CFRange"), objc_flags); AddStringSummary(objc_category_sp, "location=${var.location}, length=${var.length}", ConstString("NSRange"), objc_flags); AddStringSummary(objc_category_sp, "(${var.origin}, ${var.size}), ...", ConstString("NSRectArray"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("NSPoint"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("NSSize"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("NSRect"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("CGSize"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("CGPoint"), objc_flags); AddOneLineSummary(objc_category_sp, ConstString("CGRect"), objc_flags); AddStringSummary(objc_category_sp, "red=${var.red} green=${var.green} blue=${var.blue}", ConstString("RGBColor"), objc_flags); AddStringSummary( objc_category_sp, "(t=${var.top}, l=${var.left}, b=${var.bottom}, r=${var.right})", ConstString("Rect"), objc_flags); AddStringSummary(objc_category_sp, "{(v=${var.v}, h=${var.h})}", ConstString("Point"), objc_flags); AddStringSummary(objc_category_sp, "${var.month}/${var.day}/${var.year} ${var.hour} " ":${var.minute} :${var.second} dayOfWeek:${var.dayOfWeek}", ConstString("DateTimeRect *"), objc_flags); AddStringSummary(objc_category_sp, "${var.ld.month}/${var.ld.day}/" "${var.ld.year} ${var.ld.hour} " ":${var.ld.minute} :${var.ld.second} " "dayOfWeek:${var.ld.dayOfWeek}", ConstString("LongDateRect"), objc_flags); AddStringSummary(objc_category_sp, "(x=${var.x}, y=${var.y})", ConstString("HIPoint"), objc_flags); AddStringSummary(objc_category_sp, "origin=${var.origin} size=${var.size}", ConstString("HIRect"), objc_flags); TypeSummaryImpl::Flags appkit_flags; appkit_flags.SetCascades(true) .SetSkipPointers(false) .SetSkipReferences(false) .SetDontShowChildren(true) .SetDontShowValue(false) .SetShowMembersOneLiner(false) .SetHideItemNames(false); appkit_flags.SetDontShowChildren(false); #ifndef LLDB_DISABLE_PYTHON AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("NSArray"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("NSMutableArray"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("__NSArrayI"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("__NSArray0"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("__NSSingleObjectArrayI"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("__NSArrayM"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("__NSCFArray"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("CFArrayRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSArraySummaryProvider, "NSArray summary provider", ConstString("CFMutableArrayRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("NSDictionary"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("NSMutableDictionary"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("__NSCFDictionary"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("__NSDictionaryI"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("__NSSingleEntryDictionaryI"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<false>, "NSDictionary summary provider", ConstString("__NSDictionaryM"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<true>, "NSDictionary summary provider", ConstString("CFDictionaryRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDictionarySummaryProvider<true>, "NSDictionary summary provider", ConstString("CFMutableDictionaryRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "NSSet summary", ConstString("NSSet"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "NSMutableSet summary", ConstString("NSMutableSet"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<true>, "CFSetRef summary", ConstString("CFSetRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<true>, "CFMutableSetRef summary", ConstString("CFMutableSetRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "__NSCFSet summary", ConstString("__NSCFSet"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "__NSSetI summary", ConstString("__NSSetI"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "__NSSetM summary", ConstString("__NSSetM"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "NSCountedSet summary", ConstString("NSCountedSet"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "NSMutableSet summary", ConstString("NSMutableSet"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "NSOrderedSet summary", ConstString("NSOrderedSet"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "__NSOrderedSetI summary", ConstString("__NSOrderedSetI"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSSetSummaryProvider<false>, "__NSOrderedSetM summary", ConstString("__NSOrderedSetM"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSError_SummaryProvider, "NSError summary provider", ConstString("NSError"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSException_SummaryProvider, "NSException summary provider", ConstString("NSException"), appkit_flags); // AddSummary(appkit_category_sp, "${var.key%@} -> ${var.value%@}", // ConstString("$_lldb_typegen_nspair"), appkit_flags); appkit_flags.SetDontShowChildren(true); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("__NSArrayM"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("__NSArrayI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("__NSArray0"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("__NSSingleObjectArrayI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("NSArray"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("NSMutableArray"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("__NSCFArray"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("CFMutableArrayRef"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSArraySyntheticFrontEndCreator, "NSArray synthetic children", ConstString("CFArrayRef"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("__NSDictionaryM"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("__NSDictionaryI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("__NSSingleEntryDictionaryI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("__NSCFDictionary"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("NSDictionary"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("NSMutableDictionary"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("CFDictionaryRef"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSDictionarySyntheticFrontEndCreator, "NSDictionary synthetic children", ConstString("CFMutableDictionaryRef"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSErrorSyntheticFrontEndCreator, "NSError synthetic children", ConstString("NSError"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSExceptionSyntheticFrontEndCreator, "NSException synthetic children", ConstString("NSException"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "NSSet synthetic children", ConstString("NSSet"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "__NSSetI synthetic children", ConstString("__NSSetI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "__NSSetM synthetic children", ConstString("__NSSetM"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "NSMutableSet synthetic children", ConstString("NSMutableSet"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "NSOrderedSet synthetic children", ConstString("NSOrderedSet"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "__NSOrderedSetI synthetic children", ConstString("__NSOrderedSetI"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic( objc_category_sp, lldb_private::formatters::NSSetSyntheticFrontEndCreator, "__NSOrderedSetM synthetic children", ConstString("__NSOrderedSetM"), ScriptedSyntheticChildren::Flags()); AddCXXSynthetic(objc_category_sp, lldb_private::formatters::NSIndexPathSyntheticFrontEndCreator, "NSIndexPath synthetic children", ConstString("NSIndexPath"), ScriptedSyntheticChildren::Flags()); AddCXXSummary( objc_category_sp, lldb_private::formatters::CFBagSummaryProvider, "CFBag summary provider", ConstString("CFBagRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBagSummaryProvider, "CFBag summary provider", ConstString("__CFBag"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBagSummaryProvider, "CFBag summary provider", ConstString("const struct __CFBag"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::CFBagSummaryProvider, "CFBag summary provider", ConstString("CFMutableBagRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBinaryHeapSummaryProvider, "CFBinaryHeap summary provider", ConstString("CFBinaryHeapRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBinaryHeapSummaryProvider, "CFBinaryHeap summary provider", ConstString("__CFBinaryHeap"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("CFStringRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("__CFString"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("CFMutableStringRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSMutableString"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("__NSCFConstantString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("__NSCFString"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSCFConstantString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSCFString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSPathStore2"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSStringSummaryProvider, "NSString summary provider", ConstString("NSTaggedPointerString"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSAttributedStringSummaryProvider, "NSAttributedString summary provider", ConstString("NSAttributedString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSMutableAttributedStringSummaryProvider, "NSMutableAttributedString summary provider", ConstString("NSMutableAttributedString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSMutableAttributedStringSummaryProvider, "NSMutableAttributedString summary provider", ConstString("NSConcreteMutableAttributedString"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSBundleSummaryProvider, "NSBundle summary provider", ConstString("NSBundle"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("NSData"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("_NSInlineData"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("NSConcreteData"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("NSConcreteMutableData"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("NSMutableData"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<false>, "NSData summary provider", ConstString("__NSCFData"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<true>, "NSData summary provider", ConstString("CFDataRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDataSummaryProvider<true>, "NSData summary provider", ConstString("CFMutableDataRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSMachPortSummaryProvider, "NSMachPort summary provider", ConstString("NSMachPort"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSNotificationSummaryProvider, "NSNotification summary provider", ConstString("NSNotification"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSNotificationSummaryProvider, "NSNotification summary provider", ConstString("NSConcreteNotification"), appkit_flags); // AddStringSummary(objc_category_sp, "domain: ${var._domain} - code: // ${var._code}", ConstString("NSError"), appkit_flags); // AddStringSummary(objc_category_sp,"name:${var.name%S} // reason:${var.reason%S}",ConstString("NSException"),appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "NSNumber summary provider", ConstString("NSNumber"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "CFNumberRef summary provider", ConstString("CFNumberRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "NSNumber summary provider", ConstString("__NSCFBoolean"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "NSNumber summary provider", ConstString("__NSCFNumber"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "NSNumber summary provider", ConstString("NSCFBoolean"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSNumberSummaryProvider, "NSNumber summary provider", ConstString("NSCFNumber"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSURLSummaryProvider, "NSURL summary provider", ConstString("NSURL"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSURLSummaryProvider, "NSURL summary provider", ConstString("CFURLRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSDateSummaryProvider, "NSDate summary provider", ConstString("NSDate"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDateSummaryProvider, "NSDate summary provider", ConstString("__NSDate"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDateSummaryProvider, "NSDate summary provider", ConstString("__NSTaggedDate"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSDateSummaryProvider, "NSDate summary provider", ConstString("NSCalendarDate"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSTimeZoneSummaryProvider, "NSTimeZone summary provider", ConstString("NSTimeZone"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSTimeZoneSummaryProvider, "NSTimeZone summary provider", ConstString("CFTimeZoneRef"), appkit_flags); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSTimeZoneSummaryProvider, "NSTimeZone summary provider", ConstString("__NSTimeZone"), appkit_flags); // CFAbsoluteTime is actually a double rather than a pointer to an object // we do not care about the numeric value, since it is probably meaningless to // users appkit_flags.SetDontShowValue(true); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFAbsoluteTimeSummaryProvider, "CFAbsoluteTime summary provider", ConstString("CFAbsoluteTime"), appkit_flags); appkit_flags.SetDontShowValue(false); AddCXXSummary( objc_category_sp, lldb_private::formatters::NSIndexSetSummaryProvider, "NSIndexSet summary provider", ConstString("NSIndexSet"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::NSIndexSetSummaryProvider, "NSIndexSet summary provider", ConstString("NSMutableIndexSet"), appkit_flags); AddStringSummary(objc_category_sp, "@\"${var.month%d}/${var.day%d}/${var.year%d} " "${var.hour%d}:${var.minute%d}:${var.second}\"", ConstString("CFGregorianDate"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBitVectorSummaryProvider, "CFBitVector summary provider", ConstString("CFBitVectorRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBitVectorSummaryProvider, "CFBitVector summary provider", ConstString("CFMutableBitVectorRef"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBitVectorSummaryProvider, "CFBitVector summary provider", ConstString("__CFBitVector"), appkit_flags); AddCXXSummary(objc_category_sp, lldb_private::formatters::CFBitVectorSummaryProvider, "CFBitVector summary provider", ConstString("__CFMutableBitVector"), appkit_flags); #endif // LLDB_DISABLE_PYTHON } static void LoadCoreMediaFormatters(TypeCategoryImplSP objc_category_sp) { if (!objc_category_sp) return; TypeSummaryImpl::Flags cm_flags; cm_flags.SetCascades(true) .SetDontShowChildren(false) .SetDontShowValue(false) .SetHideItemNames(false) .SetShowMembersOneLiner(false) .SetSkipPointers(false) .SetSkipReferences(false); #ifndef LLDB_DISABLE_PYTHON AddCXXSummary(objc_category_sp, lldb_private::formatters::CMTimeSummaryProvider, "CMTime summary provider", ConstString("CMTime"), cm_flags); #endif // LLDB_DISABLE_PYTHON } lldb::TypeCategoryImplSP ObjCLanguage::GetFormatters() { static std::once_flag g_initialize; static TypeCategoryImplSP g_category; std::call_once(g_initialize, [this]() -> void { DataVisualization::Categories::GetCategory(GetPluginName(), g_category); if (g_category) { LoadCoreMediaFormatters(g_category); LoadObjCFormatters(g_category); } }); return g_category; } std::vector<ConstString> ObjCLanguage::GetPossibleFormattersMatches(ValueObject &valobj, lldb::DynamicValueType use_dynamic) { std::vector<ConstString> result; if (use_dynamic == lldb::eNoDynamicValues) return result; CompilerType compiler_type(valobj.GetCompilerType()); const bool check_cpp = false; const bool check_objc = true; const bool check_swift = false; bool canBeObjCDynamic = compiler_type.IsPossibleDynamicType( nullptr, check_cpp, check_objc, check_swift); if (canBeObjCDynamic) { do { lldb::ProcessSP process_sp = valobj.GetProcessSP(); if (!process_sp) break; ObjCLanguageRuntime *runtime = process_sp->GetObjCLanguageRuntime(); if (runtime == nullptr) break; ObjCLanguageRuntime::ClassDescriptorSP objc_class_sp( runtime->GetClassDescriptor(valobj)); if (!objc_class_sp) break; if (ConstString name = objc_class_sp->GetClassName()) result.push_back(name); } while (false); } return result; } std::unique_ptr<Language::TypeScavenger> ObjCLanguage::GetTypeScavenger() { class ObjCScavengerResult : public Language::TypeScavenger::Result { public: ObjCScavengerResult(CompilerType type) : Language::TypeScavenger::Result(), m_compiler_type(type) {} bool IsValid() override { return m_compiler_type.IsValid(); } bool DumpToStream(Stream &stream, bool print_help_if_available) override { if (IsValid()) { m_compiler_type.DumpTypeDescription(&stream); stream.EOL(); return true; } return false; } private: CompilerType m_compiler_type; }; class ObjCRuntimeScavenger : public Language::TypeScavenger { protected: bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, ResultSet &results) override { bool result = false; Process *process = exe_scope->CalculateProcess().get(); if (process) { const bool create_on_demand = false; auto objc_runtime = process->GetObjCLanguageRuntime(create_on_demand); if (objc_runtime) { auto decl_vendor = objc_runtime->GetDeclVendor(); if (decl_vendor) { std::vector<clang::NamedDecl *> decls; ConstString name(key); decl_vendor->FindDecls(name, true, UINT32_MAX, decls); for (auto decl : decls) { if (decl) { if (CompilerType candidate = ClangASTContext::GetTypeForDecl(decl)) { result = true; std::unique_ptr<Language::TypeScavenger::Result> result( new ObjCScavengerResult(candidate)); results.insert(std::move(result)); } } } } } } return result; } friend class lldb_private::ObjCLanguage; }; class ObjCModulesScavenger : public Language::TypeScavenger { protected: bool Find_Impl(ExecutionContextScope *exe_scope, const char *key, ResultSet &results) override { bool result = false; Target *target = exe_scope->CalculateTarget().get(); if (target) { if (auto clang_modules_decl_vendor = target->GetClangModulesDeclVendor()) { std::vector<clang::NamedDecl *> decls; ConstString key_cs(key); if (clang_modules_decl_vendor->FindDecls(key_cs, false, UINT32_MAX, decls) > 0 && !decls.empty()) { CompilerType module_type = ClangASTContext::GetTypeForDecl(decls.front()); result = true; std::unique_ptr<Language::TypeScavenger::Result> result( new ObjCScavengerResult(module_type)); results.insert(std::move(result)); } } } return result; } friend class lldb_private::ObjCLanguage; }; class ObjCDebugInfoScavenger : public Language::ImageListTypeScavenger { public: virtual CompilerType AdjustForInclusion(CompilerType &candidate) override { LanguageType lang_type(candidate.GetMinimumLanguage()); if (!Language::LanguageIsObjC(lang_type)) return CompilerType(); if (candidate.IsTypedefType()) return candidate.GetTypedefedType(); return candidate; } }; return std::unique_ptr<TypeScavenger>( new Language::EitherTypeScavenger<ObjCModulesScavenger, ObjCRuntimeScavenger, ObjCDebugInfoScavenger>()); } bool ObjCLanguage::GetFormatterPrefixSuffix(ValueObject &valobj, ConstString type_hint, std::string &prefix, std::string &suffix) { static ConstString g_CFBag("CFBag"); static ConstString g_CFBinaryHeap("CFBinaryHeap"); static ConstString g_NSNumberChar("NSNumber:char"); static ConstString g_NSNumberShort("NSNumber:short"); static ConstString g_NSNumberInt("NSNumber:int"); static ConstString g_NSNumberLong("NSNumber:long"); static ConstString g_NSNumberInt128("NSNumber:int128_t"); static ConstString g_NSNumberFloat("NSNumber:float"); static ConstString g_NSNumberDouble("NSNumber:double"); static ConstString g_NSData("NSData"); static ConstString g_NSArray("NSArray"); static ConstString g_NSString("NSString"); static ConstString g_NSStringStar("NSString*"); if (type_hint.IsEmpty()) return false; prefix.clear(); suffix.clear(); if (type_hint == g_CFBag || type_hint == g_CFBinaryHeap) { prefix = "@"; return true; } if (type_hint == g_NSNumberChar) { prefix = "(char)"; return true; } if (type_hint == g_NSNumberShort) { prefix = "(short)"; return true; } if (type_hint == g_NSNumberInt) { prefix = "(int)"; return true; } if (type_hint == g_NSNumberLong) { prefix = "(long)"; return true; } if (type_hint == g_NSNumberInt128) { prefix = "(int128_t)"; return true; } if (type_hint == g_NSNumberFloat) { prefix = "(float)"; return true; } if (type_hint == g_NSNumberDouble) { prefix = "(double)"; return true; } if (type_hint == g_NSData || type_hint == g_NSArray) { prefix = "@\""; suffix = "\""; return true; } if (type_hint == g_NSString || type_hint == g_NSStringStar) { prefix = "@"; return true; } return false; } bool ObjCLanguage::IsNilReference(ValueObject &valobj) { const uint32_t mask = eTypeIsObjC | eTypeIsPointer; bool isObjCpointer = (((valobj.GetCompilerType().GetTypeInfo(nullptr)) & mask) == mask); if (!isObjCpointer) return false; bool canReadValue = true; bool isZero = valobj.GetValueAsUnsigned(0, &canReadValue) == 0; return canReadValue && isZero; }
[ "krzysztof.siejkowski@polidea.com" ]
krzysztof.siejkowski@polidea.com
9e1e2a0b6752f4266be002f54130d3b0b5eed3dd
ff85bf7d3147c8b44dc54626671f80d91feaf01d
/src/oliview/text_line_reader.h
7b321a1b095f0d8b532e6dedb40068912e206f36
[]
no_license
omochi/oliview
9d471e7dfd067c6ae6600bd51188ba481863322a
3d42511a565ee6c5f09c0ccdf4816aa70db1f815
refs/heads/master
2021-01-19T09:04:49.407547
2017-08-07T14:53:34
2017-08-07T14:53:34
87,720,255
1
0
null
null
null
null
UTF-8
C++
false
false
312
h
#pragma once #include "./string_slice.h" namespace oliview { class TextLineReader { public: TextLineReader(const Ptr<const std::string> & string); Option<std::string> Read(); private: Ptr<const std::string> string_; size_t index_; }; }
[ "omochi.metaru@gmail.com" ]
omochi.metaru@gmail.com
dcd7d51217c9620cd47804a7478d0c1d2bed7a70
b37c7589c4ebb165684b232364761753b038ff13
/y/y/math/random.h
ff25dafde5e908454b654ea8d283851f4f5f43b7
[ "MIT" ]
permissive
blizmax/Yave
a0bcbbfe202f7ed724c3fc74a8814f79967a3ec2
cd02ed27fbd0f807ed245294d67fcb9428783803
refs/heads/master
2023-04-08T19:33:11.083102
2021-04-21T20:05:08
2021-04-21T20:05:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,346
h
/******************************* Copyright (c) 2016-2021 Grégoire Angerand Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. **********************************/ #ifndef Y_MATH_RANDOM_H #define Y_MATH_RANDOM_H #include <y/utils.h> namespace y { namespace math { #if 0 class FastRandom { public: FastRandom(u64 seed = 0xdeadbeef) { } u32 operator()() { return (_seed += _seed * _seed | 5) >> 32; } private: u64 _seed; }; #endif #if 1 class FastRandom { public: using result_type = u32; constexpr FastRandom(u32 seed = 0xdeadbeef) : _a(0xf1ea5eed), _b(seed), _c(seed), _d(seed) { for(usize i = 0; i != 20; ++i) { (*this)(); } } constexpr u32 operator()() { const u32 e = _a - rot(_b, 27); _a = _b ^ rot(_c, 17); _b = _c + _d; _c = _d + e; _d = e + _a; return _d; } static constexpr u32 max() { return u32(-1); } static constexpr u32 min() { return 0; } private: static constexpr u32 rot(u32 x, u32 k) { return (((x) << (k)) | ((x) >> (32 - (k)))); } u32 _a; u32 _b; u32 _c; u32 _d; }; #endif } } #endif // Y_MATH_RANDOM_H
[ "gregoire.angerand@gmail.com" ]
gregoire.angerand@gmail.com
048dae3fba9bcb8a99c7fd48ab4e2e9e539d8b61
fb3455b672f7969752418c2705513902ebf9b1d9
/src/shader.hpp
1f1890cecc9ef68c8728b67a55dfa14b8fb2b156
[ "MIT" ]
permissive
momo5502/stereogram-model-viewer
0934e6e41e5f93410e2b9d3b89297eb2f361e395
fb4d2a1e8d280484547f9f030b64b0bf800dc402
refs/heads/master
2020-04-02T17:08:06.179416
2018-11-18T17:41:17
2018-11-18T17:43:04
154,645,313
0
1
null
null
null
null
UTF-8
C++
false
false
282
hpp
#pragma once class shader { public: shader(std::string vertex_source, std::string fragment_source, std::vector<std::string> attributes = {}); ~shader(); void use(); private: GLuint vertex_shader = 0; GLuint fragment_shader = 0; GLuint shader_program = 0; };
[ "mauriceheumann@gmail.com" ]
mauriceheumann@gmail.com
f922d6bfa30ff2cb2fc37058826c17fc18c4cee5
bb8f274708d49605ac9eaa567e98d32c3a6fb568
/examples/athena/athena.cc
74ccfa0cf95bfb55e3f98f9976c68c7178f73abd
[ "BSD-3-Clause" ]
permissive
Akash-Harapanahalli/drake
a57ebb40ee6c709d44458dd02d16264512fa83bf
a4f0e93dbd7ab4c6a1f346423d7ad45ea9795ad0
refs/heads/master
2023-02-20T22:35:58.508165
2021-01-25T04:37:58
2021-01-25T04:37:58
277,863,997
0
0
NOASSERTION
2020-07-07T16:10:32
2020-07-07T16:10:31
null
UTF-8
C++
false
false
6,252
cc
#include "drake/examples/athena/athena.h" #define PI 3.1416 namespace drake { namespace examples { namespace athena { Athena::Athena() { DeclareDiscreteState(59); DeclareVectorOutputPort("floating_base_state", drake::systems::BasicVector<double>(59), &Athena::CopyDiscreteStateOut); DeclarePeriodicDiscreteUpdate(0.001); } void Athena::init(std::vector<Eigen::Matrix<double, 6, 1>> _l_traj, std::vector<Eigen::Matrix<double, 6, 1>> _r_traj) { l_traj = _l_traj; r_traj = _r_traj; q_l << 0, 0, PI/4, PI/2, 0, 0, 0; q_r << 0, 0, PI/4, PI/2, 0, 0, 0; _x_0 = LeftArmFK(q_l); x_c = _x_0; } void Athena::DoCalcDiscreteVariableUpdates( const drake::systems::Context<double>& context, const std::vector<const drake::systems::DiscreteUpdateEvent<double>*>&, drake::systems::DiscreteValues<double>* updates) const { // static int dir = 1; t = context.get_time(); // step = int(t / h); // Eigen::Matrix<double, 59, 1> state = // updates->get_mutable_vector().get_mutable_value(); //Eigen::Matrix<double, // 59, 1>::Random(); //updates->get_mutable_vector().get_mutable_value(); Eigen::Matrix<double, 59, 1> state2 = Eigen::Matrix<double, 59, 1>::Constant(0.0); // updates->get_mutable_vector().get_mutable_value(); // double eps = 0.2; // if (x_c(2) > (_x_0(2) + 100)) dir = -1; // if (x_c(2) < (_x_0(2) - 100)) dir = 1; // x_c(2) = x_c(2) + dir * eps; /** * 0,1,2,3 --> Rotations, need to keep one non-zero to avoid seg fault. * 4,5,6 --> Cartesian shifting * 7 --> Bottom spine joint * 8,9 --> Back two things * 10,11,12--> Another spine * 13,14 --> Front two things * 15,16 --> More spine * 17 --> Left arm 0 * 18,19,20--> Left three back things * 21 --> Right arm 0 * 22,23,24--> Right three back things * 25-36 --> Left arm 1-6, Right arm 1-6 * 37-40 --> Right fingers 0 * 41 --> Right thumb 0 * 42 --> Left thumb 0 * 43-46 --> Left fingers 0 * 47-50 --> Right fingers 1 * 51 --> Right thumb 1 * 52 --> Left thumb 1 * 53-56 --> Left fingers 1 * 57 --> Right thumb 2 * 58 --> Left thumb 2 */ // Shoulder angles (2,3) need to be swapped state2(3) = 1; // int n = static_cast<int>(t); // if (n < 10) state2(25) = ang; // else if (n < 20) state2(27) = ang; // else if (n < 30) state2(29) = ang; // else if (n < 40) state2(31) = ang; // else if (n < 50) state2(33) = ang; // else if (n < 60) state2(35) = ang; // state2(7) = 0;//10 * PI / 180; Eigen::Matrix<double, 7, 1> ik; // static int i = 0; // if(!i) { // i = 1; // Eigen::Matrix<double, 12, 1> v; // v << LeftArmFK(q_l) , RightArmFK(q_r); // std::cout << v(0) << ", " << v(1) << ", " << v(2) << ", " << v(3) << ", " << v(4) << ", " << v(5) << std::endl; // std::cout << v(6) << ", " << v(7) << ", " << v(8) << ", " << v(9) << ", " << v(10) << ", " << v(11) << std::endl; // Eigen::Matrix<double, 7, 1> guess = Eigen::Matrix<double, 7, 1>::Constant(0.0); // ik = LeftArmIK(guess, LeftArmFK(q_l)); // std::cout << "q_l\t" << q_l.transpose() << std::endl; // std::cout << "ik\t" << ik.transpose() << std::endl; // std::cout << "FK(q_l)\t" << LeftArmFK(q_l).transpose() << std::endl; // std::cout << "FK(ik)\t" << LeftArmFK(ik).transpose() << std::endl; // } // static double theta = 0.0; // static double rho = 3*PI/2; // double eps = 4 * PI * 0.001; // theta = theta + eps; // if (theta > 2*PI) { // theta = 0; // rho = rho + eps*10; // } // if (rho > 2*PI){ // rho = 0; // } // x_c(2) = 100*cos(rho)*cos(theta) + _x_0(2); // x_c(1) = 100*cos(rho)*sin(theta) + _x_0(1); // x_c(0) = 100*sin(rho) + _x_0(0); // std::chrono::high_resolution_clock::time_point t1 = std::chrono::high_resolution_clock::now(); // ik = LeftArmIK(q_l, x_c); // std::chrono::high_resolution_clock::time_point t2 = std::chrono::high_resolution_clock::now(); // ik = LeftArmIKAutoGuess(x_c); // std::chrono::high_resolution_clock::time_point t3 = std::chrono::high_resolution_clock::now(); // std::chrono::duration<double> dur = std::chrono::duration_cast<std::chrono::duration<double>>(t2 - t1); // std::cout << "IK (n AG): " << dur.count() << std::endl; // dur = std::chrono::duration_cast<std::chrono::duration<double>>(t3 - t2); // std::cout << "IK (y AG): " << dur.count() << std::endl; double ppp = t * 78125 / 60; int pppf = floor(ppp); // double angle = Athena::limits[pppf][0] + (ppp - pppf)*(Athena::limits[pppf][1] - Athena::limits[pppf][0]); // ik(pppf) = angle; ik = autoguess_q[pppf]; q_l = Eigen::Matrix<double, 7, 1>::Constant(0.0); q_l(2) = PI/4; q_l(3) = PI/2; state2(17) = ik(0); state2(25) = ik(1); state2(27) = ik(2); state2(29) = ik(3); state2(31) = ik(4); state2(33) = ik(5); state2(35) = ik(6); state2(21) = -(q_r(0) + PI/16); state2(26) = -q_r(1); state2(28) = -q_r(2); state2(30) = -q_r(3); state2(32) = -q_r(4); state2(34) = -q_r(5); state2(36) = -q_r(6); // state2(11) = 1; // Eigen::Matrix<double, 59, 1> state2 = Eigen::Matrix<double, 59, // 1>::Constant(ang); //updates->get_mutable_vector().get_mutable_value(); // for(int i = 0; i < 59; i++){ // if (i != 0){ // state2(i) = 0; // } // } // std::cout << "n: " << n << std::endl; // std::cout << "step " << step << std::endl << std::endl; // std::cout << updates->get_mutable_vector(); updates->get_mutable_vector().SetFromVector(state2); } void Athena::CopyDiscreteStateOut( const drake::systems::Context<double>& context, drake::systems::BasicVector<double>* output) const { auto d_state = context.get_discrete_state().get_vector().CopyToVector(); output->SetFromVector(d_state); } } // namespace athena } // namespace examples } // namespace drake
[ "akash@akash-pc.localdomain" ]
akash@akash-pc.localdomain
bd96018538cdc86825ac0d946f67e534258eaa41
30773b649ebd89ffadd16d30fd62740b77ca7865
/SDK/BP_gmp_compass_pio_01_a_ItemDesc_classes.h
40666ce8c59acd5fa1eced2de80bf2a3a8b484dc
[]
no_license
The-Jani/Sot-SDK
7f2772fb5df421e02b8fec237248af407cb2540b
2a158a461c697cca8db67aa28ffe3e43677dcf11
refs/heads/main
2023-07-09T07:17:56.972569
2021-08-18T23:45:06
2021-08-18T23:45:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
796
h
#pragma once // Name: S, Version: 2.2.1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //--------------------------------------------------------------------------- // BlueprintGeneratedClass BP_gmp_compass_pio_01_a_ItemDesc.BP_gmp_compass_pio_01_a_ItemDesc_C // 0x0000 (FullSize[0x0130] - InheritedSize[0x0130]) class UBP_gmp_compass_pio_01_a_ItemDesc_C : public UItemDesc { public: static UClass* StaticClass() { static UClass* ptr = UObject::FindClass("BlueprintGeneratedClass BP_gmp_compass_pio_01_a_ItemDesc.BP_gmp_compass_pio_01_a_ItemDesc_C"); return ptr; } }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "ploszjanos9844@gmail.com" ]
ploszjanos9844@gmail.com
89aa4f60038f09f1994324a23b53ddc41bdb3a04
f2f33c88da831f90a7740de3abeaeac6d2eb5d77
/leetcodeOJ/461_Hamming Distance.cpp
1bc3657d4ca0ef23f3bb9aa851b9e34477347ad8
[]
no_license
fangjinxia/leetcodeOJ
537e4b9514c5b356d7ea5e6045fbc19cc85c46d7
3ad465f189ec6e649101c6ee9e42ef9988f9509b
refs/heads/master
2021-01-22T17:52:34.960033
2017-10-08T01:11:18
2017-10-08T01:11:18
85,039,265
0
0
null
null
null
null
UTF-8
C++
false
false
261
cpp
class Solution { public: int hammingDistance(int x, int y) { int cnt = 0; while(x != 0 || y != 0){ if(x%2 != y%2) ++cnt; x >>= 1; y >>= 1; } return cnt; } };
[ "1173865548@qq.com" ]
1173865548@qq.com
5f5fde4e42a134e593f67745fe1cf00b986cceba
ff4d4757d9c811510c8c755901ef4d4c361cd731
/Tools/ADsdk/ADefx/HeRaY/myefx.cpp
2b2f6899be7ed170fbb65b9b384049d8a48587ab
[ "LicenseRef-scancode-public-domain" ]
permissive
ApocalypseDesign/ad_public
4b6a623885808625b54b2888e79b7e2e1f834ac3
4c6a2759395a3ad36e072ffed79a7d9b48da219c
refs/heads/master
2020-06-01T02:12:11.640297
2013-05-31T19:53:30
2013-05-31T19:53:30
9,555,519
1
0
null
null
null
null
UTF-8
C++
false
false
4,239
cpp
#include "myefx.h" #include <math.h> #include <time.h> void myefx::defineControllers(tChannel *defaultChannel) { // immagini in input/output: addChannel(defaultChannel,"Out","canale in input/output"); } void myefx::updateControllers() { // immagini in input/output: tOut=getChannelImage("Out"); } void myefx::init() { int i; srand( (unsigned)time(NULL)+clock() ); //tOut->clear(0,0,0); for (i=0; i<univ.numSpheres; i++) { univ.Spheres[i].diffusecolor.x=float(rand()*255.0/RAND_MAX); univ.Spheres[i].diffusecolor.y=float(rand()*255.0/RAND_MAX); univ.Spheres[i].diffusecolor.z=float(rand()*255.0/RAND_MAX); univ.Spheres[i].specularcolor.x=float(rand()*255.0/RAND_MAX); univ.Spheres[i].specularcolor.y=float(rand()*255.0/RAND_MAX); univ.Spheres[i].specularcolor.z=float(rand()*255.0/RAND_MAX); univ.Spheres[i].shiness=1.0f+float(rand()*8.0/RAND_MAX); } initialized=true; } void myefx::free() { // free non necessario initialized=false; } void myefx::paint(double pos) { int x,y,i; float ang; unsigned int color; bool hit=false; #ifdef ANTIALIAS unsigned int c1,c2,c3,c4; #endif // tOut->clear(0,0,128); /* for (y=0; y<tOut->height; y++) for (x=0; x<tOut->width; x++) tOut->uint32ptr[x+tOut->muly[y]]=x*y+x*x+y*y; */ for (i=0; i<univ.numLightsOmni; i++) { ang=float(i*1.0f*PI/float(univ.numLightsOmni)); univ.LightsOmni[i].center.x=-1000+float(sin(pos*29.0f+ang))*2350.0f;; univ.LightsOmni[i].center.y=-480+float(sin(32+pos*44.0f+ang))*1350.0f;; univ.LightsOmni[i].center.z=float(fabs(sin(pos*22.0+ang)*1255.0));; univ.LightsOmni[i].diffusecolor.x=float(fabs(sin(pos*12.0+ang)*255.0)); univ.LightsOmni[i].diffusecolor.y=float(fabs(sin(322.0+pos*10.0+ang)*255.0)); univ.LightsOmni[i].diffusecolor.z=float(fabs(sin(212.0+pos*17.0+ang)*255.0)); univ.LightsOmni[i].specularcolor.x=120.0f+float(fabs(sin(pos*12.0+ang)*135.0)); univ.LightsOmni[i].specularcolor.y=120.0f+float(fabs(sin(322.0+pos*10.0+ang)*135.0)); univ.LightsOmni[i].specularcolor.z=120.0f+float(fabs(sin(212.0+pos*17.0+ang)*135.0)); } for (i=0; i<univ.numSpheres; i++) { ang=float(i*2.0f*PI/float(univ.numSpheres)); univ.Spheres[i].center.x=float(cos(pos*23.0+ang)*500.0); univ.Spheres[i].center.y=float(sin(pos*19.0+ang)*200.0); univ.Spheres[i].center.z=1300.0f+float(sin(26.0+pos*10.0+ang)*550.0);; univ.Spheres[i].radius=200.0f+float(sin(i*100.0+pos*10.0+ang)*100.0); } myRay.startpos.x=0; myRay.startpos.y=0; myRay.startpos.z=-256; for (y=0; y<tOut->height; y++) for (x=0; x<tOut->width; x++) { myRay.direction.x=float(x-tOut->width/2); myRay.direction.y=float(y-tOut->height/2); myRay.direction.z=float(tOut->width*0.8f); myRay.direction.normalize(); #ifdef ANTIALIAS color=c1=c2=c3=c4=128; hit=false; hit|=univ.raytrace(&myRay,-1,MAX_REFLECTIONS,&c1); myRay.direction.x=float(x+0.5f-tOut->width/2); myRay.direction.y=float(y-tOut->height/2); myRay.direction.z=float(tOut->width*0.8f); myRay.direction.normalize(); hit|=univ.raytrace(&myRay,-1,MAX_REFLECTIONS,&c2); myRay.direction.x=float(x-tOut->width/2); myRay.direction.y=float(y+0.5f-tOut->height/2); myRay.direction.z=float(tOut->width*0.8f); myRay.direction.normalize(); hit|=univ.raytrace(&myRay,-1,MAX_REFLECTIONS,&c3); myRay.direction.x=float(x+0.5f-tOut->width/2); myRay.direction.y=float(y+0.5f-tOut->height/2); myRay.direction.z=float(tOut->width*0.8f); myRay.direction.normalize(); hit|=univ.raytrace(&myRay,-1,MAX_REFLECTIONS,&c4); if (hit) { c1=((c1 & 0xFEFEFE)>>1) + ((c2 & 0xFEFEFE)>>1); c2=((c3 & 0xFEFEFE)>>1) + ((c4 & 0xFEFEFE)>>1); color=((c1 & 0xFEFEFE)>>1) + ((c2 & 0xFEFEFE)>>1); tOut->uint32ptr[x+tOut->muly[y]]=color; } #else if (univ.raytrace(&myRay,-1,MAX_REFLECTIONS,&color)) { tOut->uint32ptr[x+tOut->muly[y]]=color; if (hit==false) { x-=1+SKIP; if (x<0) x=0; } hit=true; } else { //tOut->uint32ptr[x+tOut->muly[y]]=0xAD; //test * lo skip x+=SKIP; hit=false; } #endif /* univ.Spheres[0].center.x=float(cos(y*0.08+pos*20.0)*50.0); univ.Spheres[0].center.y=float(cos(x*0.08+pos*20.0)*50.0); univ.Spheres[0].center.z=1800.0f; univ.Spheres[0].radius=300.0f; */ } }
[ "r.gerosa@gmail.com" ]
r.gerosa@gmail.com
895456496f4e8bdd25df97ddd6a430026b56bc7f
b03aefe71117bb80ac125d4097e3be4e592fc8f9
/Index/Analyser/Test.cpp
3ac1ad1f78878841a4a922bac7b09087d7d9eb9b
[]
no_license
saifulkhan/dphil_project_search_index
bbc44c1f6fe448eb7f4827be09b50e5a3ce619d6
7a55e8194ee12713764b4cf9469c3c31463a7d53
refs/heads/master
2021-09-20T16:20:30.424865
2018-08-12T10:55:23
2018-08-12T10:55:23
71,154,825
0
0
null
null
null
null
UTF-8
C++
false
false
952
cpp
#include <string> #include <iostream> #include <fstream> #include <DateTime.h> #include <Index.h> #include <vector> #include <FileInfo.h> using namespace std; void test_index_search(); void test_index_read(); int main(int argc, char* argv[]) { test_index_read(); test_index_search(); return EXIT_SUCCESS; } void test_index_search() { SE::Index* index = SE::Index::instance(); vector <FileInfo> tempVec; tempVec = index->search("draft"); cout << __PRETTY_FUNCTION__ << " Search results received: " << tempVec.size() << endl; for (vector<FileInfo>::iterator it = tempVec.begin(); it != tempVec.end(); ++it){ cout << *it << endl; } index->close(); } void test_index_read() { SE::Index* index = SE::Index::instance(); vector <FileInfo> tempVec; tempVec = index->read(); cout << __PRETTY_FUNCTION__ << " Total files in index: " << tempVec.size() << endl; index->close(); }
[ "saiful.etc@gmail.com" ]
saiful.etc@gmail.com
6593b6e3cda45025ddb87db096fc4b54594752ba
608bc4314c5d91744c0731b91882e124fd44fb9a
/mdl/interface/force/nonbonded/Hermite.cpp
edf6a994ec219831593751ff139c5599d8c2bca5
[]
no_license
kuangchen/ProtoMolAddon
bfd1a4f10e7d732b8ed22d38bfa3c7d1f0b228c0
78c96b72204e301d36f8cbe03397f2a02377279f
refs/heads/master
2021-01-10T19:55:40.467574
2015-06-09T21:18:51
2015-06-09T21:18:51
19,328,104
1
0
null
null
null
null
UTF-8
C++
false
false
3,446
cpp
#include "Hermite.h" #include <protomol/base/MathUtilities.h> #include <protomol/base/Report.h> using namespace ProtoMol::Report; using std::string; namespace ProtoMol { //#define DEBUG_HERMITE //_________________________________________________________________ Hermite const string Hermite::keyword("Hermite"); Hermite::Hermite():myInterOrder(0), theta(NULL), dTheta(NULL){ } Hermite::Hermite(unsigned int order):myInterOrder(order), theta(new Real[order]), dTheta(new Real[order]){ } Hermite::Hermite(unsigned int order, Real w):myInterOrder(order), theta(new Real[order]), dTheta(new Real[order]){ set(w); } Hermite::~Hermite(){ if(theta != NULL){ delete [] theta; delete [] dTheta; } } Hermite::Hermite(const Hermite& Hermite){ myInterOrder = Hermite.myInterOrder; theta = new Real[myInterOrder]; dTheta = new Real[myInterOrder]; for(unsigned int k=0;k<myInterOrder;k++){ theta[k] = Hermite.theta[k]; dTheta[k] = Hermite.dTheta[k]; } } void Hermite::setOrder(unsigned int order){ if(order == myInterOrder && theta != NULL) return; delete [] theta; delete [] dTheta; theta = new Real[order]; dTheta = new Real[order]; myInterOrder = order; } void Hermite::set(Real w){ switch(myInterOrder){ case 0: report << error << "[Hermite::set] Interpolation order is zero!"<<endr; break; case 4: theta[0] = (0.5*(1-w)*(1-w) * ((1-w)-1)); theta[1] = (w*w*(1.5*w - 2.5) + 1); theta[2] = ((1-w)*(1-w)*(1.5*(1-w) - 2.5) + 1); theta[3] = (0.5*w*w * (w-1)); dTheta[0] = (-(1.5*(1-w) - 1) * (1-w)); dTheta[1] = ((4.5*w - 5) * w); dTheta[2] = (-((4.5*(1-w) - 5) * (1-w))); dTheta[3] = (-(-(1.5*w - 1) * w)); break; case 6: theta[0] = (-1.0/24.0 * (1-(-w)) * (-w) * (1+(-w)) * (1+(-w)) * ((-w)+2)); theta[1] = (1.0/24.0 * (-w) *(1+(-w)) * (2+(-w)) * ((-5.0*(-w)+1)*(-w)+8)); theta[2] = (w*w-1) * (w-2) * ((-5.0/12.0*w+0.25)*w+0.5); theta[3] = ((1-w)*(1-w)-1) * ((1-w)-2) * ((-5.0/12.0*(1-w)+0.25)*(1-w)+0.5); theta[4] = (1.0/24.0 * (w-1) *(1+(w-1)) * (2+(w-1)) * ((-5.0*(w-1)+1)*(w-1)+8)); theta[5] = (-1.0/24.0 * (1-(w-1)) * (w-1) * (1+(w-1)) * (1+(w-1)) * ((w-1)+2)); dTheta[0] = ((-1.0/24.0) * ((((5.0*(-w)+12)*(-w)+3)*(-w)-6)*(-w)-2)); dTheta[1] = ((1.0/24.0) * ((((25.0*(-w)+56)*(-w)-3)*(-w)-52)*(-w)-16)); dTheta[2] = (-(w*1.0/12.0) * (((25.0*w- 52)*w-15) * w+50)); dTheta[3] = (((1-w)*1.0/12.0) * (((25.0*(1-w)- 52)*(1-w)-15) * (1-w)+50)); dTheta[4] = (-(1.0/24.0) * ((((25.0*(w-1)+56)*(w-1)-3)*(w-1)-52)*(w-1)-16)); dTheta[5] = (-(-1.0/24.0) * ((((5.0*(w-1)+12)*(w-1)+3)*(w-1)-6)*(w-1)-2)); break; default: report << error << "[Hermite::set] Order "<<myInterOrder<<" not supported. Order 4 (qubic) and 6 (quintic) supported."<<endr; break; } #if defined(DEBUG_HERMITE) report <<plain << "Hermite: order="<<myInterOrder<<", w="<<w<<endr; report << plain << "theta: "; for(unsigned int i=0;i<myInterOrder;i++) report << theta[i]<<" "; report << endr; report << plain << "dTheta: "; for(unsigned int i=0;i<myInterOrder;i++) report << dTheta[i]<<" "; report << endr; #endif } }
[ "kuangchen@ucla.edu" ]
kuangchen@ucla.edu
6fb9024d556266d20506793c7f7233b8437f2dc4
b0a12ff4208797ded085a8124e01314d8491507d
/libraries/chain/include/futurepia/chain/compound.hpp
6aff82dc6c3842143cdc149c01a6bb33947fe8eb
[ "MIT" ]
permissive
park-com/futurepia
cad25611bf326f4813ddd50d508009acf7f60a0f
31163047b18082223a86ec4f95a820748275ceaa
refs/heads/master
2021-03-28T16:34:45.731755
2020-01-15T01:40:38
2020-01-15T01:40:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
191
hpp
#pragma once #include <cstdint> #include <futurepia/protocol/config.hpp> #include <futurepia/protocol/types.hpp> #include <fc/uint128.hpp> namespace futurepia { namespace protocol { } }
[ "sdajfaei@sigmachain.net" ]
sdajfaei@sigmachain.net
1b1fa29218af5da7464811a7955d8f748d211634
c0bc2bfdba0819ae8ec97b5f5b54833b1357854a
/main.cpp
f744a8adfb0ffde55483204d67734304e6fbe8be
[]
no_license
EdSwArchitect/cpp-etcd-play
04581c80bc5a673772dce01c916fcf60676d908a
05c1c1feb7a709f5feb8ec09900a068cec949792
refs/heads/master
2022-12-05T00:24:37.626251
2020-08-29T21:25:00
2020-08-29T21:25:00
291,137,263
0
0
null
null
null
null
UTF-8
C++
false
false
597
cpp
#include <iostream> #include "etcd/Client.hpp" int main() { std::cout << "Hello, World!" << std::endl; etcd::Client etcd("http://127.0.0.1:2379"); etcd::Response resp = etcd.get("/Common/Data").get(); std::cout << "Error code: " << resp.error_code() << std::endl; std::cout << "Is_OK: " << resp.is_ok() << std::endl; resp = etcd.get("/Common/Log").get(); std::cout << "Error code: " << resp.error_code() << std::endl; std::cout << "Is_OK: " << resp.is_ok() << std::endl; std::cout << "Value: " << resp.value().as_string() << std::endl; return 0; }
[ "edswarchitect@gmail.com" ]
edswarchitect@gmail.com
eefedadb2db28a612f8e317aa06c3f7aa21587ba
8dc84558f0058d90dfc4955e905dab1b22d12c08
/third_party/blink/public/platform/modules/indexeddb/web_idb_metadata.h
5be6cdbf9e3d7dfb942e8a4685a87a0d11e2b263
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
2,676
h
/* * Copyright (C) 2012 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_MODULES_INDEXEDDB_WEB_IDB_METADATA_H_ #define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_MODULES_INDEXEDDB_WEB_IDB_METADATA_H_ #include "third_party/blink/public/platform/modules/indexeddb/web_idb_key_path.h" #include "third_party/blink/public/platform/web_common.h" #include "third_party/blink/public/platform/web_string.h" #include "third_party/blink/public/platform/web_vector.h" namespace blink { struct WebIDBMetadata { enum { kNoVersion = -1 }; struct Index; struct ObjectStore; WebString name; long long version; long long id; long long max_object_store_id; WebVector<ObjectStore> object_stores; WebIDBMetadata() : version(kNoVersion) {} struct ObjectStore { WebString name; WebIDBKeyPath key_path; bool auto_increment; long long id; long long max_index_id; WebVector<Index> indexes; ObjectStore() : key_path(WebIDBKeyPath::CreateNull()), auto_increment(false) {} }; struct Index { WebString name; WebIDBKeyPath key_path; bool unique; bool multi_entry; long long id; Index() : key_path(WebIDBKeyPath::CreateNull()), unique(false), multi_entry(false) {} }; }; } // namespace blink #endif // THIRD_PARTY_BLINK_PUBLIC_PLATFORM_MODULES_INDEXEDDB_WEB_IDB_METADATA_H_
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
833d4983a69c2f3cf4277c7875462717666441c6
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5769900270288896_0/C++/zakharvoit/main.cpp
9efe971551f8df40d239cc2b9eeb3b9a765b5b5b
[]
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,313
cpp
#include <iostream> #include <vector> #include <sstream> #include <algorithm> using namespace std; #define endl "\n" #define all(x) x.begin(), x.end() typedef long long ll; int solve(int r, int c, int n, int st) { vector <vector <char> > v(r, vector <char>(c)); int cnt = 0; ll ans = 0; for (int i = 0; i < r; i++) { for (int j = (i + st) % 2; j < c; j += 2) { v[i][j] = 1; cnt++; if (cnt == n) { return ans; } } } vector <int> nbs; int dx[] = {-1, 1, 0, 0}; int dy[] = {0, 0, 1, -1}; for (int i = 0; i < r; i++) { for (int j = 0; j < c; j++) { if (!v[i][j]) { int cnt = 0; for (int k = 0; k < 4; k++) { int ni = i + dx[k]; int nj = j + dy[k]; if (ni >= 0 && nj >= 0 && ni < r && nj < c) { cnt += v[ni][nj]; } } nbs.push_back(cnt); } } } sort(all(nbs)); for (int i = 0; i < n - cnt; i++) { ans += nbs[i]; } return ans; } int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int test_cases; cin >> test_cases; for (int t = 1; t <= test_cases; t++) { cout << "Case #" << t << ": "; int r, c, n; cin >> r >> c >> n; cout << min(solve(r, c, n, 0), solve(r, c, n, 1)) << endl; } return 0; }
[ "eewestman@gmail.com" ]
eewestman@gmail.com
59e4b73811249dbe14e9982f31f1cc67e1c0d46d
ad408c6244d3474d7631acbbf38476a16ff80730
/LaonSill/src/layer/InterpolationLayer.cpp
f257280122ffd6152c22693572d4bb48e78fdbff
[ "Apache-2.0" ]
permissive
alice965/LaonSillv2
e229cc9351bd4befb23a50820108f489125e18e7
826f664d5fd8a8625f2abfb9cd566e4f700c16d1
refs/heads/main
2023-02-16T16:57:06.699971
2020-11-30T06:44:43
2020-11-30T06:44:43
354,684,554
1
0
null
2021-04-05T01:25:49
2021-04-05T01:25:43
null
UTF-8
C++
false
false
9,402
cpp
/* * InterpolationLayer.cpp * * Created on: Aug 7, 2017 * Author: jkim */ #include "InterpolationLayer.h" #include "PropMgmt.h" #include "SysLog.h" #include "StdOutLog.h" #include "MathFunctions.h" #include "MemoryMgmt.h" using namespace std; template <typename Dtype> InterpolationLayer<Dtype>::InterpolationLayer() : Layer<Dtype>() { this->type = Layer<Dtype>::Interpolation; this->padBeg = SLPROP(Interpolation, padBeg); this->padEnd = SLPROP(Interpolation, padEnd); SASSERT(this->padBeg <= 0, "Only supports non-pos padding (cropping) for now."); SASSERT(this->padEnd <= 0, "Only supports non-pos padding (cropping) for now."); } template <typename Dtype> InterpolationLayer<Dtype>::~InterpolationLayer() { } template <typename Dtype> void InterpolationLayer<Dtype>::reshape() { Layer<Dtype>::_adjustInputShape(); if (!Layer<Dtype>::_isInputShapeChanged(0)) return; this->batches = this->_inputData[0]->batches(); this->channels = this->_inputData[0]->channels(); this->heightIn = this->_inputData[0]->height(); this->widthIn = this->_inputData[0]->width(); this->heightInEff = this->heightIn + this->padBeg + this->padEnd; this->widthInEff = this->widthIn + this->padBeg + this->padEnd; if (SLPROP(Interpolation, shrinkFactor) != 1 && SLPROP(Interpolation, zoomFactor) == 1) { const int shrinkFactor = SLPROP(Interpolation, shrinkFactor); SASSERT(shrinkFactor >= 1, "Shrink factor must be positive."); this->heightOut = (this->heightInEff - 1) / shrinkFactor + 1; this->widthOut = (this->widthInEff - 1) / shrinkFactor + 1; } else if (SLPROP(Interpolation, zoomFactor) != 1 && SLPROP(Interpolation, shrinkFactor) == 1) { const int zoomFactor = SLPROP(Interpolation, zoomFactor); SASSERT(zoomFactor >= 1, "Zoom factor must be positive."); this->heightOut = this->heightInEff + (this->heightInEff - 1) * (zoomFactor - 1); this->widthOut = this->widthInEff + (this->widthInEff - 1) * (zoomFactor - 1); } else if (SLPROP(Interpolation, height) > 0 && SLPROP(Interpolation, width) > 0) { this->heightOut = SLPROP(Interpolation, height); this->widthOut = SLPROP(Interpolation, width); } else if (SLPROP(Interpolation, shrinkFactor) != 1 && SLPROP(Interpolation, zoomFactor) != 1) { const int shrinkFactor = SLPROP(Interpolation, shrinkFactor); const int zoomFactor = SLPROP(Interpolation, zoomFactor); SASSERT(shrinkFactor >= 1, "Shrink factor must be positive."); SASSERT(zoomFactor >= 1, "Zoom factor must be positive."); this->heightOut = (this->heightInEff - 1) / shrinkFactor + 1; this->widthOut = (this->widthInEff - 1) / shrinkFactor + 1; this->heightOut = this->heightOut + (this->heightOut - 1) * (zoomFactor - 1); this->widthOut = this->widthOut + (this->widthOut - 1) * (zoomFactor - 1); } else { SASSERT(false, "Invalid Interpolation Layer Properies setting."); } SASSERT(this->heightInEff > 0, "height sould be positive."); SASSERT(this->widthInEff > 0, "width sould be positive."); SASSERT(this->heightOut > 0, "height sould be positive."); SASSERT(this->widthOut > 0, "width sould be positive."); this->_outputData[0]->reshape({(uint32_t)this->batches, (uint32_t)this->channels, (uint32_t)this->heightOut, (uint32_t)this->widthOut}); this->_inputShape[0] = this->_inputData[0]->getShape(); } template <typename Dtype> void InterpolationLayer<Dtype>::feedforward() { reshape(); soooa_gpu_interp2<Dtype, false>(this->batches * this->channels, this->_inputData[0]->device_data(), -this->padBeg, -this->padBeg, this->heightInEff, this->widthInEff, this->heightIn, this->widthIn, this->_outputData[0]->mutable_device_data(), 0, 0, this->heightOut, this->widthOut, this->heightOut, this->widthOut); } template <typename Dtype> void InterpolationLayer<Dtype>::backpropagation() { if (!SLPROP_BASE(propDown)[0]) { return; } soooa_gpu_set(this->_inputData[0]->getCount(), Dtype(0), this->_inputData[0]->mutable_device_grad()); soooa_gpu_interp2_backward<Dtype, false>(this->batches * this->channels, this->_inputData[0]->mutable_device_grad(), -this->padBeg, -this->padBeg, this->heightInEff, this->widthInEff, this->heightIn, this->widthIn, this->_outputData[0]->device_grad(), 0, 0, this->heightOut, this->widthOut, this->heightOut, this->widthOut); } /**************************************************************************** * layer callback functions ****************************************************************************/ template<typename Dtype> void* InterpolationLayer<Dtype>::initLayer() { InterpolationLayer* layer = NULL; SNEW(layer, InterpolationLayer<Dtype>); SASSUME0(layer != NULL); return (void*)layer; } template<typename Dtype> void InterpolationLayer<Dtype>::destroyLayer(void* instancePtr) { InterpolationLayer<Dtype>* layer = (InterpolationLayer<Dtype>*)instancePtr; SDELETE(layer); } template<typename Dtype> void InterpolationLayer<Dtype>::setInOutTensor(void* instancePtr, void* tensorPtr, bool isInput, int index) { if (isInput) { SASSERT0(index < 1); } else { SASSERT0(index < 1); } InterpolationLayer<Dtype>* layer = (InterpolationLayer<Dtype>*)instancePtr; if (isInput) { SASSERT0(layer->_inputData.size() == index); layer->_inputData.push_back((Data<Dtype>*)tensorPtr); } else { SASSERT0(layer->_outputData.size() == index); layer->_outputData.push_back((Data<Dtype>*)tensorPtr); } } template<typename Dtype> bool InterpolationLayer<Dtype>::allocLayerTensors(void* instancePtr) { InterpolationLayer<Dtype>* layer = (InterpolationLayer<Dtype>*)instancePtr; layer->reshape(); return true; } template<typename Dtype> void InterpolationLayer<Dtype>::forwardTensor(void* instancePtr, int miniBatchIdx) { InterpolationLayer<Dtype>* layer = (InterpolationLayer<Dtype>*)instancePtr; layer->feedforward(); } template<typename Dtype> void InterpolationLayer<Dtype>::backwardTensor(void* instancePtr) { InterpolationLayer<Dtype>* layer = (InterpolationLayer<Dtype>*)instancePtr; layer->backpropagation(); } template<typename Dtype> void InterpolationLayer<Dtype>::learnTensor(void* instancePtr) { SASSERT0(false); } template<typename Dtype> bool InterpolationLayer<Dtype>::checkShape(vector<TensorShape> inputShape, vector<TensorShape> &outputShape) { if (inputShape.size() != 1) return false; const int padBeg = SLPROP(Interpolation, padBeg); const int padEnd = SLPROP(Interpolation, padEnd); if (padBeg > 0 || padEnd > 0) { return false; } const int batches = inputShape[0].N; const int channels = inputShape[0].C; const int heightIn = inputShape[0].H; const int widthIn = inputShape[0].W; const int heightInEff = heightIn + padBeg + padEnd; const int widthInEff = widthIn + padBeg + padEnd; int heightOut, widthOut; if (SLPROP(Interpolation, shrinkFactor) != 1 && SLPROP(Interpolation, zoomFactor) == 1) { const int shrinkFactor = SLPROP(Interpolation, shrinkFactor); if (shrinkFactor < 1) { //SASSERT(shrinkFactor >= 1, "Shrink factor must be positive."); return false; } heightOut = (heightInEff - 1) / shrinkFactor + 1; widthOut = (widthInEff - 1) / shrinkFactor + 1; } else if (SLPROP(Interpolation, zoomFactor) != 1 && SLPROP(Interpolation, shrinkFactor) == 1) { const int zoomFactor = SLPROP(Interpolation, zoomFactor); if (zoomFactor < 1) { //SASSERT(zoomFactor >= 1, "Zoom factor must be positive."); return false; } heightOut = heightInEff + (heightInEff - 1) * (zoomFactor - 1); widthOut = widthInEff + (widthInEff - 1) * (zoomFactor - 1); } else if (SLPROP(Interpolation, height) > 0 && SLPROP(Interpolation, width) > 0) { heightOut = SLPROP(Interpolation, height); widthOut = SLPROP(Interpolation, width); } else if (SLPROP(Interpolation, shrinkFactor) != 1 && SLPROP(Interpolation, zoomFactor) != 1) { const int shrinkFactor = SLPROP(Interpolation, shrinkFactor); const int zoomFactor = SLPROP(Interpolation, zoomFactor); if (shrinkFactor < 1 || zoomFactor < 1) { //SASSERT(shrinkFactor >= 1, "Shrink factor must be positive."); //SASSERT(zoomFactor >= 1, "Zoom factor must be positive."); return false; } heightOut = (heightInEff - 1) / shrinkFactor + 1; widthOut = (widthInEff - 1) / shrinkFactor + 1; heightOut = heightOut + (heightOut - 1) * (zoomFactor - 1); widthOut = widthOut + (widthOut - 1) * (zoomFactor - 1); } else { //SASSERT(false, "Invalid Interpolation Layer Properies setting."); return false; } if (heightInEff <= 0 || widthInEff <=0 || heightOut <= 0 || widthOut <= 0) { //SASSERT(this->heightInEff > 0, "height sould be positive."); //SASSERT(this->widthInEff > 0, "width sould be positive."); //SASSERT(this->heightOut > 0, "height sould be positive."); //SASSERT(this->widthOut > 0, "width sould be positive."); return false; } TensorShape outputShape1; outputShape1.N = batches; outputShape1.C = channels; outputShape1.H = heightOut; outputShape1.W = widthOut; outputShape.push_back(outputShape1); return true; } template<typename Dtype> uint64_t InterpolationLayer<Dtype>::calcGPUSize(vector<TensorShape> inputShape) { return 0UL; } template class InterpolationLayer<float>;
[ "12prog@naver.com" ]
12prog@naver.com
67d0751baec3a6f1b28ab6cdb7bda756a3f78bdb
e6cd51943f682a006da8b1245e6585e453334687
/Classes/Native/GenericMethods0.cpp
70f9c9506e74a98fb4a3dc850d8c1de8d6383523
[]
no_license
JasonRy/Seer_0.9.1
a7495d385a6c5bcec6040ce061410d9eea4d09eb
f727a9442015b2dc03fc19d2fa68dc88ca8bfac0
refs/heads/master
2021-07-23T06:23:40.432032
2017-11-03T07:57:23
2017-11-03T08:53:35
109,366,091
0
0
null
null
null
null
UTF-8
C++
false
false
3,643,002
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> // DG.Tweening.Core.TweenerCore`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions> struct TweenerCore_3_t1967117138; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions> struct TweenerCore_3_t4267772355; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions> struct TweenerCore_3_t3133199874; // DG.Tweening.Core.TweenerCore`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions> struct TweenerCore_3_t1558294869; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions> struct TweenerCore_3_t3243674587; // DG.Tweening.Core.TweenerCore`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions> struct TweenerCore_3_t67468338; // DG.Tweening.Core.TweenerCore`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t1391333008; // DG.Tweening.Core.TweenerCore`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t3986127068; // DG.Tweening.Core.TweenerCore`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t2340078120; // DG.Tweening.Core.TweenerCore`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t1047223528; // DG.Tweening.Core.TweenerCore`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions> struct TweenerCore_3_t775239064; // DG.Tweening.Core.TweenerCore`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions> struct TweenerCore_3_t4126622711; // DG.Tweening.Core.TweenerCore`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t2006159996; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions> struct TweenerCore_3_t2280135028; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions> struct TweenerCore_3_t675430313; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions> struct TweenerCore_3_t980437966; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions> struct TweenerCore_3_t66211615; // DG.Tweening.Core.TweenerCore`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions> struct TweenerCore_3_t990994486; // DG.Tweening.Core.DOGetter`1<DG.Tweening.Color2> struct DOGetter_1_t27465137; // DG.Tweening.Core.DOSetter`1<DG.Tweening.Color2> struct DOSetter_1_t1064104965; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions> struct ABSTweenPlugin_3_t551274153; // DG.Tweening.Core.DOGetter`1<System.Double> struct DOGetter_1_t1223537605; // DG.Tweening.Core.DOSetter`1<System.Double> struct DOSetter_1_t2260177433; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t1875138823; // DG.Tweening.Core.DOGetter`1<System.Int32> struct DOGetter_1_t2804116836; // DG.Tweening.Core.DOSetter`1<System.Int32> struct DOSetter_1_t3840756664; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t174965587; // DG.Tweening.Core.DOGetter`1<System.Int64> struct DOGetter_1_t2804116931; // DG.Tweening.Core.DOSetter`1<System.Int64> struct DOSetter_1_t3840756759; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t2823883935; // DG.Tweening.Core.DOGetter`1<System.Object> struct DOGetter_1_t1526127411; // DG.Tweening.Core.DOSetter`1<System.Object> struct DOSetter_1_t2562767239; // System.Object struct Il2CppObject; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t1531029343; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions> struct ABSTweenPlugin_3_t1259044879; // DG.Tweening.Core.DOGetter`1<System.Single> struct DOGetter_1_t1647230012; // DG.Tweening.Core.DOSetter`1<System.Single> struct DOSetter_1_t2683869840; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions> struct ABSTweenPlugin_3_t2042100684; // DG.Tweening.Core.DOGetter`1<System.UInt32> struct DOGetter_1_t1674946317; // DG.Tweening.Core.DOSetter`1<System.UInt32> struct DOSetter_1_t2711586145; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions> struct ABSTweenPlugin_3_t315461230; // DG.Tweening.Core.DOGetter`1<System.UInt64> struct DOGetter_1_t1674946412; // DG.Tweening.Core.DOSetter`1<System.UInt64> struct DOSetter_1_t2711586240; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t2489965811; // DG.Tweening.Core.DOGetter`1<UnityEngine.Color> struct DOGetter_1_t1549857945; // DG.Tweening.Core.DOSetter`1<UnityEngine.Color> struct DOSetter_1_t2586497773; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions> struct ABSTweenPlugin_3_t2450922953; // DG.Tweening.Core.DOGetter`1<UnityEngine.Quaternion> struct DOGetter_1_t3203981218; // DG.Tweening.Core.DOSetter`1<UnityEngine.Quaternion> struct DOSetter_1_t4240621046; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions> struct ABSTweenPlugin_3_t2763940843; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions> struct ABSTweenPlugin_3_t456610874; // DG.Tweening.Core.DOGetter`1<UnityEngine.Rect> struct DOGetter_1_t1597215656; // DG.Tweening.Core.DOSetter`1<UnityEngine.Rect> struct DOSetter_1_t2633855484; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions> struct ABSTweenPlugin_3_t1159236128; // DG.Tweening.Core.DOGetter`1<UnityEngine.Vector2> struct DOGetter_1_t1637377605; // DG.Tweening.Core.DOSetter`1<UnityEngine.Vector2> struct DOSetter_1_t2674017433; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions> struct ABSTweenPlugin_3_t1464243781; // DG.Tweening.Core.DOGetter`1<UnityEngine.Vector3> struct DOGetter_1_t1637377606; // DG.Tweening.Core.DOSetter`1<UnityEngine.Vector3> struct DOSetter_1_t2674017434; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions> struct ABSTweenPlugin_3_t550017430; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions> struct ABSTweenPlugin_3_t3727480402; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions> struct ABSTweenPlugin_3_t3617005689; // DG.Tweening.Core.DOGetter`1<UnityEngine.Vector4> struct DOGetter_1_t1637377607; // DG.Tweening.Core.DOSetter`1<UnityEngine.Vector4> struct DOSetter_1_t2674017435; // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions> struct ABSTweenPlugin_3_t1474800301; // DG.Tweening.Tweener struct Tweener_t3057794306; // System.Array/Swapper struct Swapper_t4166107989; // AllSingleton/Contacts[] struct ContactsU5BU5D_t2097638985; // AllSingleton/detailsProperty[] struct detailsPropertyU5BU5D_t3868157767; // AllSingleton/DeviceDetailedInformation[] struct DeviceDetailedInformationU5BU5D_t1518729756; // AllSingleton/surveyProperty[] struct surveyPropertyU5BU5D_t3751806781; // ConsoleApplication.LocalProcessing/DeviceDetailedInformation[] struct DeviceDetailedInformationU5BU5D_t2899977889; // ConsoleApplication.LocalProcessing/DeviceProperties[] struct DevicePropertiesU5BU5D_t665138486; // ConsoleApplication.LocalProcessing/peopleOrderPatrol[] struct peopleOrderPatrolU5BU5D_t635926856; // ConsoleApplication.LocalProcessing/peoplePatrol[] struct peoplePatrolU5BU5D_t2360067772; // ConsoleApplication.LocalProcessing/StaffInformatino[] struct StaffInformatinoU5BU5D_t2925930013; // HighlightingSystem.HighlighterRenderer/Data[] struct DataU5BU5D_t883120163; // LitJson.PropertyMetadata[] struct PropertyMetadataU5BU5D_t2846646185; // PresetSelector/Preset[] struct PresetU5BU5D_t864269073; // System.Boolean[] struct BooleanU5BU5D_t3456302923; // System.Byte[] struct ByteU5BU5D_t4260760469; // System.Char[] struct CharU5BU5D_t3324145743; // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[] struct KeyValuePair_2U5BU5D_t2483180780; // System.Double[] struct DoubleU5BU5D_t2145413704; // System.Int32[] struct Int32U5BU5D_t3230847821; // System.Object[] struct ObjectU5BU5D_t1108656482; // System.Reflection.CustomAttributeNamedArgument[] struct CustomAttributeNamedArgumentU5BU5D_t1983528240; // System.Reflection.CustomAttributeTypedArgument[] struct CustomAttributeTypedArgumentU5BU5D_t2088020251; // System.Single[] struct SingleU5BU5D_t2316563989; // UnityEngine.Color[] struct ColorU5BU5D_t2441545636; // UnityEngine.Color32[] struct Color32U5BU5D_t2960766953; // UnityEngine.EventSystems.RaycastResult[] struct RaycastResultU5BU5D_t2754024893; // UnityEngine.Experimental.Director.Playable[] struct PlayableU5BU5D_t910723999; // UnityEngine.UICharInfo[] struct UICharInfoU5BU5D_t4214337045; // UnityEngine.UILineInfo[] struct UILineInfoU5BU5D_t2354741311; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_t1796391381; // UnityEngine.Vector2[] struct Vector2U5BU5D_t4024180168; // UnityEngine.Vector3[] struct Vector3U5BU5D_t215400611; // UnityEngine.Vector4[] struct Vector4U5BU5D_t701588350; // WMG_Data_Source/WMG_VariableTypes[] struct WMG_VariableTypesU5BU5D_t877298455; // DG.Tweening.TweenCallback`1<System.Int32> struct TweenCallback_1_t3678288188; // DG.Tweening.TweenCallback`1<System.Object> struct TweenCallback_1_t2400298763; // System.Predicate`1<System.Object> struct Predicate_1_t3781873254; // System.Array struct Il2CppArray; // UnityEngine.GameObject struct GameObject_t3674682005; // System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler> struct IList_1_t3825172827; // UnityEngine.EventSystems.BaseEventData struct BaseEventData_t2054899105; // UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object> struct EventFunction_1_t864200549; // UnityEngine.Component struct Component_t3501516275; // WMG_Data_Source struct WMG_Data_Source_t1473700674; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t3176762032; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_t666883479; // System.Func`2<System.Object,System.Boolean> struct Func_2_t785513668; // System.Collections.Generic.IEnumerator`1<AllSingleton/Contacts> struct IEnumerator_1_t2264008753; // System.Collections.Generic.IEnumerator`1<AllSingleton/detailsProperty> struct IEnumerator_1_t2969809035; // System.Collections.Generic.IEnumerator`1<AllSingleton/DeviceDetailedInformation> struct IEnumerator_1_t1850951834; // System.Collections.Generic.IEnumerator`1<AllSingleton/surveyProperty> struct IEnumerator_1_t2796434253; // System.Collections.Generic.IEnumerator`1<ConsoleApplication.LocalProcessing/DeviceDetailedInformation> struct IEnumerator_1_t1285219513; // System.Collections.Generic.IEnumerator`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct IEnumerator_1_t109599752; // System.Collections.Generic.IEnumerator`1<ConsoleApplication.LocalProcessing/peopleOrderPatrol> struct IEnumerator_1_t1909854174; // System.Collections.Generic.IEnumerator`1<ConsoleApplication.LocalProcessing/peoplePatrol> struct IEnumerator_1_t139870330; // System.Collections.Generic.IEnumerator`1<ConsoleApplication.LocalProcessing/StaffInformatino> struct IEnumerator_1_t556799469; // System.Collections.Generic.IEnumerator`1<DG.Tweening.Plugins.Core.PathCore.ControlPoint> struct IEnumerator_1_t733259908; // System.Collections.Generic.IEnumerator`1<HighlightingSystem.Highlighter/Mode> struct IEnumerator_1_t328625371; // System.Collections.Generic.IEnumerator`1<HighlightingSystem.HighlighterRenderer/Data> struct IEnumerator_1_t882410463; // System.Collections.Generic.IEnumerator`1<LitJson.ArrayMetadata> struct IEnumerator_1_t1675240663; // System.Collections.Generic.IEnumerator`1<LitJson.ObjectMetadata> struct IEnumerator_1_t3921159547; // System.Collections.Generic.IEnumerator`1<LitJson.PropertyMetadata> struct IEnumerator_1_t1683532369; // System.Collections.Generic.IEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange> struct IEnumerator_1_t989745906; // System.Collections.Generic.IEnumerator`1<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType> struct IEnumerator_1_t783940301; // System.Collections.Generic.IEnumerator`1<Mono.Security.Uri/UriScheme> struct IEnumerator_1_t989216036; // System.Collections.Generic.IEnumerator`1<Mono.Xml2.XmlTextReader/TagName> struct IEnumerator_1_t3927871694; // System.Collections.Generic.IEnumerator`1<PresetSelector/Preset> struct IEnumerator_1_t10181897; // System.Collections.Generic.IEnumerator`1<System.ArraySegment`1<System.Byte>> struct IEnumerator_1_t4099898657; // System.Collections.Generic.IEnumerator`1<System.Boolean> struct IEnumerator_1_t2388663767; // System.Collections.Generic.IEnumerator`1<System.Byte> struct IEnumerator_1_t479507413; // System.Collections.Generic.IEnumerator`1<System.Char> struct IEnumerator_1_t479520291; // System.Collections.Generic.IEnumerator`1<System.Collections.DictionaryEntry> struct IEnumerator_1_t3663471663; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.HashSet`1/Link<System.Object>> struct IEnumerator_1_t4034464204; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>> struct IEnumerator_1_t2961747494; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>> struct IEnumerator_1_t1683758069; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>> struct IEnumerator_1_t1597212490; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>> struct IEnumerator_1_t3744060565; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>> struct IEnumerator_1_t1695012153; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>> struct IEnumerator_1_t3752352271; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>> struct IEnumerator_1_t162516373; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>> struct IEnumerator_1_t839556155; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IEnumerator_1_t3856534026; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>> struct IEnumerator_1_t927021042; // System.Collections.Generic.IEnumerator`1<System.Collections.Generic.Link> struct IEnumerator_1_t3975532519; // System.Collections.Generic.IEnumerator`1<System.Collections.Hashtable/Slot> struct IEnumerator_1_t4172395230; // System.Collections.Generic.IEnumerator`1<System.Collections.SortedList/Slot> struct IEnumerator_1_t3983888339; // System.Collections.Generic.IEnumerator`1<System.DateTime> struct IEnumerator_1_t1900559080; // System.Collections.Generic.IEnumerator`1<System.Decimal> struct IEnumerator_1_t3866215680; // System.Collections.Generic.IEnumerator`1<System.Double> struct IEnumerator_1_t1485124318; // System.Collections.Generic.IEnumerator`1<System.Int16> struct IEnumerator_1_t3065703491; // System.Collections.Generic.IEnumerator`1<System.Int32> struct IEnumerator_1_t3065703549; // System.Collections.Generic.IEnumerator`1<System.Int64> struct IEnumerator_1_t3065703644; // System.Collections.Generic.IEnumerator`1<System.IntPtr> struct IEnumerator_1_t1627299724; // System.Collections.Generic.IEnumerator`1<System.Object> struct IEnumerator_1_t1787714124; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeNamedArgument> struct IEnumerator_1_t676510742; // System.Collections.Generic.IEnumerator`1<System.Reflection.CustomAttributeTypedArgument> struct IEnumerator_1_t918191175; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILGenerator/LabelData> struct IEnumerator_1_t824721537; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILGenerator/LabelFixup> struct IEnumerator_1_t2572244491; // System.Collections.Generic.IEnumerator`1<System.Reflection.Emit.ILTokenInfo> struct IEnumerator_1_t3265946003; // System.Collections.Generic.IEnumerator`1<System.Reflection.ParameterModifier> struct IEnumerator_1_t2653795075; // System.Collections.Generic.IEnumerator`1<System.Resources.ResourceReader/ResourceCacheItem> struct IEnumerator_1_t4025767882; // System.Collections.Generic.IEnumerator`1<System.Resources.ResourceReader/ResourceInfo> struct IEnumerator_1_t1630503627; // System.Collections.Generic.IEnumerator`1<System.Runtime.Serialization.Formatters.Binary.TypeTag> struct IEnumerator_1_t37601183; // System.Collections.Generic.IEnumerator`1<System.SByte> struct IEnumerator_1_t3073634826; // System.Collections.Generic.IEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus> struct IEnumerator_1_t2678766980; // System.Collections.Generic.IEnumerator`1<System.Single> struct IEnumerator_1_t1908816725; // System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Mark> struct IEnumerator_1_t1428437550; // System.Collections.Generic.IEnumerator`1<System.TimeSpan> struct IEnumerator_1_t2325388036; // System.Collections.Generic.IEnumerator`1<System.UInt16> struct IEnumerator_1_t1936532972; // System.Collections.Generic.IEnumerator`1<System.UInt32> struct IEnumerator_1_t1936533030; // System.Collections.Generic.IEnumerator`1<System.UInt64> struct IEnumerator_1_t1936533125; // System.Collections.Generic.IEnumerator`1<System.Uri/UriScheme> struct IEnumerator_1_t3202534024; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlNamespaceManager/NsDecl> struct IEnumerator_1_t1275109316; // System.Collections.Generic.IEnumerator`1<System.Xml.XmlNamespaceManager/NsScope> struct IEnumerator_1_t3661078796; // System.Collections.Generic.IEnumerator`1<TypewriterEffect/FadeEntry> struct IEnumerator_1_t475369854; // System.Collections.Generic.IEnumerator`1<UICamera/DepthEntry> struct IEnumerator_1_t3057479518; // System.Collections.Generic.IEnumerator`1<UnityEngine.AnimatorStateInfo> struct IEnumerator_1_t2234975367; // System.Collections.Generic.IEnumerator`1<UnityEngine.Bounds> struct IEnumerator_1_t328539602; // System.Collections.Generic.IEnumerator`1<UnityEngine.Color> struct IEnumerator_1_t1811444658; // System.Collections.Generic.IEnumerator`1<UnityEngine.Color32> struct IEnumerator_1_t2510718737; // System.Collections.Generic.IEnumerator`1<UnityEngine.ContactPoint> struct IEnumerator_1_t2154948397; // System.Collections.Generic.IEnumerator`1<UnityEngine.ContactPoint2D> struct IEnumerator_1_t1905330111; // System.Collections.Generic.IEnumerator`1<UnityEngine.EventSystems.RaycastResult> struct IEnumerator_1_t1379559117; // System.Collections.Generic.IEnumerator`1<UnityEngine.Experimental.Director.Playable> struct IEnumerator_1_t1982697747; // System.Collections.Generic.IEnumerator`1<UnityEngine.KeyCode> struct IEnumerator_1_t745215739; // System.Collections.Generic.IEnumerator`1<UnityEngine.Keyframe> struct IEnumerator_1_t1695953867; // System.Collections.Generic.IEnumerator`1<UnityEngine.ParticleSystem/Particle> struct IEnumerator_1_t2317138658; // System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit> struct IEnumerator_1_t1620073479; // System.Collections.Generic.IEnumerator`1<UnityEngine.RaycastHit2D> struct IEnumerator_1_t3286609433; // System.Collections.Generic.IEnumerator`1<UnityEngine.Rendering.RenderTargetIdentifier> struct IEnumerator_1_t3234025721; // System.Collections.Generic.IEnumerator`1<UnityEngine.SendMouseEvents/HitInfo> struct IEnumerator_1_t826031850; // System.Collections.Generic.IEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData> struct IEnumerator_1_t1098273668; // System.Collections.Generic.IEnumerator`1<UnityEngine.SocialPlatforms.GameCenter.GcScoreData> struct IEnumerator_1_t4093161639; // System.Collections.Generic.IEnumerator`1<UnityEngine.Touch> struct IEnumerator_1_t1827152782; // System.Collections.Generic.IEnumerator`1<UnityEngine.UI.InputField/ContentType> struct IEnumerator_1_t279862608; // System.Collections.Generic.IEnumerator`1<UnityEngine.UICharInfo> struct IEnumerator_1_t1977672533; // System.Collections.Generic.IEnumerator`1<UnityEngine.UILineInfo> struct IEnumerator_1_t1730773235; // System.Collections.Generic.IEnumerator`1<UnityEngine.UIVertex> struct IEnumerator_1_t1860962965; // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector2> struct IEnumerator_1_t1898964318; // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector3> struct IEnumerator_1_t1898964319; // System.Collections.Generic.IEnumerator`1<UnityEngine.Vector4> struct IEnumerator_1_t1898964320; // System.Collections.Generic.IEnumerator`1<UnityEngine.VR.VRDeviceType> struct IEnumerator_1_t1701168545; // System.Collections.Generic.IEnumerator`1<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings> struct IEnumerator_1_t4220687932; // System.Collections.Generic.IEnumerator`1<UnityStandardAssets.CinematicEffects.FXAA/Preset> struct IEnumerator_1_t1920775173; // System.Collections.Generic.IEnumerator`1<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings> struct IEnumerator_1_t485168374; // System.Collections.Generic.IEnumerator`1<WMG_Data_Source/WMG_VariableTypes> struct IEnumerator_1_t1882195195; // System.Collections.Generic.List`1<System.Object> struct List_1_t1244034627; // System.String struct String_t; // System.Collections.Generic.List`1<System.Single> struct List_1_t1365137228; // System.Collections.Generic.List`1<UnityEngine.Color> struct List_1_t1267765161; // System.Collections.Generic.List`1<UnityEngine.Vector2> struct List_1_t1355284821; // System.Collections.Generic.List`1<AllSingleton/Contacts> struct List_1_t1720329256; // System.Collections.Generic.IEnumerable`1<AllSingleton/Contacts> struct IEnumerable_1_t3653056661; // System.Collections.Generic.List`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct List_1_t3860887551; // System.Collections.Generic.IEnumerable`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct IEnumerable_1_t1498647660; // System.Collections.Generic.List`1<ConsoleApplication.LocalProcessing/StaffInformatino> struct List_1_t13119972; // System.Collections.Generic.IEnumerable`1<ConsoleApplication.LocalProcessing/StaffInformatino> struct IEnumerable_1_t1945847377; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object> struct ReadOnlyCollection_1_t1432926611; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument> struct ReadOnlyCollection_1_t321723229; // System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument> struct ReadOnlyCollection_1_t563403662; // System.Collections.Generic.IComparer`1<System.Int32> struct IComparer_1_t3728852542; // System.Collections.Generic.IComparer`1<System.Object> struct IComparer_1_t2450863117; // System.Collections.Generic.IComparer`1<AllSingleton/Contacts> struct IComparer_1_t2927157746; // System.Collections.Generic.IComparer`1<AllSingleton/detailsProperty> struct IComparer_1_t3632958028; // System.Collections.Generic.IComparer`1<AllSingleton/DeviceDetailedInformation> struct IComparer_1_t2514100827; // System.Collections.Generic.IComparer`1<AllSingleton/surveyProperty> struct IComparer_1_t3459583246; // System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/DeviceDetailedInformation> struct IComparer_1_t1948368506; // System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct IComparer_1_t772748745; // System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/peopleOrderPatrol> struct IComparer_1_t2573003167; // System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/peoplePatrol> struct IComparer_1_t803019323; // System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/StaffInformatino> struct IComparer_1_t1219948462; // System.Collections.Generic.IComparer`1<HighlightingSystem.HighlighterRenderer/Data> struct IComparer_1_t1545559456; // System.Collections.Generic.IComparer`1<LitJson.PropertyMetadata> struct IComparer_1_t2346681362; // System.Collections.Generic.IComparer`1<PresetSelector/Preset> struct IComparer_1_t673330890; // System.Collections.Generic.IComparer`1<System.Boolean> struct IComparer_1_t3051812760; // System.Collections.Generic.IComparer`1<System.Byte> struct IComparer_1_t1142656406; // System.Collections.Generic.IComparer`1<System.Char> struct IComparer_1_t1142669284; // System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> struct IComparer_1_t224715723; // System.Collections.Generic.IComparer`1<System.Double> struct IComparer_1_t2148273311; // System.Collections.Generic.IComparer`1<System.Reflection.CustomAttributeNamedArgument> struct IComparer_1_t1339659735; // System.Collections.Generic.IComparer`1<System.Reflection.CustomAttributeTypedArgument> struct IComparer_1_t1581340168; // System.Collections.Generic.IComparer`1<System.Single> struct IComparer_1_t2571965718; // System.Collections.Generic.IComparer`1<UnityEngine.Color> struct IComparer_1_t2474593651; // System.Collections.Generic.IComparer`1<UnityEngine.Color32> struct IComparer_1_t3173867730; // System.Collections.Generic.IComparer`1<UnityEngine.EventSystems.RaycastResult> struct IComparer_1_t2042708110; // System.Collections.Generic.IComparer`1<UnityEngine.Experimental.Director.Playable> struct IComparer_1_t2645846740; // System.Collections.Generic.IComparer`1<UnityEngine.UICharInfo> struct IComparer_1_t2640821526; // System.Collections.Generic.IComparer`1<UnityEngine.UILineInfo> struct IComparer_1_t2393922228; // System.Collections.Generic.IComparer`1<UnityEngine.UIVertex> struct IComparer_1_t2524111958; // System.Collections.Generic.IComparer`1<UnityEngine.Vector2> struct IComparer_1_t2562113311; // System.Collections.Generic.IComparer`1<UnityEngine.Vector3> struct IComparer_1_t2562113312; // System.Collections.Generic.IComparer`1<UnityEngine.Vector4> struct IComparer_1_t2562113313; // System.Collections.Generic.IComparer`1<WMG_Data_Source/WMG_VariableTypes> struct IComparer_1_t2545344188; // System.Collections.Generic.List`1<System.Int32> struct List_1_t2522024052; // UnityEngine.Mesh struct Mesh_t4241756145; // System.Collections.Generic.List`1<UnityEngine.Color32> struct List_1_t1967039240; // System.Collections.Generic.List`1<UnityEngine.Vector3> struct List_1_t1355284822; // System.Collections.Generic.List`1<UnityEngine.Vector4> struct List_1_t1355284823; // System.Linq.IOrderedEnumerable`1<AllSingleton/Contacts> struct IOrderedEnumerable_1_t927013830; // System.Func`2<AllSingleton/Contacts,System.Object> struct Func_2_t1173546528; // System.Linq.IOrderedEnumerable`1<ConsoleApplication.LocalProcessing/DeviceProperties> struct IOrderedEnumerable_1_t3067572125; // System.Func`2<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32> struct Func_2_t1019035454; // System.Linq.IOrderedEnumerable`1<ConsoleApplication.LocalProcessing/StaffInformatino> struct IOrderedEnumerable_1_t3514771842; // System.Func`2<ConsoleApplication.LocalProcessing/StaffInformatino,System.Int32> struct Func_2_t3279826981; // System.Func`2<ConsoleApplication.LocalProcessing/StaffInformatino,System.Object> struct Func_2_t2001837556; // System.Linq.IOrderedEnumerable`1<System.Object> struct IOrderedEnumerable_1_t450719201; // System.Func`2<System.Object,System.Object> struct Func_2_t184564025; // System.Reflection.MonoProperty/Getter`2<System.Object,System.Object> struct Getter_2_t2712548107; // System.Reflection.MonoProperty/StaticGetter`1<System.Object> struct StaticGetter_1_t3245381133; // LitJson.ExporterFunc`1<System.Object> struct ExporterFunc_1_t2892523986; // LitJson.ImporterFunc`2<System.Object,System.Object> struct ImporterFunc_2_t2321565487; // System.Action`1<System.Object> struct Action_1_t271665211; #include "codegen/il2cpp-codegen.h" #include "DOTween_DG_Tweening_Core_Extensions1849629984.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1967117138.h" #include "DOTween_DG_Tweening_Tween675658773.h" #include "mscorlib_System_Boolean476798718.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen4267772355.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3133199874.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1558294869.h" #include "DOTween_DG_Tweening_Tweener3057794306.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3243674587.h" #include "DOTween_DG_Tweening_Core_TweenManager4283858702.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen67468338.h" #include "mscorlib_System_Type2863145774MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenManager4283858702MethodDeclarations.h" #include "mscorlib_System_String7231557MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_Debugger799697389MethodDeclarations.h" #include "mscorlib_System_Type2863145774.h" #include "mscorlib_System_Int321153838500.h" #include "mscorlib_System_RuntimeTypeHandle2669177232.h" #include "DOTween_ArrayTypes.h" #include "mscorlib_System_Void2863195528.h" #include "DOTween_DG_Tweening_Core_TweenManager_CapacityIncre499642441.h" #include "DOTween_DG_Tweening_Core_Debugger799697389.h" #include "mscorlib_System_String7231557.h" #include "mscorlib_System_Object4170816371.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen67468338MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1391333008.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1391333008MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3986127068.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3986127068MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2340078120.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2340078120MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1047223528.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1047223528MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen775239064.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen775239064MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1558294869MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen4126622711.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen4126622711MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2006159996.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2006159996MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1967117138MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2280135028.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen2280135028MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen4267772355MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen675430313.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen675430313MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen980437966.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen980437966MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen66211615.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen66211615MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3243674587MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen3133199874MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen990994486.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen990994486MethodDeclarations.h" #include "DOTween_DG_Tweening_DOTween582298986.h" #include "DOTween_DG_Tweening_Color22672154097.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen27465137.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen1064104965.h" #include "mscorlib_System_Single4291918972.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g551274153.h" #include "DOTween_DG_Tweening_DOTween582298986MethodDeclarations.h" #include "DOTween_DG_Tweening_Tweener3057794306MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1223537605.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2260177433.h" #include "mscorlib_System_Double3868226565.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1875138823.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen2804116836.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen3840756664.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g174965587.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen2804116931.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen3840756759.h" #include "mscorlib_System_Int641153838595.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2823883935.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1526127411.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2562767239.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1531029343.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1259044879.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1647230012.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2683869840.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2042100684.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1674946317.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2711586145.h" #include "mscorlib_System_UInt3224667981.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g315461230.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1674946412.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2711586240.h" #include "mscorlib_System_UInt6424668076.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2489965811.h" #include "UnityEngine_UnityEngine_Color4194546905.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1549857945.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2586497773.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2450922953.h" #include "UnityEngine_UnityEngine_Quaternion1553702882.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen3203981218.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen4240621046.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2763940843.h" #include "UnityEngine_UnityEngine_Vector34282066566.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g456610874.h" #include "UnityEngine_UnityEngine_Rect4241904616.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1597215656.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2633855484.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1159236128.h" #include "UnityEngine_UnityEngine_Vector24282066565.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377605.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2674017433.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1464243781.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377606.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2674017434.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g550017430.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_3727480402.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_3617005689.h" #include "UnityEngine_UnityEngine_Vector44282066567.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377607.h" #include "DOTween_DG_Tweening_Core_DOSetter_1_gen2674017435.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1474800301.h" #include "DOTween_DG_Tweening_Plugins_Core_PluginsManager1628423141.h" #include "mscorlib_System_Collections_Generic_Dictionary_2_g2140522786MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_PluginsManager1628423141MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_Dictionary_2_g2140522786.h" #include "mscorlib_System_Activator2714366379MethodDeclarations.h" #include "mscorlib_System_Activator2714366379.h" #include "DOTween_DG_Tweening_Plugins_Vector3Plugin4169633349MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Vector3ArrayPlugin3415920978MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_QuaternionPlugin1465715271MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Vector2Plugin3282129668MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_FloatPlugin4247005649MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_ColorPlugin2735281560MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_IntPlugin3956440740MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Vector4Plugin762169734MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_RectPlugin547917837MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_RectOffsetPlugin301051904MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_UintPlugin3309538563MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_StringPlugin713419258MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Color2Plugin850426008MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_LongPlugin4170721957MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_UlongPlugin1296623654MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_DoublePlugin1679046074MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Vector3Plugin4169633349.h" #include "DOTween_DG_Tweening_Plugins_Vector3ArrayPlugin3415920978.h" #include "DOTween_DG_Tweening_Plugins_QuaternionPlugin1465715271.h" #include "DOTween_DG_Tweening_Plugins_Vector2Plugin3282129668.h" #include "DOTween_DG_Tweening_Plugins_FloatPlugin4247005649.h" #include "DOTween_DG_Tweening_Plugins_ColorPlugin2735281560.h" #include "DOTween_DG_Tweening_Plugins_IntPlugin3956440740.h" #include "DOTween_DG_Tweening_Plugins_Vector4Plugin762169734.h" #include "DOTween_DG_Tweening_Plugins_RectPlugin547917837.h" #include "DOTween_DG_Tweening_Plugins_RectOffsetPlugin301051904.h" #include "DOTween_DG_Tweening_Plugins_UintPlugin3309538563.h" #include "DOTween_DG_Tweening_Plugins_StringPlugin713419258.h" #include "DOTween_DG_Tweening_Plugins_Color2Plugin850426008.h" #include "DOTween_DG_Tweening_Plugins_LongPlugin4170721957.h" #include "DOTween_DG_Tweening_Plugins_UlongPlugin1296623654.h" #include "DOTween_DG_Tweening_Plugins_DoublePlugin1679046074.h" #include "DOTween_DG_Tweening_Tween675658773MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_Enums_SpecialStartupMode2046304187.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen27465137MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g551274153MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_Enums_UpdateMode3381450112.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1223537605MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1875138823MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen2804116836MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g174965587MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen2804116931MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2823883935MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1526127411MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1531029343MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1259044879MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1647230012MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2042100684MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1674946317MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g315461230MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1674946412MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2489965811MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1549857945MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2450922953MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen3203981218MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_2763940843MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g456610874MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1597215656MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1159236128MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377605MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1464243781MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377606MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_g550017430MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_3727480402MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_3617005689MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_DOGetter_1_gen1637377607MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_ABSTweenPlugin_3_1474800301MethodDeclarations.h" #include "mscorlib_System_Array1146569071.h" #include "mscorlib_System_Array_Swapper4166107989.h" #include "Assembly-CSharp_ArrayTypes.h" #include "AssemblyU2DCSharp_AllSingleton_Contacts352143704.h" #include "mscorlib_System_Array_Swapper4166107989MethodDeclarations.h" #include "mscorlib_ArrayTypes.h" #include "mscorlib_System_Array1146569071MethodDeclarations.h" #include "mscorlib_System_IntPtr4010401971.h" #include "AssemblyU2DCSharp_AllSingleton_detailsProperty1057943986.h" #include "AssemblyU2DCSharp_AllSingleton_DeviceDetailedInfor4234054081.h" #include "AssemblyU2DCSharp_AllSingleton_surveyProperty884569204.h" #include "AssemblyU2DCSharp_ConsoleApplication_LocalProcessi3668321760.h" #include "AssemblyU2DCSharp_ConsoleApplication_LocalProcessi2492701999.h" #include "AssemblyU2DCSharp_ConsoleApplication_LocalProcessi4292956421.h" #include "AssemblyU2DCSharp_ConsoleApplication_LocalProcessi2522972577.h" #include "AssemblyU2DCSharp_ConsoleApplication_LocalProcessi2939901716.h" #include "Assembly-CSharp-firstpass_ArrayTypes.h" #include "AssemblyU2DCSharpU2Dfirstpass_HighlightingSystem_H3265512710.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_PropertyMeta4066634616.h" #include "AssemblyU2DCSharp_PresetSelector_Preset2393284144.h" #include "mscorlib_System_Byte2862609660.h" #include "mscorlib_System_Char2862622538.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_21944668977.h" #include "mscorlib_System_Reflection_CustomAttributeNamedArg3059612989.h" #include "mscorlib_System_Reflection_CustomAttributeTypedArg3301293422.h" #include "UnityEngine_ArrayTypes.h" #include "UnityEngine_UnityEngine_Color32598853688.h" #include "UnityEngine.UI_ArrayTypes.h" #include "UnityEngine_UI_UnityEngine_EventSystems_RaycastRes3762661364.h" #include "UnityEngine_UnityEngine_Experimental_Director_Playab70832698.h" #include "UnityEngine_UnityEngine_UICharInfo65807484.h" #include "UnityEngine_UnityEngine_UILineInfo4113875482.h" #include "UnityEngine_UnityEngine_UIVertex4244065212.h" #include "AssemblyU2DCSharp_WMG_Data_Source_WMG_VariableType4265297442.h" #include "DOTween_DG_Tweening_TweenCallback_1_gen3678288188.h" #include "mscorlib_System_Exception3991598821.h" #include "DOTween_DG_Tweening_TweenCallback_1_gen3678288188MethodDeclarations.h" #include "mscorlib_System_Exception3991598821MethodDeclarations.h" #include "DOTween_DG_Tweening_TweenCallback_1_gen2400298763.h" #include "DOTween_DG_Tweening_TweenCallback_1_gen2400298763MethodDeclarations.h" #include "DOTween_DG_Tweening_Ease1564688304.h" #include "DOTween_DG_Tweening_Plugins_Core_SpecialPluginsUti1978764856MethodDeclarations.h" #include "DOTween_DG_Tweening_Core_TweenerCore_3_gen1410186219.h" #include "DOTween_DG_Tweening_LoopType430828992.h" #include "DOTween_DG_Tweening_AutoPlay3906896709.h" #include "mscorlib_System_Predicate_1_gen3781873254.h" #include "mscorlib_System_ArgumentNullException3573189601MethodDeclarations.h" #include "mscorlib_System_ArgumentNullException3573189601.h" #include "mscorlib_System_Predicate_1_gen3781873254MethodDeclarations.h" #include "mscorlib_Locale2281372282MethodDeclarations.h" #include "mscorlib_System_RankException3671413657MethodDeclarations.h" #include "mscorlib_System_RankException3671413657.h" #include "mscorlib_System_Object4170816371MethodDeclarations.h" #include "DOTween_DG_Tweening_Plugins_Core_PathCore_ControlP3116362155.h" #include "AssemblyU2DCSharpU2Dfirstpass_HighlightingSystem_H2711727618.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ArrayMetadat4058342910.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ObjectMetada2009294498.h" #include "mscorlib_Mono_Globalization_Unicode_CodePointIndex3372848153.h" #include "Mono_Security_Mono_Security_Protocol_Tls_Handshake3167042548.h" #include "mscorlib_Mono_Security_Uri_UriScheme3372318283.h" #include "System_Xml_Mono_Xml2_XmlTextReader_TagName2016006645.h" #include "mscorlib_System_ArraySegment_1_gen2188033608.h" #include "mscorlib_System_ArraySegment_1_gen2188033608MethodDeclarations.h" #include "mscorlib_System_Boolean476798718MethodDeclarations.h" #include "mscorlib_System_Byte2862609660MethodDeclarations.h" #include "mscorlib_System_Char2862622538MethodDeclarations.h" #include "mscorlib_System_Collections_DictionaryEntry1751606614.h" #include "System_Core_System_Collections_Generic_HashSet_1_L2122599155.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_21049882445.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_24066860316.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_23980314737.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_21832195516.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_24078114400.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_21840487222.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_22545618620.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_23222658402.h" #include "mscorlib_System_Collections_Generic_KeyValuePair_23310123289.h" #include "mscorlib_System_Collections_Generic_Link2063667470.h" #include "mscorlib_System_Collections_Hashtable_Slot2260530181.h" #include "mscorlib_System_Collections_SortedList_Slot2072023290.h" #include "mscorlib_System_DateTime4283661327.h" #include "mscorlib_System_DateTime4283661327MethodDeclarations.h" #include "mscorlib_System_Decimal1954350631.h" #include "mscorlib_System_Decimal1954350631MethodDeclarations.h" #include "mscorlib_System_Double3868226565MethodDeclarations.h" #include "mscorlib_System_Int161153838442.h" #include "mscorlib_System_Int161153838442MethodDeclarations.h" #include "mscorlib_System_Int321153838500MethodDeclarations.h" #include "mscorlib_System_Int641153838595MethodDeclarations.h" #include "mscorlib_System_IntPtr4010401971MethodDeclarations.h" #include "mscorlib_System_Reflection_CustomAttributeNamedArg3059612989MethodDeclarations.h" #include "mscorlib_System_Reflection_CustomAttributeTypedArg3301293422MethodDeclarations.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelD3207823784.h" #include "mscorlib_System_Reflection_Emit_ILGenerator_LabelFi660379442.h" #include "mscorlib_System_Reflection_Emit_ILTokenInfo1354080954.h" #include "mscorlib_System_Reflection_ParameterModifier741930026.h" #include "mscorlib_System_Resources_ResourceReader_ResourceC2113902833.h" #include "mscorlib_System_Resources_ResourceReader_ResourceI4013605874.h" #include "mscorlib_System_Runtime_Serialization_Formatters_B2420703430.h" #include "mscorlib_System_SByte1161769777.h" #include "mscorlib_System_SByte1161769777MethodDeclarations.h" #include "System_System_Security_Cryptography_X509Certificate766901931.h" #include "mscorlib_System_Single4291918972MethodDeclarations.h" #include "System_System_Text_RegularExpressions_Mark3811539797.h" #include "mscorlib_System_TimeSpan413522987.h" #include "mscorlib_System_TimeSpan413522987MethodDeclarations.h" #include "mscorlib_System_UInt1624667923.h" #include "mscorlib_System_UInt1624667923MethodDeclarations.h" #include "mscorlib_System_UInt3224667981MethodDeclarations.h" #include "mscorlib_System_UInt6424668076MethodDeclarations.h" #include "System_System_Uri_UriScheme1290668975.h" #include "System_Xml_System_Xml_XmlNamespaceManager_NsDecl3658211563.h" #include "System_Xml_System_Xml_XmlNamespaceManager_NsScope1749213747.h" #include "AssemblyU2DCSharp_TypewriterEffect_FadeEntry2858472101.h" #include "AssemblyU2DCSharp_UICamera_DepthEntry1145614469.h" #include "UnityEngine_UnityEngine_AnimatorStateInfo323110318.h" #include "UnityEngine_UnityEngine_Bounds2711641849.h" #include "UnityEngine_UnityEngine_Bounds2711641849MethodDeclarations.h" #include "UnityEngine_UnityEngine_Color4194546905MethodDeclarations.h" #include "UnityEngine_UnityEngine_ContactPoint243083348.h" #include "UnityEngine_UnityEngine_ContactPoint2D4288432358.h" #include "UnityEngine_UnityEngine_Experimental_Director_Playab70832698MethodDeclarations.h" #include "UnityEngine_UnityEngine_KeyCode3128317986.h" #include "UnityEngine_UnityEngine_Keyframe4079056114.h" #include "UnityEngine_UnityEngine_ParticleSystem_Particle405273609.h" #include "UnityEngine_UnityEngine_RaycastHit4003175726.h" #include "UnityEngine_UnityEngine_RaycastHit2D1374744384.h" #include "UnityEngine_UnityEngine_Rendering_RenderTargetIden1322160672.h" #include "UnityEngine_UnityEngine_SendMouseEvents_HitInfo3209134097.h" #include "UnityEngine_UnityEngine_SocialPlatforms_GameCenter3481375915.h" #include "UnityEngine_UnityEngine_SocialPlatforms_GameCenter2181296590.h" #include "UnityEngine_UnityEngine_Touch4210255029.h" #include "UnityEngine_UI_UnityEngine_UI_InputField_ContentTy2662964855.h" #include "UnityEngine_UnityEngine_Vector24282066565MethodDeclarations.h" #include "UnityEngine_UnityEngine_Vector34282066566MethodDeclarations.h" #include "UnityEngine_UnityEngine_Vector44282066567MethodDeclarations.h" #include "UnityEngine_UnityEngine_VR_VRDeviceType4084270792.h" #include "AssemblyU2DCSharpU2Dfirstpass_UnityStandardAssets_2308822883.h" #include "AssemblyU2DCSharpU2Dfirstpass_UnityStandardAssets_Cin8910124.h" #include "AssemblyU2DCSharpU2Dfirstpass_UnityStandardAssets_2868270621.h" #include "mscorlib_System_NotSupportedException1732551818MethodDeclarations.h" #include "mscorlib_System_NotSupportedException1732551818.h" #include "UnityEngine_UI_UnityEngine_EventSystems_ExecuteEve2704060668.h" #include "UnityEngine_UnityEngine_GameObject3674682005.h" #include "UnityEngine_UI_UnityEngine_UI_ObjectPool_1_gen2298299301MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen2498711176MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen2498711176.h" #include "UnityEngine_UI_UnityEngine_EventSystems_ExecuteEve2704060668MethodDeclarations.h" #include "UnityEngine_UI_UnityEngine_UI_ObjectPool_1_gen2298299301.h" #include "UnityEngine_UI_UnityEngine_EventSystems_BaseEventD2054899105.h" #include "UnityEngine_UI_UnityEngine_EventSystems_ExecuteEven864200549.h" #include "UnityEngine_UnityEngine_Debug4195163081MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberInfo3995515898MethodDeclarations.h" #include "mscorlib_System_Reflection_MemberInfo3995515898.h" #include "UnityEngine_UI_UnityEngine_EventSystems_ExecuteEven864200549MethodDeclarations.h" #include "UnityEngine_UnityEngine_Component3501516275.h" #include "UnityEngine_UnityEngine_Object3071478659MethodDeclarations.h" #include "UnityEngine_UnityEngine_Behaviour200106419MethodDeclarations.h" #include "UnityEngine_UnityEngine_Behaviour200106419.h" #include "UnityEngine_UnityEngine_Object3071478659.h" #include "UnityEngine_UI_UnityEngine_UI_SetPropertyUtility1171612705.h" #include "UnityEngine_UI_UnityEngine_UI_ColorBlock508458230.h" #include "UnityEngine_UI_UnityEngine_UI_ColorBlock508458230MethodDeclarations.h" #include "UnityEngine_UI_UnityEngine_UI_Navigation1108456480.h" #include "UnityEngine_UI_UnityEngine_UI_Navigation1108456480MethodDeclarations.h" #include "UnityEngine_UI_UnityEngine_UI_SpriteState2895308594.h" #include "UnityEngine_UI_UnityEngine_UI_SpriteState2895308594MethodDeclarations.h" #include "mscorlib_System_ValueType1744280289MethodDeclarations.h" #include "mscorlib_System_ValueType1744280289.h" #include "UnityEngine_UnityEngine_TouchScreenKeyboardType2604324130.h" #include "UnityEngine_UI_UnityEngine_UI_AspectRatioFitter_As2149445162.h" #include "UnityEngine_UI_UnityEngine_UI_ContentSizeFitter_Fit909765868.h" #include "UnityEngine_UI_UnityEngine_UI_Image_FillMethod2255824731.h" #include "UnityEngine_UI_UnityEngine_UI_Image_Type3063828369.h" #include "UnityEngine_UI_UnityEngine_UI_InputField_CharacterV737650598.h" #include "UnityEngine_UI_UnityEngine_UI_InputField_InputType1602890312.h" #include "UnityEngine_UI_UnityEngine_UI_InputField_LineType2016592042.h" #include "UnityEngine_UI_UnityEngine_UI_Scrollbar_Direction522766867.h" #include "UnityEngine_UI_UnityEngine_UI_Selectable_Transitio1922345195.h" #include "UnityEngine_UI_UnityEngine_UI_Slider_Direction94975348.h" #include "AssemblyU2DCSharp_WMG_Data_Source1473700674.h" #include "mscorlib_System_Collections_Generic_List_1_gen1244034627MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1244034627.h" #include "System_Core_System_Linq_Enumerable839044124.h" #include "System_Core_System_Linq_Enumerable_U3CCreateDistin2807642535.h" #include "System_Core_System_Linq_Enumerable_U3CCreateDistin2807642535MethodDeclarations.h" #include "System_Core_System_Func_2_gen785513668.h" #include "System_Core_System_Linq_Enumerable_U3CCreateWhereI3981097764.h" #include "System_Core_System_Linq_Enumerable_U3CCreateWhereI3981097764MethodDeclarations.h" #include "System_Core_System_Linq_Enumerable839044124MethodDeclarations.h" #include "System_Core_System_Linq_Check10677726MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3278653252MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3278653252.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3429453676.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3429453676MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4135253958.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4135253958MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3016396757.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3016396757MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3961879176.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3961879176MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2450664436.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2450664436MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1275044675.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1275044675MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3075299097.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3075299097MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1305315253.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1305315253MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1722244392.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1722244392MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1898704831.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1898704831MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1494070294.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1494070294MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2047855386.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2047855386MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2840685586.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2840685586MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen791637174.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen791637174MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2848977292.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2848977292MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2155190829.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2155190829MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1949385224.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1949385224MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2154660959.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2154660959MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen798349321.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen798349321MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1175626820.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1175626820MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen970376284.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen970376284MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3554108690.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3554108690MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1644952336.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1644952336MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1644965214.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1644965214MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen533949290.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen533949290MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen904941831.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen904941831MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4127192417.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4127192417MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2849202992.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2849202992MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2762657413.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2762657413MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen614538192.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen614538192MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2860457076.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2860457076MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen622829898.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen622829898MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1327961296.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1327961296MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2005001078.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2005001078MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen727011653.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen727011653MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2092465965.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2092465965MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen846010146.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen846010146MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1042872857.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1042872857MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen854365966.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen854365966MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3066004003.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3066004003MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen736693307.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen736693307MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2650569241.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2650569241MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148414.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148414MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148472.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148472MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148567.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4231148567MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2792744647.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2792744647MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2953159047.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2953159047MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1841955665.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1841955665MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2083636098.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2083636098MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1990166460.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1990166460MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3737689414.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3737689414MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen136423630.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen136423630MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3819239998.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3819239998MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen896245509.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen896245509MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2795948550.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2795948550MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1203046106.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1203046106MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4239079749.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4239079749MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3844211903.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3844211903MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3074261648.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3074261648MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2593882473.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2593882473MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3490832959.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3490832959MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101977895.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101977895MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101977953.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101977953MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101978048.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3101978048MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen73011651.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen73011651MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2440554239.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2440554239MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen531556423.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen531556423MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1640814777.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1640814777MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4222924441.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen4222924441MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3400420290.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3400420290MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1493984525.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1493984525MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2976889581.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2976889581MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3676163660.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3676163660MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3320393320.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3320393320MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3070775034.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3070775034MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2545004040.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2545004040MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3148142670.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3148142670MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1910660662.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1910660662MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2861398790.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2861398790MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3482583581.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3482583581MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2785518402.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2785518402MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen157087060.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen157087060MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen104503348.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen104503348MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1991476773.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1991476773MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2263718591.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2263718591MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen963639266.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen963639266MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2992597705.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2992597705MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1445307531.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1445307531MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3143117456.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3143117456MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2896218158.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2896218158MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3026407888.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3026407888MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409241.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409241MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409242.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409242MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409243.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3064409243MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2866613468.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen2866613468MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1091165559.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1091165559MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3086220096.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3086220096MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1650613297.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen1650613297MethodDeclarations.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3047640118.h" #include "mscorlib_System_Array_InternalEnumerator_1_gen3047640118MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_Enumera1263707397MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1375417109MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1338515698MethodDeclarations.h" #include "AssemblyU2DCSharp_WMG_Data_Source1473700674MethodDeclarations.h" #include "AssemblyU2DCSharp_WMG_Reflection139293977MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_Enumera1263707397.h" #include "AssemblyU2DCSharp_WMG_Data_Source_WMG_DataSourceTy1618536601.h" #include "mscorlib_System_Collections_Generic_List_1_gen1375417109.h" #include "mscorlib_System_Collections_Generic_List_1_gen1338515698.h" #include "mscorlib_System_Reflection_FieldInfo3973053266.h" #include "mscorlib_System_Reflection_FieldInfo3973053266MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1365137228.h" #include "mscorlib_System_Collections_Generic_List_1_gen1365137228MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1267765161.h" #include "mscorlib_System_Collections_Generic_List_1_gen1267765161MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284821.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284821MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1720329256.h" #include "mscorlib_System_Collections_Generic_List_1_gen1720329256MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen3860887551.h" #include "mscorlib_System_Collections_Generic_List_1_gen3860887551MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen13119972.h" #include "mscorlib_System_Collections_Generic_List_1_gen13119972MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCo1432926611.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen1756209413.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen1756209413MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCo1432926611MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCol321723229.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen645006031.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen645006031MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCol321723229MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCol563403662.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen886686464.h" #include "mscorlib_System_Array_ArrayReadOnlyList_1_gen886686464MethodDeclarations.h" #include "mscorlib_System_Collections_ObjectModel_ReadOnlyCol563403662MethodDeclarations.h" #include "mscorlib_System_ArgumentOutOfRangeException3816648464MethodDeclarations.h" #include "mscorlib_System_ArgumentException928607144MethodDeclarations.h" #include "mscorlib_System_InvalidOperationException1589641621MethodDeclarations.h" #include "mscorlib_System_ArgumentOutOfRangeException3816648464.h" #include "mscorlib_System_ArgumentException928607144.h" #include "mscorlib_System_Collections_Generic_Comparer_1_gen3405591787MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_Comparer_1_gen3405591787.h" #include "mscorlib_System_InvalidOperationException1589641621.h" #include "mscorlib_System_Collections_Generic_Comparer_1_gen2127602362MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_Comparer_1_gen2127602362.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3754947881.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3754947881MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompare165780867.h" #include "mscorlib_System_Collections_Generic_EqualityCompare165780867MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3341890962.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3341890962MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar4287373381.h" #include "mscorlib_System_Collections_Generic_EqualityCompar4287373381MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2776158641.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2776158641MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1600538880.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1600538880MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3400793302.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3400793302MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1630809458.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1630809458MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2047738597.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2047738597MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2373349591.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2373349591MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3174471497.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3174471497MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1501121025.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1501121025MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3879602895.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3879602895MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1970446541.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1970446541MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1970459419.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1970459419MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1052505858.h" #include "mscorlib_System_Collections_Generic_EqualityCompar1052505858MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2976063446.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2976063446MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompare261675381.h" #include "mscorlib_System_Collections_Generic_EqualityCompare261675381MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2167449870.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2167449870MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2409130303.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2409130303MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3399755853.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3399755853MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3302383786.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3302383786MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar4001657865.h" #include "mscorlib_System_Collections_Generic_EqualityCompar4001657865MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2870498245.h" #include "mscorlib_System_Collections_Generic_EqualityCompar2870498245MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3473636875.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3473636875MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3468611661.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3468611661MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3221712363.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3221712363MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3351902093.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3351902093MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903446.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903446MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903447.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903447MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903448.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3389903448MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3373134323.h" #include "mscorlib_System_Collections_Generic_EqualityCompar3373134323MethodDeclarations.h" #include "UnityEngine_UnityEngine_Mesh4241756145.h" #include "mscorlib_System_Collections_Generic_List_1_gen2522024052.h" #include "mscorlib_System_Collections_Generic_List_1_gen2522024052MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1967039240.h" #include "mscorlib_System_Collections_Generic_List_1_gen1967039240MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284822.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284822MethodDeclarations.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284823.h" #include "mscorlib_System_Collections_Generic_List_1_gen1355284823MethodDeclarations.h" #include "System_Core_System_Func_2_gen1173546528.h" #include "System_Core_System_Linq_OrderedSequence_2_gen3093093156.h" #include "System_Core_System_Linq_OrderedSequence_2_gen3093093156MethodDeclarations.h" #include "System_Core_System_Linq_SortDirection313822039.h" #include "System_Core_System_Func_2_gen1019035454.h" #include "System_Core_System_Linq_OrderedSequence_2_gen2938582082.h" #include "System_Core_System_Linq_OrderedSequence_2_gen2938582082MethodDeclarations.h" #include "System_Core_System_Func_2_gen3279826981.h" #include "System_Core_System_Linq_OrderedSequence_2_gen904406313.h" #include "System_Core_System_Linq_OrderedSequence_2_gen904406313MethodDeclarations.h" #include "System_Core_System_Func_2_gen2001837556.h" #include "System_Core_System_Linq_OrderedSequence_2_gen3921384184.h" #include "System_Core_System_Linq_OrderedSequence_2_gen3921384184MethodDeclarations.h" #include "System_Core_System_Func_2_gen184564025.h" #include "System_Core_System_Linq_OrderedSequence_2_gen2104110653.h" #include "System_Core_System_Linq_OrderedSequence_2_gen2104110653MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoProperty1246977642.h" #include "mscorlib_System_Reflection_MonoProperty_Getter_2_g2712548107.h" #include "mscorlib_System_Reflection_MonoProperty_Getter_2_g2712548107MethodDeclarations.h" #include "mscorlib_System_Reflection_MonoProperty_StaticGett3245381133.h" #include "mscorlib_System_Reflection_MonoProperty_StaticGett3245381133MethodDeclarations.h" #include "AssemblyU2DCSharp_NGUITools237277134.h" #include "DOTween_DG_Tweening_Plugins_Options_ColorOptions3802927537.h" #include "DOTween_DG_Tweening_Plugins_Options_NoOptions385204223.h" #include "DOTween_DG_Tweening_Plugins_Options_StringOptions113219759.h" #include "DOTween_DG_Tweening_Plugins_Options_FloatOptions3421734040.h" #include "DOTween_DG_Tweening_Plugins_Options_UintOptions859617990.h" #include "DOTween_DG_Tweening_Plugins_Options_QuaternionOptio261798402.h" #include "DOTween_DG_Tweening_Plugins_Options_RectOptions1148721404.h" #include "DOTween_DG_Tweening_Plugins_Options_VectorOptions798145341.h" #include "DOTween_DG_Tweening_Plugins_Options_PathOptions1132868507.h" #include "DOTween_DG_Tweening_Plugins_Options_Vector3ArrayOpti15364183.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper863513565.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ExporterFunc2892523986.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ExporterFunc3330360473MethodDeclarations.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ExporterFunc3330360473.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper_U4053462360.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper_U4053462360MethodDeclarations.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonWriter1165300239.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper863513565MethodDeclarations.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ImporterFunc2321565487.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ImporterFunc2138319818MethodDeclarations.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_ImporterFunc2138319818.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper_U4114309998.h" #include "AssemblyU2DCSharpU2Dfirstpass_LitJson_JsonMapper_U4114309998MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodBase318515428MethodDeclarations.h" #include "mscorlib_System_Reflection_MethodInfo318736065.h" #include "UnityEngine_UnityEngine_GameObject3674682005MethodDeclarations.h" #include "mscorlib_System_Reflection_BindingFlags1523912596.h" #include "mscorlib_System_Reflection_MethodBase318515428.h" #include "UnityEngine_UnityEngine_Transform1659122786MethodDeclarations.h" #include "UnityEngine_UnityEngine_Component3501516275MethodDeclarations.h" #include "UnityEngine_UnityEngine_Transform1659122786.h" #include "AssemblyU2DCSharp_NGUITools237277134MethodDeclarations.h" #include "mscorlib_System_Action_1_gen271665211.h" #include "mscorlib_System_Action_1_gen271665211MethodDeclarations.h" // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1967117138 * Extensions_Blendable_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m570433453_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method); #define Extensions_Blendable_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m570433453(__this /* static, unused */, ___t0, method) (( TweenerCore_3_t1967117138 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))Extensions_Blendable_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m570433453_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t4267772355 * Extensions_Blendable_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4024477958_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method); #define Extensions_Blendable_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4024477958(__this /* static, unused */, ___t0, method) (( TweenerCore_3_t4267772355 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))Extensions_Blendable_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4024477958_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3133199874 * Extensions_Blendable_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1607374437_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method); #define Extensions_Blendable_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1607374437(__this /* static, unused */, ___t0, method) (( TweenerCore_3_t3133199874 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))Extensions_Blendable_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1607374437_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::NoFrom<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1558294869 * Extensions_NoFrom_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m4109982040_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method); #define Extensions_NoFrom_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m4109982040(__this /* static, unused */, ___t0, method) (( TweenerCore_3_t1558294869 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))Extensions_NoFrom_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m4109982040_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::NoFrom<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3243674587 * Extensions_NoFrom_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2841254922_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method); #define Extensions_NoFrom_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2841254922(__this /* static, unused */, ___t0, method) (( TweenerCore_3_t3243674587 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))Extensions_NoFrom_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2841254922_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>() extern "C" TweenerCore_3_t67468338 * TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468(__this /* static, unused */, method) (( TweenerCore_3_t67468338 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t1391333008 * TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762(__this /* static, unused */, method) (( TweenerCore_3_t1391333008 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t3986127068 * TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714(__this /* static, unused */, method) (( TweenerCore_3_t3986127068 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t2340078120 * TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826(__this /* static, unused */, method) (( TweenerCore_3_t2340078120 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t1047223528 * TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366(__this /* static, unused */, method) (( TweenerCore_3_t1047223528 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>() extern "C" TweenerCore_3_t775239064 * TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646(__this /* static, unused */, method) (( TweenerCore_3_t775239064 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>() extern "C" TweenerCore_3_t1558294869 * TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699(__this /* static, unused */, method) (( TweenerCore_3_t1558294869 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>() extern "C" TweenerCore_3_t4126622711 * TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155(__this /* static, unused */, method) (( TweenerCore_3_t4126622711 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t2006159996 * TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884(__this /* static, unused */, method) (( TweenerCore_3_t2006159996 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>() extern "C" TweenerCore_3_t1967117138 * TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988(__this /* static, unused */, method) (( TweenerCore_3_t1967117138 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>() extern "C" TweenerCore_3_t2280135028 * TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962(__this /* static, unused */, method) (( TweenerCore_3_t2280135028 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>() extern "C" TweenerCore_3_t4267772355 * TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605(__this /* static, unused */, method) (( TweenerCore_3_t4267772355 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>() extern "C" TweenerCore_3_t675430313 * TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333(__this /* static, unused */, method) (( TweenerCore_3_t675430313 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" TweenerCore_3_t980437966 * TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188(__this /* static, unused */, method) (( TweenerCore_3_t980437966 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern "C" TweenerCore_3_t66211615 * TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967(__this /* static, unused */, method) (( TweenerCore_3_t66211615 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>() extern "C" TweenerCore_3_t3243674587 * TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227(__this /* static, unused */, method) (( TweenerCore_3_t3243674587 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" TweenerCore_3_t3133199874 * TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826(__this /* static, unused */, method) (( TweenerCore_3_t3133199874 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" TweenerCore_3_t990994486 * TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464(__this /* static, unused */, method) (( TweenerCore_3_t990994486 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464_gshared)(__this /* static, unused */, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t67468338 * DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t27465137 * ___getter0, DOSetter_1_t1064104965 * ___setter1, Color2_t2672154097 ___endValue2, float ___duration3, ABSTweenPlugin_3_t551274153 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t67468338 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t27465137 *, DOSetter_1_t1064104965 *, Color2_t2672154097 , float, ABSTweenPlugin_3_t551274153 *, const MethodInfo*))DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, DOGetter_1_t27465137 * ___getter1, DOSetter_1_t1064104965 * ___setter2, Color2_t2672154097 ___endValue3, float ___duration4, ABSTweenPlugin_3_t551274153 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, DOGetter_1_t27465137 *, DOSetter_1_t1064104965 *, Color2_t2672154097 , float, ABSTweenPlugin_3_t551274153 *, const MethodInfo*))Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1391333008 * DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1223537605 * ___getter0, DOSetter_1_t2260177433 * ___setter1, double ___endValue2, float ___duration3, ABSTweenPlugin_3_t1875138823 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t1391333008 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1223537605 *, DOSetter_1_t2260177433 *, double, float, ABSTweenPlugin_3_t1875138823 *, const MethodInfo*))DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, DOGetter_1_t1223537605 * ___getter1, DOSetter_1_t2260177433 * ___setter2, double ___endValue3, float ___duration4, ABSTweenPlugin_3_t1875138823 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, DOGetter_1_t1223537605 *, DOSetter_1_t2260177433 *, double, float, ABSTweenPlugin_3_t1875138823 *, const MethodInfo*))Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3986127068 * DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t2804116836 * ___getter0, DOSetter_1_t3840756664 * ___setter1, int32_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t174965587 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t3986127068 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t2804116836 *, DOSetter_1_t3840756664 *, int32_t, float, ABSTweenPlugin_3_t174965587 *, const MethodInfo*))DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, DOGetter_1_t2804116836 * ___getter1, DOSetter_1_t3840756664 * ___setter2, int32_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t174965587 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, DOGetter_1_t2804116836 *, DOSetter_1_t3840756664 *, int32_t, float, ABSTweenPlugin_3_t174965587 *, const MethodInfo*))Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t2340078120 * DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t2804116931 * ___getter0, DOSetter_1_t3840756759 * ___setter1, int64_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t2823883935 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t2340078120 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t2804116931 *, DOSetter_1_t3840756759 *, int64_t, float, ABSTweenPlugin_3_t2823883935 *, const MethodInfo*))DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, DOGetter_1_t2804116931 * ___getter1, DOSetter_1_t3840756759 * ___setter2, int64_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t2823883935 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, DOGetter_1_t2804116931 *, DOSetter_1_t3840756759 *, int64_t, float, ABSTweenPlugin_3_t2823883935 *, const MethodInfo*))Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1047223528 * DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1526127411 * ___getter0, DOSetter_1_t2562767239 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t1531029343 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t1047223528 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1531029343 *, const MethodInfo*))DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, DOGetter_1_t1526127411 * ___getter1, DOSetter_1_t2562767239 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t1531029343 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1531029343 *, const MethodInfo*))Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t775239064 * DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1526127411 * ___getter0, DOSetter_1_t2562767239 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t1259044879 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t775239064 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1259044879 *, const MethodInfo*))DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, DOGetter_1_t1526127411 * ___getter1, DOSetter_1_t2562767239 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t1259044879 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1259044879 *, const MethodInfo*))Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1558294869 * DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1647230012 * ___getter0, DOSetter_1_t2683869840 * ___setter1, float ___endValue2, float ___duration3, ABSTweenPlugin_3_t2042100684 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t1558294869 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1647230012 *, DOSetter_1_t2683869840 *, float, float, ABSTweenPlugin_3_t2042100684 *, const MethodInfo*))DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, DOGetter_1_t1647230012 * ___getter1, DOSetter_1_t2683869840 * ___setter2, float ___endValue3, float ___duration4, ABSTweenPlugin_3_t2042100684 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, DOGetter_1_t1647230012 *, DOSetter_1_t2683869840 *, float, float, ABSTweenPlugin_3_t2042100684 *, const MethodInfo*))Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t4126622711 * DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1674946317 * ___getter0, DOSetter_1_t2711586145 * ___setter1, uint32_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t315461230 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t4126622711 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1674946317 *, DOSetter_1_t2711586145 *, uint32_t, float, ABSTweenPlugin_3_t315461230 *, const MethodInfo*))DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, DOGetter_1_t1674946317 * ___getter1, DOSetter_1_t2711586145 * ___setter2, uint32_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t315461230 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, DOGetter_1_t1674946317 *, DOSetter_1_t2711586145 *, uint32_t, float, ABSTweenPlugin_3_t315461230 *, const MethodInfo*))Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t2006159996 * DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1674946412 * ___getter0, DOSetter_1_t2711586240 * ___setter1, uint64_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t2489965811 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t2006159996 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1674946412 *, DOSetter_1_t2711586240 *, uint64_t, float, ABSTweenPlugin_3_t2489965811 *, const MethodInfo*))DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, DOGetter_1_t1674946412 * ___getter1, DOSetter_1_t2711586240 * ___setter2, uint64_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t2489965811 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, DOGetter_1_t1674946412 *, DOSetter_1_t2711586240 *, uint64_t, float, ABSTweenPlugin_3_t2489965811 *, const MethodInfo*))Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1967117138 * DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1549857945 * ___getter0, DOSetter_1_t2586497773 * ___setter1, Color_t4194546905 ___endValue2, float ___duration3, ABSTweenPlugin_3_t2450922953 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t1967117138 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1549857945 *, DOSetter_1_t2586497773 *, Color_t4194546905 , float, ABSTweenPlugin_3_t2450922953 *, const MethodInfo*))DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, DOGetter_1_t1549857945 * ___getter1, DOSetter_1_t2586497773 * ___setter2, Color_t4194546905 ___endValue3, float ___duration4, ABSTweenPlugin_3_t2450922953 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, DOGetter_1_t1549857945 *, DOSetter_1_t2586497773 *, Color_t4194546905 , float, ABSTweenPlugin_3_t2450922953 *, const MethodInfo*))Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t2280135028 * DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t3203981218 * ___getter0, DOSetter_1_t4240621046 * ___setter1, Quaternion_t1553702882 ___endValue2, float ___duration3, ABSTweenPlugin_3_t2763940843 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t2280135028 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Quaternion_t1553702882 , float, ABSTweenPlugin_3_t2763940843 *, const MethodInfo*))DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Quaternion_t1553702882 ___endValue3, float ___duration4, ABSTweenPlugin_3_t2763940843 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Quaternion_t1553702882 , float, ABSTweenPlugin_3_t2763940843 *, const MethodInfo*))Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t4267772355 * DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t3203981218 * ___getter0, DOSetter_1_t4240621046 * ___setter1, Vector3_t4282066566 ___endValue2, float ___duration3, ABSTweenPlugin_3_t456610874 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t4267772355 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t456610874 *, const MethodInfo*))DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Vector3_t4282066566 ___endValue3, float ___duration4, ABSTweenPlugin_3_t456610874 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t456610874 *, const MethodInfo*))Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t675430313 * DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1597215656 * ___getter0, DOSetter_1_t2633855484 * ___setter1, Rect_t4241904616 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1159236128 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t675430313 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1597215656 *, DOSetter_1_t2633855484 *, Rect_t4241904616 , float, ABSTweenPlugin_3_t1159236128 *, const MethodInfo*))DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, DOGetter_1_t1597215656 * ___getter1, DOSetter_1_t2633855484 * ___setter2, Rect_t4241904616 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1159236128 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, DOGetter_1_t1597215656 *, DOSetter_1_t2633855484 *, Rect_t4241904616 , float, ABSTweenPlugin_3_t1159236128 *, const MethodInfo*))Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t980437966 * DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377605 * ___getter0, DOSetter_1_t2674017433 * ___setter1, Vector2_t4282066565 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1464243781 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t980437966 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377605 *, DOSetter_1_t2674017433 *, Vector2_t4282066565 , float, ABSTweenPlugin_3_t1464243781 *, const MethodInfo*))DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, DOGetter_1_t1637377605 * ___getter1, DOSetter_1_t2674017433 * ___setter2, Vector2_t4282066565 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1464243781 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, DOGetter_1_t1637377605 *, DOSetter_1_t2674017433 *, Vector2_t4282066565 , float, ABSTweenPlugin_3_t1464243781 *, const MethodInfo*))Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t66211615 * DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t550017430 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t66211615 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t550017430 *, const MethodInfo*))DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t550017430 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t550017430 *, const MethodInfo*))Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3243674587 * DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t3727480402 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t3243674587 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t3727480402 *, const MethodInfo*))DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t3727480402 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t3727480402 *, const MethodInfo*))Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3133199874 * DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Vector3_t4282066566 ___endValue2, float ___duration3, ABSTweenPlugin_3_t3617005689 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t3133199874 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t3617005689 *, const MethodInfo*))DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Vector3_t4282066566 ___endValue3, float ___duration4, ABSTweenPlugin_3_t3617005689 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t3617005689 *, const MethodInfo*))Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t990994486 * DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377607 * ___getter0, DOSetter_1_t2674017435 * ___setter1, Vector4_t4282066567 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1474800301 * ___plugin4, const MethodInfo* method); #define DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) (( TweenerCore_3_t990994486 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377607 *, DOSetter_1_t2674017435 *, Vector4_t4282066567 , float, ABSTweenPlugin_3_t1474800301 *, const MethodInfo*))DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866_gshared)(__this /* static, unused */, ___getter0, ___setter1, ___endValue2, ___duration3, ___plugin4, method) // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, DOGetter_1_t1637377607 * ___getter1, DOSetter_1_t2674017435 * ___setter2, Vector4_t4282066567 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1474800301 * ___plugin5, const MethodInfo* method); #define Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, DOGetter_1_t1637377607 *, DOSetter_1_t2674017435 *, Vector4_t4282066567 , float, ABSTweenPlugin_3_t1474800301 *, const MethodInfo*))Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119_gshared)(__this /* static, unused */, ___t0, ___getter1, ___setter2, ___endValue3, ___duration4, ___plugin5, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::To<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single) extern "C" TweenerCore_3_t2280135028 * DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266_gshared (Il2CppObject * __this /* static, unused */, ABSTweenPlugin_3_t2763940843 * ___plugin0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Quaternion_t1553702882 ___endValue3, float ___duration4, const MethodInfo* method); #define DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266(__this /* static, unused */, ___plugin0, ___getter1, ___setter2, ___endValue3, ___duration4, method) (( TweenerCore_3_t2280135028 * (*) (Il2CppObject * /* static, unused */, ABSTweenPlugin_3_t2763940843 *, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Quaternion_t1553702882 , float, const MethodInfo*))DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266_gshared)(__this /* static, unused */, ___plugin0, ___getter1, ___setter2, ___endValue3, ___duration4, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::To<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single) extern "C" TweenerCore_3_t66211615 * DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255_gshared (Il2CppObject * __this /* static, unused */, ABSTweenPlugin_3_t550017430 * ___plugin0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, const MethodInfo* method); #define DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255(__this /* static, unused */, ___plugin0, ___getter1, ___setter2, ___endValue3, ___duration4, method) (( TweenerCore_3_t66211615 * (*) (Il2CppObject * /* static, unused */, ABSTweenPlugin_3_t550017430 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, const MethodInfo*))DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255_gshared)(__this /* static, unused */, ___plugin0, ___getter1, ___setter2, ___endValue3, ___duration4, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetCustomPlugin<System.Object,UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern "C" ABSTweenPlugin_3_t550017430 * PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773(__this /* static, unused */, method) (( ABSTweenPlugin_3_t550017430 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773_gshared)(__this /* static, unused */, method) // !!0 System.Activator::CreateInstance<System.Object>() extern "C" Il2CppObject * Activator_CreateInstance_TisIl2CppObject_m3881739293_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define Activator_CreateInstance_TisIl2CppObject_m3881739293(__this /* static, unused */, method) (( Il2CppObject * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))Activator_CreateInstance_TisIl2CppObject_m3881739293_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>() extern "C" ABSTweenPlugin_3_t551274153 * PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160(__this /* static, unused */, method) (( ABSTweenPlugin_3_t551274153 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t1875138823 * PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1875138823 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t174965587 * PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566(__this /* static, unused */, method) (( ABSTweenPlugin_3_t174965587 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t2823883935 * PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678(__this /* static, unused */, method) (( ABSTweenPlugin_3_t2823883935 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t1531029343 * PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1531029343 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>() extern "C" ABSTweenPlugin_3_t1259044879 * PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1259044879 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>() extern "C" ABSTweenPlugin_3_t2042100684 * PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359(__this /* static, unused */, method) (( ABSTweenPlugin_3_t2042100684 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>() extern "C" ABSTweenPlugin_3_t315461230 * PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887(__this /* static, unused */, method) (( ABSTweenPlugin_3_t315461230 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t2489965811 * PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560(__this /* static, unused */, method) (( ABSTweenPlugin_3_t2489965811 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>() extern "C" ABSTweenPlugin_3_t2450922953 * PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304(__this /* static, unused */, method) (( ABSTweenPlugin_3_t2450922953 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>() extern "C" ABSTweenPlugin_3_t2763940843 * PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486(__this /* static, unused */, method) (( ABSTweenPlugin_3_t2763940843 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>() extern "C" ABSTweenPlugin_3_t456610874 * PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241(__this /* static, unused */, method) (( ABSTweenPlugin_3_t456610874 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>() extern "C" ABSTweenPlugin_3_t1159236128 * PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1159236128 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" ABSTweenPlugin_3_t1464243781 * PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1464243781 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern "C" ABSTweenPlugin_3_t550017430 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379(__this /* static, unused */, method) (( ABSTweenPlugin_3_t550017430 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>() extern "C" ABSTweenPlugin_3_t3727480402 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847(__this /* static, unused */, method) (( ABSTweenPlugin_3_t3727480402 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" ABSTweenPlugin_3_t3617005689 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446(__this /* static, unused */, method) (( ABSTweenPlugin_3_t3617005689 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446_gshared)(__this /* static, unused */, method) // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>() extern "C" ABSTweenPlugin_3_t1474800301 * PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084(__this /* static, unused */, method) (( ABSTweenPlugin_3_t1474800301 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084_gshared)(__this /* static, unused */, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, Color2_t2672154097 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1811906643_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1811906643(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1811906643_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, double, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3555045487_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3555045487(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3555045487_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, int32_t, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3467319639_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3467319639(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3467319639_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, int64_t, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3444558583_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3444558583(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3444558583_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, Il2CppObject *, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2017837203_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2017837203(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2017837203_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, Il2CppObject *, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1231635299_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1231635299(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1231635299_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, float, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3323995554_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3323995554(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3323995554_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, uint32_t, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m4087176504_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m4087176504(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m4087176504_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, uint64_t, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1263153313_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1263153313(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1263153313_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, Color_t4194546905 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3965217843_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3965217843(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3965217843_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, Quaternion_t1553702882 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1888309719_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1888309719(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1888309719_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, Vector3_t4282066566 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3032243340_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3032243340(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3032243340_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, Rect_t4241904616 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1074730554_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1074730554(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1074730554_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, Vector2_t4282066565 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2329363297_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2329363297(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2329363297_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, Il2CppObject *, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m87396668_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m87396668(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m87396668_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, Il2CppObject *, float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1824200704_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1824200704(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1824200704_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, Vector3_t4282066566 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3782159775_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3782159775(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3782159775_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method); #define Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, Vector4_t4282066567 , float, bool, const MethodInfo*))Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704_gshared)(__this /* static, unused */, ___t0, ___newEndValue1, ___newDuration2, ___snapStartValue3, method) // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method); #define Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706_gshared)(__this /* static, unused */, ___t0, method) // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m939988957_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method); #define Tweener_DOStartupDurationBased_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m939988957(__this /* static, unused */, ___t0, method) (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))Tweener_DOStartupDurationBased_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m939988957_gshared)(__this /* static, unused */, ___t0, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m2503113380_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m2503113380(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, Color2_t2672154097 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m2503113380_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m702533556_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m702533556(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, double, float, const MethodInfo*))Tweener_DoChangeStartValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m702533556_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1961167180_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1961167180(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, int32_t, float, const MethodInfo*))Tweener_DoChangeStartValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1961167180_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3410348972_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3410348972(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, int64_t, float, const MethodInfo*))Tweener_DoChangeStartValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3410348972_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2485488656_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2485488656(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2485488656_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m339392576_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m339392576(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m339392576_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3995509173_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3995509173(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, float, float, const MethodInfo*))Tweener_DoChangeStartValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3995509173_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2982074507_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2982074507(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, uint32_t, float, const MethodInfo*))Tweener_DoChangeStartValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2982074507_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1015642562_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1015642562(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, uint64_t, float, const MethodInfo*))Tweener_DoChangeStartValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1015642562_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2758608196_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2758608196(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, Color_t4194546905 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2758608196_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m265267660_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m265267660(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, Quaternion_t1553702882 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m265267660_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1753658123_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1753658123(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, Vector3_t4282066566 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1753658123_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2991735625_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2991735625(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, Rect_t4241904616 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2991735625_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1318064898_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1318064898(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, Vector2_t4282066565 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1318064898_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3199528071_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3199528071(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3199528071_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4108988483_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4108988483(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4108988483_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m215886980_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m215886980(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, Vector3_t4282066566 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m215886980_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3408676358_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newStartValue1, float ___newDuration2, const MethodInfo* method); #define Tweener_DoChangeStartValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3408676358(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, Vector4_t4282066567 , float, const MethodInfo*))Tweener_DoChangeStartValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3408676358_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newDuration2, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3247867489_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newStartValue1, Color2_t2672154097 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3247867489(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, Color2_t2672154097 , Color2_t2672154097 , float, const MethodInfo*))Tweener_DoChangeValues_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3247867489_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1243007627_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newStartValue1, double ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1243007627(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, double, double, float, const MethodInfo*))Tweener_DoChangeValues_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1243007627_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1743302963_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newStartValue1, int32_t ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1743302963(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, int32_t, int32_t, float, const MethodInfo*))Tweener_DoChangeValues_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1743302963_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1306809043_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newStartValue1, int64_t ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1306809043(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, int64_t, int64_t, float, const MethodInfo*))Tweener_DoChangeValues_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1306809043_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1397842095_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1397842095(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, Il2CppObject *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1397842095_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m542353407_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m542353407(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, Il2CppObject *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m542353407_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1920875888_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newStartValue1, float ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1920875888(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, float, float, float, const MethodInfo*))Tweener_DoChangeValues_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1920875888_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3969951508_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newStartValue1, uint32_t ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3969951508(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, uint32_t, uint32_t, float, const MethodInfo*))Tweener_DoChangeValues_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3969951508_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m404438461_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newStartValue1, uint64_t ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m404438461(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, uint64_t, uint64_t, float, const MethodInfo*))Tweener_DoChangeValues_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m404438461_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2974914689_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newStartValue1, Color_t4194546905 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2974914689(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, Color_t4194546905 , Color_t4194546905 , float, const MethodInfo*))Tweener_DoChangeValues_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2974914689_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1228818483_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newStartValue1, Quaternion_t1553702882 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1228818483(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, Quaternion_t1553702882 , Quaternion_t1553702882 , float, const MethodInfo*))Tweener_DoChangeValues_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1228818483_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3272494298_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newStartValue1, Vector3_t4282066566 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3272494298(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, Vector3_t4282066566 , Vector3_t4282066566 , float, const MethodInfo*))Tweener_DoChangeValues_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3272494298_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2193929686_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newStartValue1, Rect_t4241904616 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2193929686(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, Rect_t4241904616 , Rect_t4241904616 , float, const MethodInfo*))Tweener_DoChangeValues_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2193929686_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2574721661_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newStartValue1, Vector2_t4282066565 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2574721661(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, Vector2_t4282066565 , Vector2_t4282066565 , float, const MethodInfo*))Tweener_DoChangeValues_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2574721661_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3490814936_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3490814936(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, Il2CppObject *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3490814936_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m707359132_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m707359132(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, Il2CppObject *, Il2CppObject *, float, const MethodInfo*))Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m707359132_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2617344443_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newStartValue1, Vector3_t4282066566 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2617344443(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, Vector3_t4282066566 , Vector3_t4282066566 , float, const MethodInfo*))Tweener_DoChangeValues_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2617344443_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2659967225_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newStartValue1, Vector4_t4282066567 ___newEndValue2, float ___newDuration3, const MethodInfo* method); #define Tweener_DoChangeValues_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2659967225(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) (( Tweener_t3057794306 * (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, Vector4_t4282066567 , Vector4_t4282066567 , float, const MethodInfo*))Tweener_DoChangeValues_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2659967225_gshared)(__this /* static, unused */, ___t0, ___newStartValue1, ___newEndValue2, ___newDuration3, method) // System.Array/Swapper System.Array::get_swapper<AllSingleton/Contacts>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisContacts_t352143704_m2198315065_gshared (Il2CppObject * __this /* static, unused */, ContactsU5BU5D_t2097638985* ___array0, const MethodInfo* method); #define Array_get_swapper_TisContacts_t352143704_m2198315065(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, ContactsU5BU5D_t2097638985*, const MethodInfo*))Array_get_swapper_TisContacts_t352143704_m2198315065_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<AllSingleton/detailsProperty>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555_gshared (Il2CppObject * __this /* static, unused */, detailsPropertyU5BU5D_t3868157767* ___array0, const MethodInfo* method); #define Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, detailsPropertyU5BU5D_t3868157767*, const MethodInfo*))Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<AllSingleton/DeviceDetailedInformation>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, const MethodInfo* method); #define Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756*, const MethodInfo*))Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<AllSingleton/surveyProperty>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TissurveyProperty_t884569204_m1025667925_gshared (Il2CppObject * __this /* static, unused */, surveyPropertyU5BU5D_t3751806781* ___array0, const MethodInfo* method); #define Array_get_swapper_TissurveyProperty_t884569204_m1025667925(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, surveyPropertyU5BU5D_t3751806781*, const MethodInfo*))Array_get_swapper_TissurveyProperty_t884569204_m1025667925_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, const MethodInfo* method); #define Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889*, const MethodInfo*))Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/DeviceProperties>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016_gshared (Il2CppObject * __this /* static, unused */, DevicePropertiesU5BU5D_t665138486* ___array0, const MethodInfo* method); #define Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, DevicePropertiesU5BU5D_t665138486*, const MethodInfo*))Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrolU5BU5D_t635926856* ___array0, const MethodInfo* method); #define Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, peopleOrderPatrolU5BU5D_t635926856*, const MethodInfo*))Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/peoplePatrol>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426_gshared (Il2CppObject * __this /* static, unused */, peoplePatrolU5BU5D_t2360067772* ___array0, const MethodInfo* method); #define Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, peoplePatrolU5BU5D_t2360067772*, const MethodInfo*))Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/StaffInformatino>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisStaffInformatino_t2939901716_m930091509_gshared (Il2CppObject * __this /* static, unused */, StaffInformatinoU5BU5D_t2925930013* ___array0, const MethodInfo* method); #define Array_get_swapper_TisStaffInformatino_t2939901716_m930091509(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, StaffInformatinoU5BU5D_t2925930013*, const MethodInfo*))Array_get_swapper_TisStaffInformatino_t2939901716_m930091509_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<HighlightingSystem.HighlighterRenderer/Data>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisData_t3265512710_m2562721383_gshared (Il2CppObject * __this /* static, unused */, DataU5BU5D_t883120163* ___array0, const MethodInfo* method); #define Array_get_swapper_TisData_t3265512710_m2562721383(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, DataU5BU5D_t883120163*, const MethodInfo*))Array_get_swapper_TisData_t3265512710_m2562721383_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<LitJson.PropertyMetadata>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadataU5BU5D_t2846646185* ___array0, const MethodInfo* method); #define Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, PropertyMetadataU5BU5D_t2846646185*, const MethodInfo*))Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<PresetSelector/Preset>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisPreset_t2393284144_m2275668753_gshared (Il2CppObject * __this /* static, unused */, PresetU5BU5D_t864269073* ___array0, const MethodInfo* method); #define Array_get_swapper_TisPreset_t2393284144_m2275668753(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, PresetU5BU5D_t864269073*, const MethodInfo*))Array_get_swapper_TisPreset_t2393284144_m2275668753_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Boolean>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisBoolean_t476798718_m2640800258_gshared (Il2CppObject * __this /* static, unused */, BooleanU5BU5D_t3456302923* ___array0, const MethodInfo* method); #define Array_get_swapper_TisBoolean_t476798718_m2640800258(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, BooleanU5BU5D_t3456302923*, const MethodInfo*))Array_get_swapper_TisBoolean_t476798718_m2640800258_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Byte>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisByte_t2862609660_m525536776_gshared (Il2CppObject * __this /* static, unused */, ByteU5BU5D_t4260760469* ___array0, const MethodInfo* method); #define Array_get_swapper_TisByte_t2862609660_m525536776(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, ByteU5BU5D_t4260760469*, const MethodInfo*))Array_get_swapper_TisByte_t2862609660_m525536776_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Char>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisChar_t2862622538_m889966038_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* ___array0, const MethodInfo* method); #define Array_get_swapper_TisChar_t2862622538_m889966038(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, CharU5BU5D_t3324145743*, const MethodInfo*))Array_get_swapper_TisChar_t2862622538_m889966038_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t2483180780* ___array0, const MethodInfo* method); #define Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, KeyValuePair_2U5BU5D_t2483180780*, const MethodInfo*))Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Double>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisDouble_t3868226565_m699248977_gshared (Il2CppObject * __this /* static, unused */, DoubleU5BU5D_t2145413704* ___array0, const MethodInfo* method); #define Array_get_swapper_TisDouble_t3868226565_m699248977(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, DoubleU5BU5D_t2145413704*, const MethodInfo*))Array_get_swapper_TisDouble_t3868226565_m699248977_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Int32>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisInt32_t1153838500_m3162346280_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, const MethodInfo* method); #define Array_get_swapper_TisInt32_t1153838500_m3162346280(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, const MethodInfo*))Array_get_swapper_TisInt32_t1153838500_m3162346280_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Object>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisIl2CppObject_m2666204735_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, const MethodInfo* method); #define Array_get_swapper_TisIl2CppObject_m2666204735(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, const MethodInfo*))Array_get_swapper_TisIl2CppObject_m2666204735_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Reflection.CustomAttributeNamedArgument>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, const MethodInfo* method); #define Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240*, const MethodInfo*))Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Reflection.CustomAttributeTypedArgument>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, const MethodInfo* method); #define Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251*, const MethodInfo*))Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<System.Single>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisSingle_t4291918972_m1460552840_gshared (Il2CppObject * __this /* static, unused */, SingleU5BU5D_t2316563989* ___array0, const MethodInfo* method); #define Array_get_swapper_TisSingle_t4291918972_m1460552840(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, SingleU5BU5D_t2316563989*, const MethodInfo*))Array_get_swapper_TisSingle_t4291918972_m1460552840_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Color>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisColor_t4194546905_m2101809773_gshared (Il2CppObject * __this /* static, unused */, ColorU5BU5D_t2441545636* ___array0, const MethodInfo* method); #define Array_get_swapper_TisColor_t4194546905_m2101809773(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, ColorU5BU5D_t2441545636*, const MethodInfo*))Array_get_swapper_TisColor_t4194546905_m2101809773_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Color32>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisColor32_t598853688_m3116429708_gshared (Il2CppObject * __this /* static, unused */, Color32U5BU5D_t2960766953* ___array0, const MethodInfo* method); #define Array_get_swapper_TisColor32_t598853688_m3116429708(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, Color32U5BU5D_t2960766953*, const MethodInfo*))Array_get_swapper_TisColor32_t598853688_m3116429708_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.EventSystems.RaycastResult>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisRaycastResult_t3762661364_m3763812882_gshared (Il2CppObject * __this /* static, unused */, RaycastResultU5BU5D_t2754024893* ___array0, const MethodInfo* method); #define Array_get_swapper_TisRaycastResult_t3762661364_m3763812882(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, RaycastResultU5BU5D_t2754024893*, const MethodInfo*))Array_get_swapper_TisRaycastResult_t3762661364_m3763812882_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Experimental.Director.Playable>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisPlayable_t70832698_m3105735866_gshared (Il2CppObject * __this /* static, unused */, PlayableU5BU5D_t910723999* ___array0, const MethodInfo* method); #define Array_get_swapper_TisPlayable_t70832698_m3105735866(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, PlayableU5BU5D_t910723999*, const MethodInfo*))Array_get_swapper_TisPlayable_t70832698_m3105735866_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.UICharInfo>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisUICharInfo_t65807484_m2567638600_gshared (Il2CppObject * __this /* static, unused */, UICharInfoU5BU5D_t4214337045* ___array0, const MethodInfo* method); #define Array_get_swapper_TisUICharInfo_t65807484_m2567638600(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, UICharInfoU5BU5D_t4214337045*, const MethodInfo*))Array_get_swapper_TisUICharInfo_t65807484_m2567638600_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.UILineInfo>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisUILineInfo_t4113875482_m1287814502_gshared (Il2CppObject * __this /* static, unused */, UILineInfoU5BU5D_t2354741311* ___array0, const MethodInfo* method); #define Array_get_swapper_TisUILineInfo_t4113875482_m1287814502(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, UILineInfoU5BU5D_t2354741311*, const MethodInfo*))Array_get_swapper_TisUILineInfo_t4113875482_m1287814502_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.UIVertex>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisUIVertex_t4244065212_m4107285640_gshared (Il2CppObject * __this /* static, unused */, UIVertexU5BU5D_t1796391381* ___array0, const MethodInfo* method); #define Array_get_swapper_TisUIVertex_t4244065212_m4107285640(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, UIVertexU5BU5D_t1796391381*, const MethodInfo*))Array_get_swapper_TisUIVertex_t4244065212_m4107285640_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector2>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector2_t4282066565_m2106303001_gshared (Il2CppObject * __this /* static, unused */, Vector2U5BU5D_t4024180168* ___array0, const MethodInfo* method); #define Array_get_swapper_TisVector2_t4282066565_m2106303001(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, Vector2U5BU5D_t4024180168*, const MethodInfo*))Array_get_swapper_TisVector2_t4282066565_m2106303001_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector3>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector3_t4282066566_m2993806682_gshared (Il2CppObject * __this /* static, unused */, Vector3U5BU5D_t215400611* ___array0, const MethodInfo* method); #define Array_get_swapper_TisVector3_t4282066566_m2993806682(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, Vector3U5BU5D_t215400611*, const MethodInfo*))Array_get_swapper_TisVector3_t4282066566_m2993806682_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector4>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector4_t4282066567_m3881310363_gshared (Il2CppObject * __this /* static, unused */, Vector4U5BU5D_t701588350* ___array0, const MethodInfo* method); #define Array_get_swapper_TisVector4_t4282066567_m3881310363(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, Vector4U5BU5D_t701588350*, const MethodInfo*))Array_get_swapper_TisVector4_t4282066567_m3881310363_gshared)(__this /* static, unused */, ___array0, method) // System.Array/Swapper System.Array::get_swapper<WMG_Data_Source/WMG_VariableTypes>(T[]) extern "C" Swapper_t4166107989 * Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763_gshared (Il2CppObject * __this /* static, unused */, WMG_VariableTypesU5BU5D_t877298455* ___array0, const MethodInfo* method); #define Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763(__this /* static, unused */, ___array0, method) (( Swapper_t4166107989 * (*) (Il2CppObject * /* static, unused */, WMG_VariableTypesU5BU5D_t877298455*, const MethodInfo*))Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763_gshared)(__this /* static, unused */, ___array0, method) // System.Boolean DG.Tweening.Tween::OnTweenCallback<System.Int32>(DG.Tweening.TweenCallback`1<T>,T) extern "C" bool Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923_gshared (Il2CppObject * __this /* static, unused */, TweenCallback_1_t3678288188 * ___callback0, int32_t ___param1, const MethodInfo* method); #define Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923(__this /* static, unused */, ___callback0, ___param1, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenCallback_1_t3678288188 *, int32_t, const MethodInfo*))Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923_gshared)(__this /* static, unused */, ___callback0, ___param1, method) // System.Boolean DG.Tweening.Tween::OnTweenCallback<System.Object>(DG.Tweening.TweenCallback`1<T>,T) extern "C" bool Tween_OnTweenCallback_TisIl2CppObject_m145841828_gshared (Il2CppObject * __this /* static, unused */, TweenCallback_1_t2400298763 * ___callback0, Il2CppObject * ___param1, const MethodInfo* method); #define Tween_OnTweenCallback_TisIl2CppObject_m145841828(__this /* static, unused */, ___callback0, ___param1, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenCallback_1_t2400298763 *, Il2CppObject *, const MethodInfo*))Tween_OnTweenCallback_TisIl2CppObject_m145841828_gshared)(__this /* static, unused */, ___callback0, ___param1, method) // System.Boolean DG.Tweening.Tweener::DoStartup<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" bool Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method); #define Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028(__this /* static, unused */, ___t0, method) (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028_gshared)(__this /* static, unused */, ___t0, method) // System.Boolean System.Array::Exists<System.Object>(T[],System.Predicate`1<T>) extern "C" bool Array_Exists_TisIl2CppObject_m2935916183_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method); #define Array_Exists_TisIl2CppObject_m2935916183(__this /* static, unused */, ___array0, ___match1, method) (( bool (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Predicate_1_t3781873254 *, const MethodInfo*))Array_Exists_TisIl2CppObject_m2935916183_gshared)(__this /* static, unused */, ___array0, ___match1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/Contacts>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601(__this, ___item0, method) (( bool (*) (Il2CppArray *, Contacts_t352143704 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<AllSingleton/Contacts>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisContacts_t352143704_m481073089_gshared (Il2CppArray * __this, int32_t p0, Contacts_t352143704 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisContacts_t352143704_m481073089(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Contacts_t352143704 *, const MethodInfo*))Array_GetGenericValueImpl_TisContacts_t352143704_m481073089_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/detailsProperty>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079(__this, ___item0, method) (( bool (*) (Il2CppArray *, detailsProperty_t1057943986 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<AllSingleton/detailsProperty>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisdetailsProperty_t1057943986_m361272937_gshared (Il2CppArray * __this, int32_t p0, detailsProperty_t1057943986 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisdetailsProperty_t1057943986_m361272937(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, detailsProperty_t1057943986 *, const MethodInfo*))Array_GetGenericValueImpl_TisdetailsProperty_t1057943986_m361272937_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/DeviceDetailedInformation>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceDetailedInformation_t4234054081 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<AllSingleton/DeviceDetailedInformation>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDeviceDetailedInformation_t4234054081_m3163603000_gshared (Il2CppArray * __this, int32_t p0, DeviceDetailedInformation_t4234054081 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDeviceDetailedInformation_t4234054081_m3163603000(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DeviceDetailedInformation_t4234054081 *, const MethodInfo*))Array_GetGenericValueImpl_TisDeviceDetailedInformation_t4234054081_m3163603000_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/surveyProperty>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717(__this, ___item0, method) (( bool (*) (Il2CppArray *, surveyProperty_t884569204 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<AllSingleton/surveyProperty>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TissurveyProperty_t884569204_m2980938269_gshared (Il2CppArray * __this, int32_t p0, surveyProperty_t884569204 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TissurveyProperty_t884569204_m2980938269(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, surveyProperty_t884569204 *, const MethodInfo*))Array_GetGenericValueImpl_TissurveyProperty_t884569204_m2980938269_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceDetailedInformation_t3668321760 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDeviceDetailedInformation_t3668321760_m3050687383_gshared (Il2CppArray * __this, int32_t p0, DeviceDetailedInformation_t3668321760 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDeviceDetailedInformation_t3668321760_m3050687383(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DeviceDetailedInformation_t3668321760 *, const MethodInfo*))Array_GetGenericValueImpl_TisDeviceDetailedInformation_t3668321760_m3050687383_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceProperties_t2492701999 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<ConsoleApplication.LocalProcessing/DeviceProperties>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDeviceProperties_t2492701999_m355677272_gshared (Il2CppArray * __this, int32_t p0, DeviceProperties_t2492701999 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDeviceProperties_t2492701999_m355677272(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DeviceProperties_t2492701999 *, const MethodInfo*))Array_GetGenericValueImpl_TisDeviceProperties_t2492701999_m355677272_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602(__this, ___item0, method) (( bool (*) (Il2CppArray *, peopleOrderPatrol_t4292956421 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TispeopleOrderPatrol_t4292956421_m167737660_gshared (Il2CppArray * __this, int32_t p0, peopleOrderPatrol_t4292956421 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TispeopleOrderPatrol_t4292956421_m167737660(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, peopleOrderPatrol_t4292956421 *, const MethodInfo*))Array_GetGenericValueImpl_TispeopleOrderPatrol_t4292956421_m167737660_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170(__this, ___item0, method) (( bool (*) (Il2CppArray *, peoplePatrol_t2522972577 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<ConsoleApplication.LocalProcessing/peoplePatrol>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TispeoplePatrol_t2522972577_m561125450_gshared (Il2CppArray * __this, int32_t p0, peoplePatrol_t2522972577 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TispeoplePatrol_t2522972577_m561125450(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, peoplePatrol_t2522972577 *, const MethodInfo*))Array_GetGenericValueImpl_TispeoplePatrol_t2522972577_m561125450_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053(__this, ___item0, method) (( bool (*) (Il2CppArray *, StaffInformatino_t2939901716 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<ConsoleApplication.LocalProcessing/StaffInformatino>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisStaffInformatino_t2939901716_m613943741_gshared (Il2CppArray * __this, int32_t p0, StaffInformatino_t2939901716 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisStaffInformatino_t2939901716_m613943741(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, StaffInformatino_t2939901716 *, const MethodInfo*))Array_GetGenericValueImpl_TisStaffInformatino_t2939901716_m613943741_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173(__this, ___item0, method) (( bool (*) (Il2CppArray *, ControlPoint_t3116362155 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisControlPoint_t3116362155_m1967044959_gshared (Il2CppArray * __this, int32_t p0, ControlPoint_t3116362155 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisControlPoint_t3116362155_m1967044959(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ControlPoint_t3116362155 *, const MethodInfo*))Array_GetGenericValueImpl_TisControlPoint_t3116362155_m1967044959_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<HighlightingSystem.Highlighter/Mode>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<HighlightingSystem.Highlighter/Mode>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisMode_t2711727618_m3600797611_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisMode_t2711727618_m3600797611(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisMode_t2711727618_m3600797611_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<HighlightingSystem.HighlighterRenderer/Data>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231(__this, ___item0, method) (( bool (*) (Il2CppArray *, Data_t3265512710 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<HighlightingSystem.HighlighterRenderer/Data>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisData_t3265512710_m71672751_gshared (Il2CppArray * __this, int32_t p0, Data_t3265512710 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisData_t3265512710_m71672751(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Data_t3265512710 *, const MethodInfo*))Array_GetGenericValueImpl_TisData_t3265512710_m71672751_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.ArrayMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194(__this, ___item0, method) (( bool (*) (Il2CppArray *, ArrayMetadata_t4058342910 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<LitJson.ArrayMetadata>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisArrayMetadata_t4058342910_m2165761218_gshared (Il2CppArray * __this, int32_t p0, ArrayMetadata_t4058342910 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisArrayMetadata_t4058342910_m2165761218(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ArrayMetadata_t4058342910 *, const MethodInfo*))Array_GetGenericValueImpl_TisArrayMetadata_t4058342910_m2165761218_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.ObjectMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746(__this, ___item0, method) (( bool (*) (Il2CppArray *, ObjectMetadata_t2009294498 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<LitJson.ObjectMetadata>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisObjectMetadata_t2009294498_m2684022772_gshared (Il2CppArray * __this, int32_t p0, ObjectMetadata_t2009294498 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisObjectMetadata_t2009294498_m2684022772(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ObjectMetadata_t2009294498 *, const MethodInfo*))Array_GetGenericValueImpl_TisObjectMetadata_t2009294498_m2684022772_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.PropertyMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160(__this, ___item0, method) (( bool (*) (Il2CppArray *, PropertyMetadata_t4066634616 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<LitJson.PropertyMetadata>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisPropertyMetadata_t4066634616_m3540538378_gshared (Il2CppArray * __this, int32_t p0, PropertyMetadata_t4066634616 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisPropertyMetadata_t4066634616_m3540538378(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, PropertyMetadata_t4066634616 *, const MethodInfo*))Array_GetGenericValueImpl_TisPropertyMetadata_t4066634616_m3540538378_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974(__this, ___item0, method) (( bool (*) (Il2CppArray *, TableRange_t3372848153 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisTableRange_t3372848153_m3349192848_gshared (Il2CppArray * __this, int32_t p0, TableRange_t3372848153 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisTableRange_t3372848153_m3349192848(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, TableRange_t3372848153 *, const MethodInfo*))Array_GetGenericValueImpl_TisTableRange_t3372848153_m3349192848_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisClientCertificateType_t3167042548_m3844522496_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisClientCertificateType_t3167042548_m3844522496(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisClientCertificateType_t3167042548_m3844522496_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Security.Uri/UriScheme>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780(__this, ___item0, method) (( bool (*) (Il2CppArray *, UriScheme_t3372318283 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<Mono.Security.Uri/UriScheme>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUriScheme_t3372318283_m1192049268_gshared (Il2CppArray * __this, int32_t p0, UriScheme_t3372318283 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUriScheme_t3372318283_m1192049268(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, UriScheme_t3372318283 *, const MethodInfo*))Array_GetGenericValueImpl_TisUriScheme_t3372318283_m1192049268_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Xml2.XmlTextReader/TagName>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822(__this, ___item0, method) (( bool (*) (Il2CppArray *, TagName_t2016006645 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<Mono.Xml2.XmlTextReader/TagName>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisTagName_t2016006645_m2315266206_gshared (Il2CppArray * __this, int32_t p0, TagName_t2016006645 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisTagName_t2016006645_m2315266206(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, TagName_t2016006645 *, const MethodInfo*))Array_GetGenericValueImpl_TisTagName_t2016006645_m2315266206_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<PresetSelector/Preset>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217(__this, ___item0, method) (( bool (*) (Il2CppArray *, Preset_t2393284144 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<PresetSelector/Preset>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisPreset_t2393284144_m4185067673_gshared (Il2CppArray * __this, int32_t p0, Preset_t2393284144 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisPreset_t2393284144_m4185067673(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Preset_t2393284144 *, const MethodInfo*))Array_GetGenericValueImpl_TisPreset_t2393284144_m4185067673_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.ArraySegment`1<System.Byte>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190(__this, ___item0, method) (( bool (*) (Il2CppArray *, ArraySegment_1_t2188033608 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.ArraySegment`1<System.Byte>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisArraySegment_1_t2188033608_m3070707360_gshared (Il2CppArray * __this, int32_t p0, ArraySegment_1_t2188033608 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisArraySegment_1_t2188033608_m3070707360(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ArraySegment_1_t2188033608 *, const MethodInfo*))Array_GetGenericValueImpl_TisArraySegment_1_t2188033608_m3070707360_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Boolean>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174(__this, ___item0, method) (( bool (*) (Il2CppArray *, bool, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Boolean>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisBoolean_t476798718_m1385618144_gshared (Il2CppArray * __this, int32_t p0, bool* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisBoolean_t476798718_m1385618144(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, bool*, const MethodInfo*))Array_GetGenericValueImpl_TisBoolean_t476798718_m1385618144_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Byte>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Byte>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisByte_t2862609660_m4168978832_gshared (Il2CppArray * __this, int32_t p0, uint8_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisByte_t2862609660_m4168978832(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, uint8_t*, const MethodInfo*))Array_GetGenericValueImpl_TisByte_t2862609660_m4168978832_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Char>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158(__this, ___item0, method) (( bool (*) (Il2CppArray *, Il2CppChar, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Char>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisChar_t2862622538_m2936770782_gshared (Il2CppArray * __this, int32_t p0, Il2CppChar* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisChar_t2862622538_m2936770782(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Il2CppChar*, const MethodInfo*))Array_GetGenericValueImpl_TisChar_t2862622538_m2936770782_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.DictionaryEntry>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145(__this, ___item0, method) (( bool (*) (Il2CppArray *, DictionaryEntry_t1751606614 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.DictionaryEntry>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDictionaryEntry_t1751606614_m812760635_gshared (Il2CppArray * __this, int32_t p0, DictionaryEntry_t1751606614 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDictionaryEntry_t1751606614_m812760635(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DictionaryEntry_t1751606614 *, const MethodInfo*))Array_GetGenericValueImpl_TisDictionaryEntry_t1751606614_m812760635_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558(__this, ___item0, method) (( bool (*) (Il2CppArray *, Link_t2122599155 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.HashSet`1/Link<System.Object>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisLink_t2122599155_m3370671936_gshared (Il2CppArray * __this, int32_t p0, Link_t2122599155 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisLink_t2122599155_m3370671936(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Link_t2122599155 *, const MethodInfo*))Array_GetGenericValueImpl_TisLink_t2122599155_m3370671936_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1049882445 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t1049882445_m3681184152_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t1049882445 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t1049882445_m3681184152(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t1049882445 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t1049882445_m3681184152_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t4066860316 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t4066860316_m3704726135_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t4066860316 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t4066860316_m3704726135(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t4066860316 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t4066860316_m3704726135_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3980314737 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t3980314737_m2148657966_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t3980314737 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t3980314737_m2148657966(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t3980314737 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t3980314737_m2148657966_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1832195516 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t1832195516_m30463097_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t1832195516 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t1832195516_m30463097(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t1832195516 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t1832195516_m30463097_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t4078114400 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t4078114400_m3954663469_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t4078114400 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t4078114400_m3954663469(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t4078114400 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t4078114400_m3954663469_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1840487222 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t1840487222_m3052601879_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t1840487222 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t1840487222_m3052601879(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t1840487222 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t1840487222_m3052601879_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t2545618620 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t2545618620_m3796936129_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t2545618620 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t2545618620_m3796936129(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t2545618620 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t2545618620_m3796936129_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3222658402 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t3222658402_m2129114587_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t3222658402 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t3222658402_m2129114587(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t3222658402 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t3222658402_m2129114587_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1944668977 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t1944668977_m2835209876_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t1944668977 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t1944668977_m2835209876(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t1944668977 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t1944668977_m2835209876_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3310123289 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyValuePair_2_t3310123289_m1077062852_gshared (Il2CppArray * __this, int32_t p0, KeyValuePair_2_t3310123289 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyValuePair_2_t3310123289_m1077062852(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, KeyValuePair_2_t3310123289 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyValuePair_2_t3310123289_m1077062852_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Link>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842(__this, ___item0, method) (( bool (*) (Il2CppArray *, Link_t2063667470 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Generic.Link>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisLink_t2063667470_m4096392498_gshared (Il2CppArray * __this, int32_t p0, Link_t2063667470 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisLink_t2063667470_m4096392498(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Link_t2063667470 *, const MethodInfo*))Array_GetGenericValueImpl_TisLink_t2063667470_m4096392498_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Hashtable/Slot>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726(__this, ___item0, method) (( bool (*) (Il2CppArray *, Slot_t2260530181 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.Hashtable/Slot>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisSlot_t2260530181_m2736456814_gshared (Il2CppArray * __this, int32_t p0, Slot_t2260530181 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisSlot_t2260530181_m2736456814(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Slot_t2260530181 *, const MethodInfo*))Array_GetGenericValueImpl_TisSlot_t2260530181_m2736456814_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.SortedList/Slot>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143(__this, ___item0, method) (( bool (*) (Il2CppArray *, Slot_t2072023290 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Collections.SortedList/Slot>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisSlot_t2072023290_m3490444401_gshared (Il2CppArray * __this, int32_t p0, Slot_t2072023290 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisSlot_t2072023290_m3490444401(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Slot_t2072023290 *, const MethodInfo*))Array_GetGenericValueImpl_TisSlot_t2072023290_m3490444401_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTime>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699(__this, ___item0, method) (( bool (*) (Il2CppArray *, DateTime_t4283661327 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.DateTime>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDateTime_t4283661327_m2360861859_gshared (Il2CppArray * __this, int32_t p0, DateTime_t4283661327 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDateTime_t4283661327_m2360861859(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DateTime_t4283661327 *, const MethodInfo*))Array_GetGenericValueImpl_TisDateTime_t4283661327_m2360861859_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Decimal>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983(__this, ___item0, method) (( bool (*) (Il2CppArray *, Decimal_t1954350631 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Decimal>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDecimal_t1954350631_m3301856137_gshared (Il2CppArray * __this, int32_t p0, Decimal_t1954350631 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDecimal_t1954350631_m3301856137(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Decimal_t1954350631 *, const MethodInfo*))Array_GetGenericValueImpl_TisDecimal_t1954350631_m3301856137_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Double>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225(__this, ___item0, method) (( bool (*) (Il2CppArray *, double, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Double>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDouble_t3868226565_m3240686553_gshared (Il2CppArray * __this, int32_t p0, double* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDouble_t3868226565_m3240686553(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, double*, const MethodInfo*))Array_GetGenericValueImpl_TisDouble_t3868226565_m3240686553_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int16>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914(__this, ___item0, method) (( bool (*) (Il2CppArray *, int16_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Int16>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisInt16_t1153838442_m2409481484_gshared (Il2CppArray * __this, int32_t p0, int16_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisInt16_t1153838442_m2409481484(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int16_t*, const MethodInfo*))Array_GetGenericValueImpl_TisInt16_t1153838442_m2409481484_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Int32>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisInt32_t1153838500_m1782932550_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisInt32_t1153838500_m1782932550(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisInt32_t1153838500_m1782932550_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int64>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627(__this, ___item0, method) (( bool (*) (Il2CppArray *, int64_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Int64>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisInt64_t1153838595_m386432805_gshared (Il2CppArray * __this, int32_t p0, int64_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisInt64_t1153838595_m386432805(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int64_t*, const MethodInfo*))Array_GetGenericValueImpl_TisInt64_t1153838595_m386432805_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.IntPtr>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735(__this, ___item0, method) (( bool (*) (Il2CppArray *, IntPtr_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.IntPtr>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisIntPtr_t_m3937090951_gshared (Il2CppArray * __this, int32_t p0, IntPtr_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisIntPtr_t_m3937090951(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, IntPtr_t*, const MethodInfo*))Array_GetGenericValueImpl_TisIntPtr_t_m3937090951_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Object>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207(__this, ___item0, method) (( bool (*) (Il2CppArray *, Il2CppObject *, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Object>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisIl2CppObject_m735189063_gshared (Il2CppArray * __this, int32_t p0, Il2CppObject ** p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisIl2CppObject_m735189063(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Il2CppObject **, const MethodInfo*))Array_GetGenericValueImpl_TisIl2CppObject_m735189063_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724(__this, ___item0, method) (( bool (*) (Il2CppArray *, CustomAttributeNamedArgument_t3059612989 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.CustomAttributeNamedArgument>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisCustomAttributeNamedArgument_t3059612989_m3008899942_gshared (Il2CppArray * __this, int32_t p0, CustomAttributeNamedArgument_t3059612989 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisCustomAttributeNamedArgument_t3059612989_m3008899942(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, CustomAttributeNamedArgument_t3059612989 *, const MethodInfo*))Array_GetGenericValueImpl_TisCustomAttributeNamedArgument_t3059612989_m3008899942_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085(__this, ___item0, method) (( bool (*) (Il2CppArray *, CustomAttributeTypedArgument_t3301293422 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.CustomAttributeTypedArgument>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisCustomAttributeTypedArgument_t3301293422_m2846288151_gshared (Il2CppArray * __this, int32_t p0, CustomAttributeTypedArgument_t3301293422 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisCustomAttributeTypedArgument_t3301293422_m2846288151(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, CustomAttributeTypedArgument_t3301293422 *, const MethodInfo*))Array_GetGenericValueImpl_TisCustomAttributeTypedArgument_t3301293422_m2846288151_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661(__this, ___item0, method) (( bool (*) (Il2CppArray *, LabelData_t3207823784 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.Emit.ILGenerator/LabelData>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisLabelData_t3207823784_m4249583967_gshared (Il2CppArray * __this, int32_t p0, LabelData_t3207823784 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisLabelData_t3207823784_m4249583967(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, LabelData_t3207823784 *, const MethodInfo*))Array_GetGenericValueImpl_TisLabelData_t3207823784_m4249583967_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459(__this, ___item0, method) (( bool (*) (Il2CppArray *, LabelFixup_t660379442 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.Emit.ILGenerator/LabelFixup>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisLabelFixup_t660379442_m482634139_gshared (Il2CppArray * __this, int32_t p0, LabelFixup_t660379442 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisLabelFixup_t660379442_m482634139(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, LabelFixup_t660379442 *, const MethodInfo*))Array_GetGenericValueImpl_TisLabelFixup_t660379442_m482634139_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILTokenInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530(__this, ___item0, method) (( bool (*) (Il2CppArray *, ILTokenInfo_t1354080954 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.Emit.ILTokenInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisILTokenInfo_t1354080954_m3036294916_gshared (Il2CppArray * __this, int32_t p0, ILTokenInfo_t1354080954 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisILTokenInfo_t1354080954_m3036294916(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ILTokenInfo_t1354080954 *, const MethodInfo*))Array_GetGenericValueImpl_TisILTokenInfo_t1354080954_m3036294916_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.ParameterModifier>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893(__this, ___item0, method) (( bool (*) (Il2CppArray *, ParameterModifier_t741930026 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Reflection.ParameterModifier>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisParameterModifier_t741930026_m950388357_gshared (Il2CppArray * __this, int32_t p0, ParameterModifier_t741930026 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisParameterModifier_t741930026_m950388357(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ParameterModifier_t741930026 *, const MethodInfo*))Array_GetGenericValueImpl_TisParameterModifier_t741930026_m950388357_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceReader/ResourceCacheItem>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730(__this, ___item0, method) (( bool (*) (Il2CppArray *, ResourceCacheItem_t2113902833 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Resources.ResourceReader/ResourceCacheItem>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisResourceCacheItem_t2113902833_m911034714_gshared (Il2CppArray * __this, int32_t p0, ResourceCacheItem_t2113902833 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisResourceCacheItem_t2113902833_m911034714(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ResourceCacheItem_t2113902833 *, const MethodInfo*))Array_GetGenericValueImpl_TisResourceCacheItem_t2113902833_m911034714_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceReader/ResourceInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999(__this, ___item0, method) (( bool (*) (Il2CppArray *, ResourceInfo_t4013605874 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Resources.ResourceReader/ResourceInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisResourceInfo_t4013605874_m4149525161_gshared (Il2CppArray * __this, int32_t p0, ResourceInfo_t4013605874 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisResourceInfo_t4013605874_m4149525161(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ResourceInfo_t4013605874 *, const MethodInfo*))Array_GetGenericValueImpl_TisResourceInfo_t4013605874_m4149525161_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Runtime.Serialization.Formatters.Binary.TypeTag>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisTypeTag_t2420703430_m1311091868_gshared (Il2CppArray * __this, int32_t p0, uint8_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisTypeTag_t2420703430_m1311091868(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, uint8_t*, const MethodInfo*))Array_GetGenericValueImpl_TisTypeTag_t2420703430_m1311091868_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.SByte>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473(__this, ___item0, method) (( bool (*) (Il2CppArray *, int8_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.SByte>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisSByte_t1161769777_m1632182611_gshared (Il2CppArray * __this, int32_t p0, int8_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisSByte_t1161769777_m1632182611(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int8_t*, const MethodInfo*))Array_GetGenericValueImpl_TisSByte_t1161769777_m1632182611_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301(__this, ___item0, method) (( bool (*) (Il2CppArray *, X509ChainStatus_t766901931 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Security.Cryptography.X509Certificates.X509ChainStatus>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisX509ChainStatus_t766901931_m1175622045_gshared (Il2CppArray * __this, int32_t p0, X509ChainStatus_t766901931 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisX509ChainStatus_t766901931_m1175622045(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, X509ChainStatus_t766901931 *, const MethodInfo*))Array_GetGenericValueImpl_TisX509ChainStatus_t766901931_m1175622045_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Single>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488(__this, ___item0, method) (( bool (*) (Il2CppArray *, float, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Single>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisSingle_t4291918972_m1387272912_gshared (Il2CppArray * __this, int32_t p0, float* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisSingle_t4291918972_m1387272912(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, float*, const MethodInfo*))Array_GetGenericValueImpl_TisSingle_t4291918972_m1387272912_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.Mark>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931(__this, ___item0, method) (( bool (*) (Il2CppArray *, Mark_t3811539797 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Text.RegularExpressions.Mark>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisMark_t3811539797_m2494808835_gshared (Il2CppArray * __this, int32_t p0, Mark_t3811539797 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisMark_t3811539797_m2494808835(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Mark_t3811539797 *, const MethodInfo*))Array_GetGenericValueImpl_TisMark_t3811539797_m2494808835_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.TimeSpan>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767(__this, ___item0, method) (( bool (*) (Il2CppArray *, TimeSpan_t413522987 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.TimeSpan>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisTimeSpan_t413522987_m2245336767_gshared (Il2CppArray * __this, int32_t p0, TimeSpan_t413522987 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisTimeSpan_t413522987_m2245336767(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, TimeSpan_t413522987 *, const MethodInfo*))Array_GetGenericValueImpl_TisTimeSpan_t413522987_m2245336767_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt16>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint16_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.UInt16>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUInt16_t24667923_m1140249575_gshared (Il2CppArray * __this, int32_t p0, uint16_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUInt16_t24667923_m1140249575(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, uint16_t*, const MethodInfo*))Array_GetGenericValueImpl_TisUInt16_t24667923_m1140249575_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt32>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.UInt32>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUInt32_t24667981_m513700641_gshared (Il2CppArray * __this, int32_t p0, uint32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUInt32_t24667981_m513700641(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, uint32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisUInt32_t24667981_m513700641_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt64>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint64_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.UInt64>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUInt64_t24668076_m3412168192_gshared (Il2CppArray * __this, int32_t p0, uint64_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUInt64_t24668076_m3412168192(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, uint64_t*, const MethodInfo*))Array_GetGenericValueImpl_TisUInt64_t24668076_m3412168192_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Uri/UriScheme>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820(__this, ___item0, method) (( bool (*) (Il2CppArray *, UriScheme_t1290668975 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Uri/UriScheme>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUriScheme_t1290668975_m4227749606_gshared (Il2CppArray * __this, int32_t p0, UriScheme_t1290668975 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUriScheme_t1290668975_m4227749606(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, UriScheme_t1290668975 *, const MethodInfo*))Array_GetGenericValueImpl_TisUriScheme_t1290668975_m4227749606_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNamespaceManager/NsDecl>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084(__this, ___item0, method) (( bool (*) (Il2CppArray *, NsDecl_t3658211563 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Xml.XmlNamespaceManager/NsDecl>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisNsDecl_t3658211563_m806024660_gshared (Il2CppArray * __this, int32_t p0, NsDecl_t3658211563 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisNsDecl_t3658211563_m806024660(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, NsDecl_t3658211563 *, const MethodInfo*))Array_GetGenericValueImpl_TisNsDecl_t3658211563_m806024660_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNamespaceManager/NsScope>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728(__this, ___item0, method) (( bool (*) (Il2CppArray *, NsScope_t1749213747 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<System.Xml.XmlNamespaceManager/NsScope>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisNsScope_t1749213747_m2130078634_gshared (Il2CppArray * __this, int32_t p0, NsScope_t1749213747 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisNsScope_t1749213747_m2130078634(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, NsScope_t1749213747 *, const MethodInfo*))Array_GetGenericValueImpl_TisNsScope_t1749213747_m2130078634_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<TypewriterEffect/FadeEntry>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458(__this, ___item0, method) (( bool (*) (Il2CppArray *, FadeEntry_t2858472101 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<TypewriterEffect/FadeEntry>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisFadeEntry_t2858472101_m371128732_gshared (Il2CppArray * __this, int32_t p0, FadeEntry_t2858472101 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisFadeEntry_t2858472101_m371128732(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, FadeEntry_t2858472101 *, const MethodInfo*))Array_GetGenericValueImpl_TisFadeEntry_t2858472101_m371128732_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UICamera/DepthEntry>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182(__this, ___item0, method) (( bool (*) (Il2CppArray *, DepthEntry_t1145614469 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UICamera/DepthEntry>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisDepthEntry_t1145614469_m479175854_gshared (Il2CppArray * __this, int32_t p0, DepthEntry_t1145614469 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisDepthEntry_t1145614469_m479175854(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, DepthEntry_t1145614469 *, const MethodInfo*))Array_GetGenericValueImpl_TisDepthEntry_t1145614469_m479175854_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.AnimatorStateInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018(__this, ___item0, method) (( bool (*) (Il2CppArray *, AnimatorStateInfo_t323110318 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.AnimatorStateInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisAnimatorStateInfo_t323110318_m175274058_gshared (Il2CppArray * __this, int32_t p0, AnimatorStateInfo_t323110318 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisAnimatorStateInfo_t323110318_m175274058(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, AnimatorStateInfo_t323110318 *, const MethodInfo*))Array_GetGenericValueImpl_TisAnimatorStateInfo_t323110318_m175274058_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Bounds>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081(__this, ___item0, method) (( bool (*) (Il2CppArray *, Bounds_t2711641849 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Bounds>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisBounds_t2711641849_m1678516003_gshared (Il2CppArray * __this, int32_t p0, Bounds_t2711641849 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisBounds_t2711641849_m1678516003(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Bounds_t2711641849 *, const MethodInfo*))Array_GetGenericValueImpl_TisBounds_t2711641849_m1678516003_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885(__this, ___item0, method) (( bool (*) (Il2CppArray *, Color_t4194546905 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Color>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisColor_t4194546905_m855411061_gshared (Il2CppArray * __this, int32_t p0, Color_t4194546905 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisColor_t4194546905_m855411061(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Color_t4194546905 *, const MethodInfo*))Array_GetGenericValueImpl_TisColor_t4194546905_m855411061_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color32>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700(__this, ___item0, method) (( bool (*) (Il2CppArray *, Color32_t598853688 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Color32>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisColor32_t598853688_m3930958100_gshared (Il2CppArray * __this, int32_t p0, Color32_t598853688 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisColor32_t598853688_m3930958100(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Color32_t598853688 *, const MethodInfo*))Array_GetGenericValueImpl_TisColor32_t598853688_m3930958100_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412(__this, ___item0, method) (( bool (*) (Il2CppArray *, ContactPoint_t243083348 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.ContactPoint>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisContactPoint_t243083348_m2683850686_gshared (Il2CppArray * __this, int32_t p0, ContactPoint_t243083348 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisContactPoint_t243083348_m2683850686(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ContactPoint_t243083348 *, const MethodInfo*))Array_GetGenericValueImpl_TisContactPoint_t243083348_m2683850686_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint2D>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342(__this, ___item0, method) (( bool (*) (Il2CppArray *, ContactPoint2D_t4288432358 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.ContactPoint2D>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisContactPoint2D_t4288432358_m1672251792_gshared (Il2CppArray * __this, int32_t p0, ContactPoint2D_t4288432358 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisContactPoint2D_t4288432358_m1672251792(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, ContactPoint2D_t4288432358 *, const MethodInfo*))Array_GetGenericValueImpl_TisContactPoint2D_t4288432358_m1672251792_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.EventSystems.RaycastResult>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastResult_t3762661364 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.EventSystems.RaycastResult>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisRaycastResult_t3762661364_m1415359984_gshared (Il2CppArray * __this, int32_t p0, RaycastResult_t3762661364 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisRaycastResult_t3762661364_m1415359984(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, RaycastResult_t3762661364 *, const MethodInfo*))Array_GetGenericValueImpl_TisRaycastResult_t3762661364_m1415359984_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Experimental.Director.Playable>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398(__this, ___item0, method) (( bool (*) (Il2CppArray *, Playable_t70832698 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Experimental.Director.Playable>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisPlayable_t70832698_m1198673176_gshared (Il2CppArray * __this, int32_t p0, Playable_t70832698 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisPlayable_t70832698_m1198673176(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Playable_t70832698 *, const MethodInfo*))Array_GetGenericValueImpl_TisPlayable_t70832698_m1198673176_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.KeyCode>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.KeyCode>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyCode_t3128317986_m1812275198_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyCode_t3128317986_m1812275198(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisKeyCode_t3128317986_m1812275198_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Keyframe>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402(__this, ___item0, method) (( bool (*) (Il2CppArray *, Keyframe_t4079056114 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Keyframe>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisKeyframe_t4079056114_m3275637980_gshared (Il2CppArray * __this, int32_t p0, Keyframe_t4079056114 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisKeyframe_t4079056114_m3275637980(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Keyframe_t4079056114 *, const MethodInfo*))Array_GetGenericValueImpl_TisKeyframe_t4079056114_m3275637980_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ParticleSystem/Particle>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298(__this, ___item0, method) (( bool (*) (Il2CppArray *, Particle_t405273609 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.ParticleSystem/Particle>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisParticle_t405273609_m3240219698_gshared (Il2CppArray * __this, int32_t p0, Particle_t405273609 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisParticle_t405273609_m3240219698(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Particle_t405273609 *, const MethodInfo*))Array_GetGenericValueImpl_TisParticle_t405273609_m3240219698_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastHit_t4003175726 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.RaycastHit>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisRaycastHit_t4003175726_m1822174552_gshared (Il2CppArray * __this, int32_t p0, RaycastHit_t4003175726 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisRaycastHit_t4003175726_m1822174552(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, RaycastHit_t4003175726 *, const MethodInfo*))Array_GetGenericValueImpl_TisRaycastHit_t4003175726_m1822174552_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit2D>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastHit2D_t1374744384 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.RaycastHit2D>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisRaycastHit2D_t1374744384_m2530175146_gshared (Il2CppArray * __this, int32_t p0, RaycastHit2D_t1374744384 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisRaycastHit2D_t1374744384_m2530175146(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, RaycastHit2D_t1374744384 *, const MethodInfo*))Array_GetGenericValueImpl_TisRaycastHit2D_t1374744384_m2530175146_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590(__this, ___item0, method) (( bool (*) (Il2CppArray *, RenderTargetIdentifier_t1322160672 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Rendering.RenderTargetIdentifier>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisRenderTargetIdentifier_t1322160672_m1108301568_gshared (Il2CppArray * __this, int32_t p0, RenderTargetIdentifier_t1322160672 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisRenderTargetIdentifier_t1322160672_m1108301568(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, RenderTargetIdentifier_t1322160672 *, const MethodInfo*))Array_GetGenericValueImpl_TisRenderTargetIdentifier_t1322160672_m1108301568_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738(__this, ___item0, method) (( bool (*) (Il2CppArray *, HitInfo_t3209134097 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.SendMouseEvents/HitInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisHitInfo_t3209134097_m3860792378_gshared (Il2CppArray * __this, int32_t p0, HitInfo_t3209134097 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisHitInfo_t3209134097_m3860792378(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, HitInfo_t3209134097 *, const MethodInfo*))Array_GetGenericValueImpl_TisHitInfo_t3209134097_m3860792378_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661(__this, ___item0, method) (( bool (*) (Il2CppArray *, GcAchievementData_t3481375915 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisGcAchievementData_t3481375915_m989090367_gshared (Il2CppArray * __this, int32_t p0, GcAchievementData_t3481375915 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisGcAchievementData_t3481375915_m989090367(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, GcAchievementData_t3481375915 *, const MethodInfo*))Array_GetGenericValueImpl_TisGcAchievementData_t3481375915_m989090367_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240(__this, ___item0, method) (( bool (*) (Il2CppArray *, GcScoreData_t2181296590 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisGcScoreData_t2181296590_m4057734434_gshared (Il2CppArray * __this, int32_t p0, GcScoreData_t2181296590 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisGcScoreData_t2181296590_m4057734434(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, GcScoreData_t2181296590 *, const MethodInfo*))Array_GetGenericValueImpl_TisGcScoreData_t2181296590_m4057734434_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Touch>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897(__this, ___item0, method) (( bool (*) (Il2CppArray *, Touch_t4210255029 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Touch>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisTouch_t4210255029_m3383866193_gshared (Il2CppArray * __this, int32_t p0, Touch_t4210255029 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisTouch_t4210255029_m3383866193(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Touch_t4210255029 *, const MethodInfo*))Array_GetGenericValueImpl_TisTouch_t4210255029_m3383866193_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/ContentType>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.UI.InputField/ContentType>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisContentType_t2662964855_m2904454496_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisContentType_t2662964855_m2904454496(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisContentType_t2662964855_m2904454496_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UICharInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668(__this, ___item0, method) (( bool (*) (Il2CppArray *, UICharInfo_t65807484 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.UICharInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUICharInfo_t65807484_m972947878_gshared (Il2CppArray * __this, int32_t p0, UICharInfo_t65807484 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUICharInfo_t65807484_m972947878(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, UICharInfo_t65807484 *, const MethodInfo*))Array_GetGenericValueImpl_TisUICharInfo_t65807484_m972947878_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UILineInfo>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754(__this, ___item0, method) (( bool (*) (Il2CppArray *, UILineInfo_t4113875482 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.UILineInfo>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUILineInfo_t4113875482_m1279108164_gshared (Il2CppArray * __this, int32_t p0, UILineInfo_t4113875482 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUILineInfo_t4113875482_m1279108164(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, UILineInfo_t4113875482 *, const MethodInfo*))Array_GetGenericValueImpl_TisUILineInfo_t4113875482_m1279108164_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UIVertex>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084(__this, ___item0, method) (( bool (*) (Il2CppArray *, UIVertex_t4244065212 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.UIVertex>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisUIVertex_t4244065212_m1585369766_gshared (Il2CppArray * __this, int32_t p0, UIVertex_t4244065212 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisUIVertex_t4244065212_m1585369766(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, UIVertex_t4244065212 *, const MethodInfo*))Array_GetGenericValueImpl_TisUIVertex_t4244065212_m1585369766_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector2>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector2_t4282066565 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Vector2>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisVector2_t4282066565_m2608717537_gshared (Il2CppArray * __this, int32_t p0, Vector2_t4282066565 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisVector2_t4282066565_m2608717537(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Vector2_t4282066565 *, const MethodInfo*))Array_GetGenericValueImpl_TisVector2_t4282066565_m2608717537_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector3>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector3_t4282066566 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Vector3>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisVector3_t4282066566_m2820068450_gshared (Il2CppArray * __this, int32_t p0, Vector3_t4282066566 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisVector3_t4282066566_m2820068450(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Vector3_t4282066566 *, const MethodInfo*))Array_GetGenericValueImpl_TisVector3_t4282066566_m2820068450_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector4>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector4_t4282066567 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.Vector4>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisVector4_t4282066567_m3031419363_gshared (Il2CppArray * __this, int32_t p0, Vector4_t4282066567 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisVector4_t4282066567_m3031419363(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Vector4_t4282066567 *, const MethodInfo*))Array_GetGenericValueImpl_TisVector4_t4282066567_m3031419363_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.VR.VRDeviceType>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityEngine.VR.VRDeviceType>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisVRDeviceType_t4084270792_m3705222320_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisVRDeviceType_t4084270792_m3705222320(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisVRDeviceType_t4084270792_m3705222320_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820(__this, ___item0, method) (( bool (*) (Il2CppArray *, QualitySettings_t2308822883 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisQualitySettings_t2308822883_m3100190924_gshared (Il2CppArray * __this, int32_t p0, QualitySettings_t2308822883 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisQualitySettings_t2308822883_m3100190924(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, QualitySettings_t2308822883 *, const MethodInfo*))Array_GetGenericValueImpl_TisQualitySettings_t2308822883_m3100190924_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809(__this, ___item0, method) (( bool (*) (Il2CppArray *, Preset_t8910124 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityStandardAssets.CinematicEffects.FXAA/Preset>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisPreset_t8910124_m2378262371_gshared (Il2CppArray * __this, int32_t p0, Preset_t8910124 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisPreset_t8910124_m2378262371(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, Preset_t8910124 *, const MethodInfo*))Array_GetGenericValueImpl_TisPreset_t8910124_m2378262371_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086(__this, ___item0, method) (( bool (*) (Il2CppArray *, QualitySettings_t2868270621 , const MethodInfo*))Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisQualitySettings_t2868270621_m4076789638_gshared (Il2CppArray * __this, int32_t p0, QualitySettings_t2868270621 * p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisQualitySettings_t2868270621_m4076789638(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, QualitySettings_t2868270621 *, const MethodInfo*))Array_GetGenericValueImpl_TisQualitySettings_t2868270621_m4076789638_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Contains<WMG_Data_Source/WMG_VariableTypes>(T) extern "C" bool Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099_gshared)(__this, ___item0, method) // System.Void System.Array::GetGenericValueImpl<WMG_Data_Source/WMG_VariableTypes>(System.Int32,!!0&) extern "C" void Array_GetGenericValueImpl_TisWMG_VariableTypes_t4265297442_m3683657227_gshared (Il2CppArray * __this, int32_t p0, int32_t* p1, const MethodInfo* method); #define Array_GetGenericValueImpl_TisWMG_VariableTypes_t4265297442_m3683657227(__this, p0, p1, method) (( void (*) (Il2CppArray *, int32_t, int32_t*, const MethodInfo*))Array_GetGenericValueImpl_TisWMG_VariableTypes_t4265297442_m3683657227_gshared)(__this, p0, p1, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/Contacts>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206(__this, ___item0, method) (( bool (*) (Il2CppArray *, Contacts_t352143704 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/detailsProperty>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322(__this, ___item0, method) (( bool (*) (Il2CppArray *, detailsProperty_t1057943986 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/DeviceDetailedInformation>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceDetailedInformation_t4234054081 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/surveyProperty>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370(__this, ___item0, method) (( bool (*) (Il2CppArray *, surveyProperty_t884569204 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceDetailedInformation_t3668321760 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517(__this, ___item0, method) (( bool (*) (Il2CppArray *, DeviceProperties_t2492701999 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933(__this, ___item0, method) (( bool (*) (Il2CppArray *, peopleOrderPatrol_t4292956421 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919(__this, ___item0, method) (( bool (*) (Il2CppArray *, peoplePatrol_t2522972577 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306(__this, ___item0, method) (( bool (*) (Il2CppArray *, StaffInformatino_t2939901716 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600(__this, ___item0, method) (( bool (*) (Il2CppArray *, ControlPoint_t3116362155 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<HighlightingSystem.Highlighter/Mode>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<HighlightingSystem.HighlighterRenderer/Data>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868(__this, ___item0, method) (( bool (*) (Il2CppArray *, Data_t3265512710 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.ArrayMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799(__this, ___item0, method) (( bool (*) (Il2CppArray *, ArrayMetadata_t4058342910 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.ObjectMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613(__this, ___item0, method) (( bool (*) (Il2CppArray *, ObjectMetadata_t2009294498 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.PropertyMetadata>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979(__this, ___item0, method) (( bool (*) (Il2CppArray *, PropertyMetadata_t4066634616 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145(__this, ___item0, method) (( bool (*) (Il2CppArray *, TableRange_t3372848153 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Security.Uri/UriScheme>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433(__this, ___item0, method) (( bool (*) (Il2CppArray *, UriScheme_t3372318283 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Xml2.XmlTextReader/TagName>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659(__this, ___item0, method) (( bool (*) (Il2CppArray *, TagName_t2016006645 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<PresetSelector/Preset>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822(__this, ___item0, method) (( bool (*) (Il2CppArray *, Preset_t2393284144 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.ArraySegment`1<System.Byte>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041(__this, ___item0, method) (( bool (*) (Il2CppArray *, ArraySegment_1_t2188033608 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Boolean>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697(__this, ___item0, method) (( bool (*) (Il2CppArray *, bool, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Byte>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Char>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163(__this, ___item0, method) (( bool (*) (Il2CppArray *, Il2CppChar, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.DictionaryEntry>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996(__this, ___item0, method) (( bool (*) (Il2CppArray *, DictionaryEntry_t1751606614 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321(__this, ___item0, method) (( bool (*) (Il2CppArray *, Link_t2122599155 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1049882445 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t4066860316 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3980314737 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1832195516 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t4078114400 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1840487222 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t2545618620 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3222658402 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t1944668977 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809(__this, ___item0, method) (( bool (*) (Il2CppArray *, KeyValuePair_2_t3310123289 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Link>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679(__this, ___item0, method) (( bool (*) (Il2CppArray *, Link_t2063667470 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Hashtable/Slot>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915(__this, ___item0, method) (( bool (*) (Il2CppArray *, Slot_t2260530181 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.SortedList/Slot>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994(__this, ___item0, method) (( bool (*) (Il2CppArray *, Slot_t2072023290 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTime>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536(__this, ___item0, method) (( bool (*) (Il2CppArray *, DateTime_t4283661327 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Decimal>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506(__this, ___item0, method) (( bool (*) (Il2CppArray *, Decimal_t1954350631 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Double>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446(__this, ___item0, method) (( bool (*) (Il2CppArray *, double, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int16>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773(__this, ___item0, method) (( bool (*) (Il2CppArray *, int16_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int64>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486(__this, ___item0, method) (( bool (*) (Il2CppArray *, int64_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.IntPtr>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956(__this, ___item0, method) (( bool (*) (Il2CppArray *, IntPtr_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Object>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428(__this, ___item0, method) (( bool (*) (Il2CppArray *, Il2CppObject *, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447(__this, ___item0, method) (( bool (*) (Il2CppArray *, CustomAttributeNamedArgument_t3059612989 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808(__this, ___item0, method) (( bool (*) (Il2CppArray *, CustomAttributeTypedArgument_t3301293422 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376(__this, ___item0, method) (( bool (*) (Il2CppArray *, LabelData_t3207823784 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032(__this, ___item0, method) (( bool (*) (Il2CppArray *, LabelFixup_t660379442 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILTokenInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677(__this, ___item0, method) (( bool (*) (Il2CppArray *, ILTokenInfo_t1354080954 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.ParameterModifier>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602(__this, ___item0, method) (( bool (*) (Il2CppArray *, ParameterModifier_t741930026 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceReader/ResourceCacheItem>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711(__this, ___item0, method) (( bool (*) (Il2CppArray *, ResourceCacheItem_t2113902833 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceReader/ResourceInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714(__this, ___item0, method) (( bool (*) (Il2CppArray *, ResourceInfo_t4013605874 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.SByte>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332(__this, ___item0, method) (( bool (*) (Il2CppArray *, int8_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802(__this, ___item0, method) (( bool (*) (Il2CppArray *, X509ChainStatus_t766901931 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Single>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709(__this, ___item0, method) (( bool (*) (Il2CppArray *, float, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.Mark>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640(__this, ___item0, method) (( bool (*) (Il2CppArray *, Mark_t3811539797 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.TimeSpan>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604(__this, ___item0, method) (( bool (*) (Il2CppArray *, TimeSpan_t413522987 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt16>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint16_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt32>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt64>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949(__this, ___item0, method) (( bool (*) (Il2CppArray *, uint64_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Uri/UriScheme>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959(__this, ___item0, method) (( bool (*) (Il2CppArray *, UriScheme_t1290668975 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNamespaceManager/NsDecl>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577(__this, ___item0, method) (( bool (*) (Il2CppArray *, NsDecl_t3658211563 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNamespaceManager/NsScope>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451(__this, ___item0, method) (( bool (*) (Il2CppArray *, NsScope_t1749213747 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<TypewriterEffect/FadeEntry>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613(__this, ___item0, method) (( bool (*) (Il2CppArray *, FadeEntry_t2858472101 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UICamera/DepthEntry>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539(__this, ___item0, method) (( bool (*) (Il2CppArray *, DepthEntry_t1145614469 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.AnimatorStateInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735(__this, ___item0, method) (( bool (*) (Il2CppArray *, AnimatorStateInfo_t323110318 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Bounds>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604(__this, ___item0, method) (( bool (*) (Il2CppArray *, Bounds_t2711641849 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866(__this, ___item0, method) (( bool (*) (Il2CppArray *, Color_t4194546905 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color32>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057(__this, ___item0, method) (( bool (*) (Il2CppArray *, Color32_t598853688 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231(__this, ___item0, method) (( bool (*) (Il2CppArray *, ContactPoint_t243083348 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint2D>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793(__this, ___item0, method) (( bool (*) (Il2CppArray *, ContactPoint2D_t4288432358 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.EventSystems.RaycastResult>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastResult_t3762661364 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Experimental.Director.Playable>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457(__this, ___item0, method) (( bool (*) (Il2CppArray *, Playable_t70832698 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.KeyCode>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Keyframe>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541(__this, ___item0, method) (( bool (*) (Il2CppArray *, Keyframe_t4079056114 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ParticleSystem/Particle>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711(__this, ___item0, method) (( bool (*) (Il2CppArray *, Particle_t405273609 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastHit_t4003175726 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit2D>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123(__this, ___item0, method) (( bool (*) (Il2CppArray *, RaycastHit2D_t1374744384 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305(__this, ___item0, method) (( bool (*) (Il2CppArray *, RenderTargetIdentifier_t1322160672 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447(__this, ___item0, method) (( bool (*) (Il2CppArray *, HitInfo_t3209134097 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128(__this, ___item0, method) (( bool (*) (Il2CppArray *, GcAchievementData_t3481375915 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763(__this, ___item0, method) (( bool (*) (Il2CppArray *, GcScoreData_t2181296590 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Touch>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878(__this, ___item0, method) (( bool (*) (Il2CppArray *, Touch_t4210255029 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/ContentType>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UICharInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239(__this, ___item0, method) (( bool (*) (Il2CppArray *, UICharInfo_t65807484 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UILineInfo>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621(__this, ___item0, method) (( bool (*) (Il2CppArray *, UILineInfo_t4113875482 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UIVertex>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223(__this, ___item0, method) (( bool (*) (Il2CppArray *, UIVertex_t4244065212 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector2>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector2_t4282066565 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector3>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector3_t4282066566 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector4>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232(__this, ___item0, method) (( bool (*) (Il2CppArray *, Vector4_t4282066567 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.VR.VRDeviceType>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001(__this, ___item0, method) (( bool (*) (Il2CppArray *, QualitySettings_t2308822883 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580(__this, ___item0, method) (( bool (*) (Il2CppArray *, Preset_t8910124 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523(__this, ___item0, method) (( bool (*) (Il2CppArray *, QualitySettings_t2868270621 , const MethodInfo*))Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523_gshared)(__this, ___item0, method) // System.Boolean System.Array::InternalArray__ICollection_Remove<WMG_Data_Source/WMG_VariableTypes>(T) extern "C" bool Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288(__this, ___item0, method) (( bool (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288_gshared)(__this, ___item0, method) // System.Boolean System.Array::TrueForAll<System.Object>(T[],System.Predicate`1<T>) extern "C" bool Array_TrueForAll_TisIl2CppObject_m1820975745_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method); #define Array_TrueForAll_TisIl2CppObject_m1820975745(__this /* static, unused */, ___array0, ___match1, method) (( bool (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Predicate_1_t3781873254 *, const MethodInfo*))Array_TrueForAll_TisIl2CppObject_m1820975745_gshared)(__this /* static, unused */, ___array0, ___match1, method) // System.Boolean UnityEngine.EventSystems.ExecuteEvents::CanHandleEvent<System.Object>(UnityEngine.GameObject) extern "C" bool ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___go0, const MethodInfo* method); #define ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177(__this /* static, unused */, ___go0, method) (( bool (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, const MethodInfo*))ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177_gshared)(__this /* static, unused */, ___go0, method) // System.Void UnityEngine.EventSystems.ExecuteEvents::GetEventList<System.Object>(UnityEngine.GameObject,System.Collections.Generic.IList`1<UnityEngine.EventSystems.IEventSystemHandler>) extern "C" void ExecuteEvents_GetEventList_TisIl2CppObject_m399588305_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * p0, Il2CppObject* p1, const MethodInfo* method); #define ExecuteEvents_GetEventList_TisIl2CppObject_m399588305(__this /* static, unused */, p0, p1, method) (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, Il2CppObject*, const MethodInfo*))ExecuteEvents_GetEventList_TisIl2CppObject_m399588305_gshared)(__this /* static, unused */, p0, p1, method) // System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) extern "C" bool ExecuteEvents_Execute_TisIl2CppObject_m1533897725_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___target0, BaseEventData_t2054899105 * ___eventData1, EventFunction_1_t864200549 * ___functor2, const MethodInfo* method); #define ExecuteEvents_Execute_TisIl2CppObject_m1533897725(__this /* static, unused */, ___target0, ___eventData1, ___functor2, method) (( bool (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, BaseEventData_t2054899105 *, EventFunction_1_t864200549 *, const MethodInfo*))ExecuteEvents_Execute_TisIl2CppObject_m1533897725_gshared)(__this /* static, unused */, ___target0, ___eventData1, ___functor2, method) // System.Boolean UnityEngine.EventSystems.ExecuteEvents::ShouldSendToComponent<System.Object>(UnityEngine.Component) extern "C" bool ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620_gshared (Il2CppObject * __this /* static, unused */, Component_t3501516275 * ___component0, const MethodInfo* method); #define ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620(__this /* static, unused */, ___component0, method) (( bool (*) (Il2CppObject * /* static, unused */, Component_t3501516275 *, const MethodInfo*))ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620_gshared)(__this /* static, unused */, ___component0, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<System.Object>(T&,T) extern "C" bool SetPropertyUtility_SetClass_TisIl2CppObject_m3004757678_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject ** ___currentValue0, Il2CppObject * ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetClass_TisIl2CppObject_m3004757678(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, Il2CppObject **, Il2CppObject *, const MethodInfo*))SetPropertyUtility_SetClass_TisIl2CppObject_m3004757678_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<System.Object>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisIl2CppObject_m685297595_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject ** ___currentValue0, Il2CppObject * ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetEquatableStruct_TisIl2CppObject_m685297595(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, Il2CppObject **, Il2CppObject *, const MethodInfo*))SetPropertyUtility_SetEquatableStruct_TisIl2CppObject_m685297595_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.ColorBlock>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisColorBlock_t508458230_m3999144268_gshared (Il2CppObject * __this /* static, unused */, ColorBlock_t508458230 * ___currentValue0, ColorBlock_t508458230 ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetEquatableStruct_TisColorBlock_t508458230_m3999144268(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, ColorBlock_t508458230 *, ColorBlock_t508458230 , const MethodInfo*))SetPropertyUtility_SetEquatableStruct_TisColorBlock_t508458230_m3999144268_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.Navigation>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisNavigation_t1108456480_m3717372898_gshared (Il2CppObject * __this /* static, unused */, Navigation_t1108456480 * ___currentValue0, Navigation_t1108456480 ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetEquatableStruct_TisNavigation_t1108456480_m3717372898(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, Navigation_t1108456480 *, Navigation_t1108456480 , const MethodInfo*))SetPropertyUtility_SetEquatableStruct_TisNavigation_t1108456480_m3717372898_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.SpriteState>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisSpriteState_t2895308594_m1850844776_gshared (Il2CppObject * __this /* static, unused */, SpriteState_t2895308594 * ___currentValue0, SpriteState_t2895308594 ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetEquatableStruct_TisSpriteState_t2895308594_m1850844776(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, SpriteState_t2895308594 *, SpriteState_t2895308594 , const MethodInfo*))SetPropertyUtility_SetEquatableStruct_TisSpriteState_t2895308594_m1850844776_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Boolean>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisBoolean_t476798718_m1242031768_gshared (Il2CppObject * __this /* static, unused */, bool* ___currentValue0, bool ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisBoolean_t476798718_m1242031768(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, bool*, bool, const MethodInfo*))SetPropertyUtility_SetStruct_TisBoolean_t476798718_m1242031768_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Char>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisChar_t2862622538_m1002094612_gshared (Il2CppObject * __this /* static, unused */, Il2CppChar* ___currentValue0, Il2CppChar ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisChar_t2862622538_m1002094612(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, Il2CppChar*, Il2CppChar, const MethodInfo*))SetPropertyUtility_SetStruct_TisChar_t2862622538_m1002094612_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisInt32_t1153838500_m3219417906_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisInt32_t1153838500_m3219417906(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisInt32_t1153838500_m3219417906_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisSingle_t4291918972_m1643007650_gshared (Il2CppObject * __this /* static, unused */, float* ___currentValue0, float ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisSingle_t4291918972_m1643007650(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, float*, float, const MethodInfo*))SetPropertyUtility_SetStruct_TisSingle_t4291918972_m1643007650_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.TouchScreenKeyboardType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t2604324130_m1392536308_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t2604324130_m1392536308(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t2604324130_m1392536308_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.AspectRatioFitter/AspectMode>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisAspectMode_t2149445162_m800854655_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisAspectMode_t2149445162_m800854655(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisAspectMode_t2149445162_m800854655_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ContentSizeFitter/FitMode>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisFitMode_t909765868_m3401974325_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisFitMode_t909765868_m3401974325(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisFitMode_t909765868_m3401974325_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/FillMethod>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisFillMethod_t2255824731_m1922094766_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisFillMethod_t2255824731_m1922094766(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisFillMethod_t2255824731_m1922094766_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/Type>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisType_t3063828369_m3981732792_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisType_t3063828369_m3981732792(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisType_t3063828369_m3981732792_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/CharacterValidation>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisCharacterValidation_t737650598_m3080620675_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisCharacterValidation_t737650598_m3080620675(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisCharacterValidation_t737650598_m3080620675_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/ContentType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisContentType_t2662964855_m3459087122_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisContentType_t2662964855_m3459087122(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisContentType_t2662964855_m3459087122_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/InputType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisInputType_t1602890312_m2495306657_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisInputType_t1602890312_m2495306657(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisInputType_t1602890312_m2495306657_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/LineType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisLineType_t2016592042_m1761448119_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisLineType_t2016592042_m1761448119(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisLineType_t2016592042_m1761448119_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Scrollbar/Direction>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisDirection_t522766867_m1391770542_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisDirection_t522766867_m1391770542(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisDirection_t522766867_m1391770542_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Selectable/Transition>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisTransition_t1922345195_m697175766_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisTransition_t1922345195_m697175766(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisTransition_t1922345195_m697175766_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Slider/Direction>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisDirection_t94975348_m2722180853_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method); #define SetPropertyUtility_SetStruct_TisDirection_t94975348_m2722180853(__this /* static, unused */, ___currentValue0, ___newValue1, method) (( bool (*) (Il2CppObject * /* static, unused */, int32_t*, int32_t, const MethodInfo*))SetPropertyUtility_SetStruct_TisDirection_t94975348_m2722180853_gshared)(__this /* static, unused */, ___currentValue0, ___newValue1, method) // System.Boolean WMG_Data_Source::removeDataProviderFromList<System.Object>(T) extern "C" bool WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * ___dataProvider0, const MethodInfo* method); #define WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366(__this, ___dataProvider0, method) (( bool (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, const MethodInfo*))WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366_gshared)(__this, ___dataProvider0, method) // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::CreateDistinctIterator<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEqualityComparer`1<TSource>) extern "C" Il2CppObject* Enumerable_CreateDistinctIterator_TisIl2CppObject_m3793020512_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Il2CppObject* ___comparer1, const MethodInfo* method); #define Enumerable_CreateDistinctIterator_TisIl2CppObject_m3793020512(__this /* static, unused */, ___source0, ___comparer1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Il2CppObject*, const MethodInfo*))Enumerable_CreateDistinctIterator_TisIl2CppObject_m3793020512_gshared)(__this /* static, unused */, ___source0, ___comparer1, method) // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::CreateWhereIterator<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" Il2CppObject* Enumerable_CreateWhereIterator_TisIl2CppObject_m2204352327_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t785513668 * ___predicate1, const MethodInfo* method); #define Enumerable_CreateWhereIterator_TisIl2CppObject_m2204352327(__this /* static, unused */, ___source0, ___predicate1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t785513668 *, const MethodInfo*))Enumerable_CreateWhereIterator_TisIl2CppObject_m2204352327_gshared)(__this /* static, unused */, ___source0, ___predicate1, method) // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Distinct<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" Il2CppObject* Enumerable_Distinct_TisIl2CppObject_m204074613_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method); #define Enumerable_Distinct_TisIl2CppObject_m204074613(__this /* static, unused */, ___source0, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, const MethodInfo*))Enumerable_Distinct_TisIl2CppObject_m204074613_gshared)(__this /* static, unused */, ___source0, method) // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Distinct<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Collections.Generic.IEqualityComparer`1<!!0>) extern "C" Il2CppObject* Enumerable_Distinct_TisIl2CppObject_m4180032182_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Il2CppObject* p1, const MethodInfo* method); #define Enumerable_Distinct_TisIl2CppObject_m4180032182(__this /* static, unused */, p0, p1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Il2CppObject*, const MethodInfo*))Enumerable_Distinct_TisIl2CppObject_m4180032182_gshared)(__this /* static, unused */, p0, p1, method) // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" Il2CppObject* Enumerable_Where_TisIl2CppObject_m3480373697_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t785513668 * ___predicate1, const MethodInfo* method); #define Enumerable_Where_TisIl2CppObject_m3480373697(__this /* static, unused */, ___source0, ___predicate1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t785513668 *, const MethodInfo*))Enumerable_Where_TisIl2CppObject_m3480373697_gshared)(__this /* static, unused */, ___source0, ___predicate1, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/Contacts>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContacts_t352143704_m2487862572_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisContacts_t352143704_m2487862572(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisContacts_t352143704_m2487862572_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/detailsProperty>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisdetailsProperty_t1057943986_m3959762792_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisdetailsProperty_t1057943986_m3959762792(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisdetailsProperty_t1057943986_m3959762792_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/DeviceDetailedInformation>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t4234054081_m2452333369_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t4234054081_m2452333369(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t4234054081_m2452333369_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/surveyProperty>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TissurveyProperty_t884569204_m2542193872_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TissurveyProperty_t884569204_m2542193872(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TissurveyProperty_t884569204_m2542193872_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t3668321760_m1422211194_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t3668321760_m1422211194(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t3668321760_m1422211194_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/DeviceProperties>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceProperties_t2492701999_m52045621_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceProperties_t2492701999_m52045621(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceProperties_t2492701999_m52045621_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/peopleOrderPatrol>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TispeopleOrderPatrol_t4292956421_m3008285237_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TispeopleOrderPatrol_t4292956421_m3008285237(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TispeopleOrderPatrol_t4292956421_m3008285237_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/peoplePatrol>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TispeoplePatrol_t2522972577_m1130160131_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TispeoplePatrol_t2522972577_m1130160131(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TispeoplePatrol_t2522972577_m1130160131_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/StaffInformatino>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisStaffInformatino_t2939901716_m3885229872_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisStaffInformatino_t2939901716_m3885229872(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisStaffInformatino_t2939901716_m3885229872_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<DG.Tweening.Plugins.Core.PathCore.ControlPoint>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisControlPoint_t3116362155_m349358386_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisControlPoint_t3116362155_m349358386(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisControlPoint_t3116362155_m349358386_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<HighlightingSystem.Highlighter/Mode>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMode_t2711727618_m747023234_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisMode_t2711727618_m747023234(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisMode_t2711727618_m747023234_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<HighlightingSystem.HighlighterRenderer/Data>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisData_t3265512710_m807284990_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisData_t3265512710_m807284990(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisData_t3265512710_m807284990_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.ArrayMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisArrayMetadata_t4058342910_m4172345867_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisArrayMetadata_t4058342910_m4172345867(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisArrayMetadata_t4058342910_m4172345867_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.ObjectMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisObjectMetadata_t2009294498_m3591895037_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisObjectMetadata_t2009294498_m3591895037(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisObjectMetadata_t2009294498_m3591895037_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.PropertyMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPropertyMetadata_t4066634616_m107966631_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisPropertyMetadata_t4066634616_m107966631(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisPropertyMetadata_t4066634616_m107966631_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Globalization.Unicode.CodePointIndexer/TableRange>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t3372848153_m52511713_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t3372848153_m52511713(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t3372848153_m52511713_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t3167042548_m4216830833_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t3167042548_m4216830833(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t3167042548_m4216830833_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Security.Uri/UriScheme>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3372318283_m1119346585_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3372318283_m1119346585(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3372318283_m1119346585_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Xml2.XmlTextReader/TagName>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTagName_t2016006645_m1267886383_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisTagName_t2016006645_m1267886383(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisTagName_t2016006645_m1267886383_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<PresetSelector/Preset>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t2393284144_m1955733844_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t2393284144_m1955733844(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t2393284144_m1955733844_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ArraySegment`1<System.Byte>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisArraySegment_1_t2188033608_m193853649_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisArraySegment_1_t2188033608_m193853649(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisArraySegment_1_t2188033608_m193853649_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Boolean>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t476798718_m2364889489_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t476798718_m2364889489(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t476798718_m2364889489_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Byte>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2862609660_m446732541_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2862609660_m446732541(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2862609660_m446732541_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Char>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t2862622538_m830381039_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t2862622538_m830381039(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t2862622538_m830381039_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.DictionaryEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1751606614_m2267892694_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1751606614_m2267892694(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1751606614_m2267892694_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Link<System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2122599155_m2846012081_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2122599155_m2846012081(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2122599155_m2846012081_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1049882445_m3020603993_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1049882445_m3020603993(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1049882445_m3020603993_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4066860316_m814975926_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4066860316_m814975926(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4066860316_m814975926_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3980314737_m1932401055_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3980314737_m1932401055(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3980314737_m1932401055_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1832195516_m1811490520_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1832195516_m1811490520(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1832195516_m1811490520_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4078114400_m1875669440_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4078114400_m1875669440(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4078114400_m1875669440_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1840487222_m628892438_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1840487222_m628892438(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1840487222_m628892438_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2545618620_m3126136748_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2545618620_m3126136748(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2545618620_m3126136748_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3222658402_m1161245650_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3222658402_m1161245650(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3222658402_m1161245650_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1944668977_m3304409437_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1944668977_m3304409437(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1944668977_m3304409437_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3310123289_m2221171017_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3310123289_m2221171017(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3310123289_m2221171017_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Link>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2063667470_m2650343963_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2063667470_m2650343963(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2063667470_m2650343963_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Hashtable/Slot>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2260530181_m3412983775_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2260530181_m3412983775(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2260530181_m3412983775_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.SortedList/Slot>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2072023290_m2167655136_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2072023290_m2167655136(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2072023290_m2167655136_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTime>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t4283661327_m2013907594_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t4283661327_m2013907594(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t4283661327_m2013907594_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Decimal>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t1954350631_m994112968_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t1954350631_m994112968(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t1954350631_m994112968_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Double>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t3868226565_m1091003412_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t3868226565_m1091003412(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t3868226565_m1091003412_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int16>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t1153838442_m3352698469_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t1153838442_m3352698469(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t1153838442_m3352698469_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t1153838500_m3354426347_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t1153838500_m3354426347(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t1153838500_m3354426347_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int64>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t1153838595_m3357256492_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t1153838595_m3357256492(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t1153838595_m3357256492_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.IntPtr>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m1800769702_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m1800769702(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m1800769702_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Object>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisIl2CppObject_m407559654_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisIl2CppObject_m407559654(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisIl2CppObject_m407559654_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeNamedArgument>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t3059612989_m1075760203_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t3059612989_m1075760203(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t3059612989_m1075760203_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeTypedArgument>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3301293422_m2612351610_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3301293422_m2612351610(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3301293422_m2612351610_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t3207823784_m2363194802_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t3207823784_m2363194802(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t3207823784_m2363194802_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelFixup>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t660379442_m2374808082_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t660379442_m2374808082(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t660379442_m2374808082_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILTokenInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t1354080954_m1935420397_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t1354080954_m1935420397(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t1354080954_m1935420397_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.ParameterModifier>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t741930026_m1795030376_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t741930026_m1795030376(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t741930026_m1795030376_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceReader/ResourceCacheItem>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t2113902833_m4247583091_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t2113902833_m4247583091(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t2113902833_m4247583091_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceReader/ResourceInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t4013605874_m2845220648_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t4013605874_m2845220648(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t4013605874_m2845220648_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.Serialization.Formatters.Binary.TypeTag>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t2420703430_m2594172501_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t2420703430_m2594172501(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t2420703430_m2594172501_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.SByte>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t1161769777_m3411898174_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t1161769777_m3411898174(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t1161769777_m3411898174_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Security.Cryptography.X509Certificates.X509ChainStatus>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t766901931_m2152964560_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t766901931_m2152964560(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t766901931_m2152964560_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Single>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t4291918972_m402617405_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t4291918972_m402617405(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t4291918972_m402617405_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.Mark>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t3811539797_m1321418026_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t3811539797_m1321418026(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t3811539797_m1321418026_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TimeSpan>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t413522987_m824714478_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t413522987_m824714478(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t413522987_m824714478_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt16>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t24667923_m1463610950_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t24667923_m1463610950(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t24667923_m1463610950_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t24667981_m1465338828_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t24667981_m1465338828(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t24667981_m1465338828_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt64>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t24668076_m1468168973_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t24668076_m1468168973(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t24668076_m1468168973_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Uri/UriScheme>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t1290668975_m1636451147_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t1290668975_m1636451147(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t1290668975_m1636451147_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNamespaceManager/NsDecl>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNsDecl_t3658211563_m1153201849_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisNsDecl_t3658211563_m1153201849(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisNsDecl_t3658211563_m1153201849_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNamespaceManager/NsScope>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNsScope_t1749213747_m335289735_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisNsScope_t1749213747_m335289735(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisNsScope_t1749213747_m335289735_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TypewriterEffect/FadeEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisFadeEntry_t2858472101_m1256009813_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisFadeEntry_t2858472101_m1256009813(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisFadeEntry_t2858472101_m1256009813_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UICamera/DepthEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDepthEntry_t1145614469_m2848759839_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisDepthEntry_t1145614469_m2848759839(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisDepthEntry_t1145614469_m2848759839_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.AnimatorStateInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisAnimatorStateInfo_t323110318_m1258401667_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisAnimatorStateInfo_t323110318_m1258401667(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisAnimatorStateInfo_t323110318_m1258401667_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Bounds>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBounds_t2711641849_m1589625326_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisBounds_t2711641849_m1589625326(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisBounds_t2711641849_m1589625326_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t4194546905_m1537715192_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t4194546905_m1537715192(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t4194546905_m1537715192_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t598853688_m265710329_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t598853688_m265710329(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t598853688_m265710329_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t243083348_m2237941363_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t243083348_m2237941363(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t243083348_m2237941363_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint2D>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint2D_t4288432358_m3167775201_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint2D_t4288432358_m3167775201(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint2D_t4288432358_m3167775201_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.EventSystems.RaycastResult>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t3762661364_m2558439041_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t3762661364_m2558439041(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t3762661364_m2558439041_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Experimental.Director.Playable>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPlayable_t70832698_m119578969_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisPlayable_t70832698_m119578969(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisPlayable_t70832698_m119578969_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.KeyCode>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyCode_t3128317986_m335403727_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyCode_t3128317986_m335403727(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyCode_t3128317986_m335403727_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Keyframe>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t4079056114_m966627989_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t4079056114_m966627989(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t4079056114_m966627989_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ParticleSystem/Particle>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParticle_t405273609_m62442523_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisParticle_t405273609_m62442523(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisParticle_t405273609_m62442523_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t4003175726_m2333029913_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t4003175726_m2333029913(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t4003175726_m2333029913_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit2D>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t1374744384_m58591239_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t1374744384_m58591239(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t1374744384_m58591239_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Rendering.RenderTargetIdentifier>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRenderTargetIdentifier_t1322160672_m859327985_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisRenderTargetIdentifier_t1322160672_m859327985(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisRenderTargetIdentifier_t1322160672_m859327985_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SendMouseEvents/HitInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t3209134097_m1346267923_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t3209134097_m1346267923(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t3209134097_m1346267923_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t3481375915_m3799860690_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t3481375915_m3799860690(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t3481375915_m3799860690_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t2181296590_m2043159055_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t2181296590_m2043159055(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t2181296590_m2043159055_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Touch>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t4210255029_m1347002012_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t4210255029_m1347002012(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t4210255029_m1347002012_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/ContentType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t2662964855_m4212735405_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t2662964855_m4212735405(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t2662964855_m4212735405_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UICharInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t65807484_m4047553547_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t65807484_m4047553547(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t65807484_m4047553547_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UILineInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t4113875482_m1654577581_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t4113875482_m1654577581(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t4113875482_m1654577581_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UIVertex>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t4244065212_m3310079883_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t4244065212_m3310079883(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t4244065212_m3310079883_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector2>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t4282066565_m3331018124_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t4282066565_m3331018124(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t4282066565_m3331018124_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector3>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t4282066566_m3331047915_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t4282066566_m3331047915(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t4282066566_m3331047915_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector4>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t4282066567_m3331077706_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t4282066567_m3331077706(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t4282066567_m3331077706_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.VR.VRDeviceType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVRDeviceType_t4084270792_m4059215325_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisVRDeviceType_t4084270792_m4059215325(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisVRDeviceType_t4084270792_m4059215325_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2308822883_m2920195009_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2308822883_m2920195009(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2308822883_m2920195009_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.FXAA/Preset>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t8910124_m1427727918_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t8910124_m1427727918(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t8910124_m1427727918_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2868270621_m2104559559_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2868270621_m2104559559(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2868270621_m2104559559_gshared)(__this, method) // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<WMG_Data_Source/WMG_VariableTypes>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisWMG_VariableTypes_t4265297442_m1619238050_gshared (Il2CppArray * __this, const MethodInfo* method); #define Array_InternalArray__IEnumerable_GetEnumerator_TisWMG_VariableTypes_t4265297442_m1619238050(__this, method) (( Il2CppObject* (*) (Il2CppArray *, const MethodInfo*))Array_InternalArray__IEnumerable_GetEnumerator_TisWMG_VariableTypes_t4265297442_m1619238050_gshared)(__this, method) // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<System.Object>() extern "C" List_1_t1244034627 * WMG_Data_Source_getData_TisIl2CppObject_m2978252902_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method); #define WMG_Data_Source_getData_TisIl2CppObject_m2978252902(__this, method) (( List_1_t1244034627 * (*) (WMG_Data_Source_t1473700674 *, const MethodInfo*))WMG_Data_Source_getData_TisIl2CppObject_m2978252902_gshared)(__this, method) // !!0 WMG_Data_Source::getDatum<System.Object>(System.Object,System.String,WMG_Data_Source/WMG_VariableTypes,System.String,System.String) extern "C" Il2CppObject * WMG_Data_Source_getDatum_TisIl2CppObject_m3452405701_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * p0, String_t* p1, int32_t p2, String_t* p3, String_t* p4, const MethodInfo* method); #define WMG_Data_Source_getDatum_TisIl2CppObject_m3452405701(__this, p0, p1, p2, p3, p4, method) (( Il2CppObject * (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))WMG_Data_Source_getDatum_TisIl2CppObject_m3452405701_gshared)(__this, p0, p1, p2, p3, p4, method) // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<System.Single>() extern "C" List_1_t1365137228 * WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method); #define WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653(__this, method) (( List_1_t1365137228 * (*) (WMG_Data_Source_t1473700674 *, const MethodInfo*))WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653_gshared)(__this, method) // !!0 WMG_Data_Source::getDatum<System.Single>(System.Object,System.String,WMG_Data_Source/WMG_VariableTypes,System.String,System.String) extern "C" float WMG_Data_Source_getDatum_TisSingle_t4291918972_m3822201166_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * p0, String_t* p1, int32_t p2, String_t* p3, String_t* p4, const MethodInfo* method); #define WMG_Data_Source_getDatum_TisSingle_t4291918972_m3822201166(__this, p0, p1, p2, p3, p4, method) (( float (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))WMG_Data_Source_getDatum_TisSingle_t4291918972_m3822201166_gshared)(__this, p0, p1, p2, p3, p4, method) // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<UnityEngine.Color>() extern "C" List_1_t1267765161 * WMG_Data_Source_getData_TisColor_t4194546905_m319297144_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method); #define WMG_Data_Source_getData_TisColor_t4194546905_m319297144(__this, method) (( List_1_t1267765161 * (*) (WMG_Data_Source_t1473700674 *, const MethodInfo*))WMG_Data_Source_getData_TisColor_t4194546905_m319297144_gshared)(__this, method) // !!0 WMG_Data_Source::getDatum<UnityEngine.Color>(System.Object,System.String,WMG_Data_Source/WMG_VariableTypes,System.String,System.String) extern "C" Color_t4194546905 WMG_Data_Source_getDatum_TisColor_t4194546905_m2871078259_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * p0, String_t* p1, int32_t p2, String_t* p3, String_t* p4, const MethodInfo* method); #define WMG_Data_Source_getDatum_TisColor_t4194546905_m2871078259(__this, p0, p1, p2, p3, p4, method) (( Color_t4194546905 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))WMG_Data_Source_getDatum_TisColor_t4194546905_m2871078259_gshared)(__this, p0, p1, p2, p3, p4, method) // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<UnityEngine.Vector2>() extern "C" List_1_t1355284821 * WMG_Data_Source_getData_TisVector2_t4282066565_m662378508_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method); #define WMG_Data_Source_getData_TisVector2_t4282066565_m662378508(__this, method) (( List_1_t1355284821 * (*) (WMG_Data_Source_t1473700674 *, const MethodInfo*))WMG_Data_Source_getData_TisVector2_t4282066565_m662378508_gshared)(__this, method) // !!0 WMG_Data_Source::getDatum<UnityEngine.Vector2>(System.Object,System.String,WMG_Data_Source/WMG_VariableTypes,System.String,System.String) extern "C" Vector2_t4282066565 WMG_Data_Source_getDatum_TisVector2_t4282066565_m2877315103_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * p0, String_t* p1, int32_t p2, String_t* p3, String_t* p4, const MethodInfo* method); #define WMG_Data_Source_getDatum_TisVector2_t4282066565_m2877315103(__this, p0, p1, p2, p3, p4, method) (( Vector2_t4282066565 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))WMG_Data_Source_getDatum_TisVector2_t4282066565_m2877315103_gshared)(__this, p0, p1, p2, p3, p4, method) // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<AllSingleton/Contacts>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t1720329256 * Enumerable_ToList_TisContacts_t352143704_m54472673_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method); #define Enumerable_ToList_TisContacts_t352143704_m54472673(__this /* static, unused */, ___source0, method) (( List_1_t1720329256 * (*) (Il2CppObject * /* static, unused */, Il2CppObject*, const MethodInfo*))Enumerable_ToList_TisContacts_t352143704_m54472673_gshared)(__this /* static, unused */, ___source0, method) // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<ConsoleApplication.LocalProcessing/DeviceProperties>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t3860887551 * Enumerable_ToList_TisDeviceProperties_t2492701999_m566635768_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method); #define Enumerable_ToList_TisDeviceProperties_t2492701999_m566635768(__this /* static, unused */, ___source0, method) (( List_1_t3860887551 * (*) (Il2CppObject * /* static, unused */, Il2CppObject*, const MethodInfo*))Enumerable_ToList_TisDeviceProperties_t2492701999_m566635768_gshared)(__this /* static, unused */, ___source0, method) // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<ConsoleApplication.LocalProcessing/StaffInformatino>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t13119972 * Enumerable_ToList_TisStaffInformatino_t2939901716_m3100551389_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method); #define Enumerable_ToList_TisStaffInformatino_t2939901716_m3100551389(__this /* static, unused */, ___source0, method) (( List_1_t13119972 * (*) (Il2CppObject * /* static, unused */, Il2CppObject*, const MethodInfo*))Enumerable_ToList_TisStaffInformatino_t2939901716_m3100551389_gshared)(__this /* static, unused */, ___source0, method) // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t1244034627 * Enumerable_ToList_TisIl2CppObject_m1075343207_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method); #define Enumerable_ToList_TisIl2CppObject_m1075343207(__this /* static, unused */, ___source0, method) (( List_1_t1244034627 * (*) (Il2CppObject * /* static, unused */, Il2CppObject*, const MethodInfo*))Enumerable_ToList_TisIl2CppObject_m1075343207_gshared)(__this /* static, unused */, ___source0, method) // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[]) extern "C" ReadOnlyCollection_1_t1432926611 * Array_AsReadOnly_TisIl2CppObject_m3222156752_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, const MethodInfo* method); #define Array_AsReadOnly_TisIl2CppObject_m3222156752(__this /* static, unused */, ___array0, method) (( ReadOnlyCollection_1_t1432926611 * (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, const MethodInfo*))Array_AsReadOnly_TisIl2CppObject_m3222156752_gshared)(__this /* static, unused */, ___array0, method) // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeNamedArgument>(T[]) extern "C" ReadOnlyCollection_1_t321723229 * Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, const MethodInfo* method); #define Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287(__this /* static, unused */, ___array0, method) (( ReadOnlyCollection_1_t321723229 * (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240*, const MethodInfo*))Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287_gshared)(__this /* static, unused */, ___array0, method) // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeTypedArgument>(T[]) extern "C" ReadOnlyCollection_1_t563403662 * Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, const MethodInfo* method); #define Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640(__this /* static, unused */, ___array0, method) (( ReadOnlyCollection_1_t563403662 * (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251*, const MethodInfo*))Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640_gshared)(__this /* static, unused */, ___array0, method) // System.Int32 System.Array::BinarySearch<System.Int32>(T[],System.Int32,System.Int32,T) extern "C" int32_t Array_BinarySearch_TisInt32_t1153838500_m3080908590_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___index1, int32_t ___length2, int32_t ___value3, const MethodInfo* method); #define Array_BinarySearch_TisInt32_t1153838500_m3080908590(__this /* static, unused */, ___array0, ___index1, ___length2, ___value3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, int32_t, int32_t, const MethodInfo*))Array_BinarySearch_TisInt32_t1153838500_m3080908590_gshared)(__this /* static, unused */, ___array0, ___index1, ___length2, ___value3, method) // System.Int32 System.Array::BinarySearch<System.Int32>(!!0[],System.Int32,System.Int32,!!0,System.Collections.Generic.IComparer`1<!!0>) extern "C" int32_t Array_BinarySearch_TisInt32_t1153838500_m2244288238_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* p0, int32_t p1, int32_t p2, int32_t p3, Il2CppObject* p4, const MethodInfo* method); #define Array_BinarySearch_TisInt32_t1153838500_m2244288238(__this /* static, unused */, p0, p1, p2, p3, p4, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, int32_t, int32_t, Il2CppObject*, const MethodInfo*))Array_BinarySearch_TisInt32_t1153838500_m2244288238_gshared)(__this /* static, unused */, p0, p1, p2, p3, p4, method) // System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T) extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m4130291207_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___index1, int32_t ___length2, Il2CppObject * ___value3, const MethodInfo* method); #define Array_BinarySearch_TisIl2CppObject_m4130291207(__this /* static, unused */, ___array0, ___index1, ___length2, ___value3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Il2CppObject *, const MethodInfo*))Array_BinarySearch_TisIl2CppObject_m4130291207_gshared)(__this /* static, unused */, ___array0, ___index1, ___length2, ___value3, method) // System.Int32 System.Array::BinarySearch<System.Object>(!!0[],System.Int32,System.Int32,!!0,System.Collections.Generic.IComparer`1<!!0>) extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m1470814565_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* p0, int32_t p1, int32_t p2, Il2CppObject * p3, Il2CppObject* p4, const MethodInfo* method); #define Array_BinarySearch_TisIl2CppObject_m1470814565(__this /* static, unused */, p0, p1, p2, p3, p4, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Il2CppObject *, Il2CppObject*, const MethodInfo*))Array_BinarySearch_TisIl2CppObject_m1470814565_gshared)(__this /* static, unused */, p0, p1, p2, p3, p4, method) // System.Int32 System.Array::BinarySearch<System.Object>(T[],T) extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m1721333095_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method); #define Array_BinarySearch_TisIl2CppObject_m1721333095(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, const MethodInfo*))Array_BinarySearch_TisIl2CppObject_m1721333095_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::BinarySearch<System.Object>(T[],T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m2867452101_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_BinarySearch_TisIl2CppObject_m2867452101(__this /* static, unused */, ___array0, ___value1, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, Il2CppObject*, const MethodInfo*))Array_BinarySearch_TisIl2CppObject_m2867452101_gshared)(__this /* static, unused */, ___array0, ___value1, ___comparer2, method) // System.Int32 System.Array::compare<AllSingleton/Contacts>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisContacts_t352143704_m1381065071_gshared (Il2CppObject * __this /* static, unused */, Contacts_t352143704 ___value10, Contacts_t352143704 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisContacts_t352143704_m1381065071(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Contacts_t352143704 , Contacts_t352143704 , Il2CppObject*, const MethodInfo*))Array_compare_TisContacts_t352143704_m1381065071_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<AllSingleton/detailsProperty>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisdetailsProperty_t1057943986_m3900447941_gshared (Il2CppObject * __this /* static, unused */, detailsProperty_t1057943986 ___value10, detailsProperty_t1057943986 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisdetailsProperty_t1057943986_m3900447941(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, detailsProperty_t1057943986 , detailsProperty_t1057943986 , Il2CppObject*, const MethodInfo*))Array_compare_TisdetailsProperty_t1057943986_m3900447941_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<AllSingleton/DeviceDetailedInformation>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformation_t4234054081 ___value10, DeviceDetailedInformation_t4234054081 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformation_t4234054081 , DeviceDetailedInformation_t4234054081 , Il2CppObject*, const MethodInfo*))Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<AllSingleton/surveyProperty>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TissurveyProperty_t884569204_m2153501451_gshared (Il2CppObject * __this /* static, unused */, surveyProperty_t884569204 ___value10, surveyProperty_t884569204 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TissurveyProperty_t884569204_m2153501451(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, surveyProperty_t884569204 , surveyProperty_t884569204 , Il2CppObject*, const MethodInfo*))Array_compare_TissurveyProperty_t884569204_m2153501451_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformation_t3668321760 ___value10, DeviceDetailedInformation_t3668321760 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformation_t3668321760 , DeviceDetailedInformation_t3668321760 , Il2CppObject*, const MethodInfo*))Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/DeviceProperties>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisDeviceProperties_t2492701999_m2619765702_gshared (Il2CppObject * __this /* static, unused */, DeviceProperties_t2492701999 ___value10, DeviceProperties_t2492701999 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisDeviceProperties_t2492701999_m2619765702(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DeviceProperties_t2492701999 , DeviceProperties_t2492701999 , Il2CppObject*, const MethodInfo*))Array_compare_TisDeviceProperties_t2492701999_m2619765702_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrol_t4292956421 ___value10, peopleOrderPatrol_t4292956421 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, peopleOrderPatrol_t4292956421 , peopleOrderPatrol_t4292956421 , Il2CppObject*, const MethodInfo*))Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/peoplePatrol>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TispeoplePatrol_t2522972577_m3479055672_gshared (Il2CppObject * __this /* static, unused */, peoplePatrol_t2522972577 ___value10, peoplePatrol_t2522972577 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TispeoplePatrol_t2522972577_m3479055672(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, peoplePatrol_t2522972577 , peoplePatrol_t2522972577 , Il2CppObject*, const MethodInfo*))Array_compare_TispeoplePatrol_t2522972577_m3479055672_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/StaffInformatino>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisStaffInformatino_t2939901716_m858714027_gshared (Il2CppObject * __this /* static, unused */, StaffInformatino_t2939901716 ___value10, StaffInformatino_t2939901716 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisStaffInformatino_t2939901716_m858714027(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, StaffInformatino_t2939901716 , StaffInformatino_t2939901716 , Il2CppObject*, const MethodInfo*))Array_compare_TisStaffInformatino_t2939901716_m858714027_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<HighlightingSystem.HighlighterRenderer/Data>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisData_t3265512710_m2231104413_gshared (Il2CppObject * __this /* static, unused */, Data_t3265512710 ___value10, Data_t3265512710 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisData_t3265512710_m2231104413(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Data_t3265512710 , Data_t3265512710 , Il2CppObject*, const MethodInfo*))Array_compare_TisData_t3265512710_m2231104413_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<LitJson.PropertyMetadata>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisPropertyMetadata_t4066634616_m618449510_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadata_t4066634616 ___value10, PropertyMetadata_t4066634616 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisPropertyMetadata_t4066634616_m618449510(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, PropertyMetadata_t4066634616 , PropertyMetadata_t4066634616 , Il2CppObject*, const MethodInfo*))Array_compare_TisPropertyMetadata_t4066634616_m618449510_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<PresetSelector/Preset>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisPreset_t2393284144_m949790279_gshared (Il2CppObject * __this /* static, unused */, Preset_t2393284144 ___value10, Preset_t2393284144 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisPreset_t2393284144_m949790279(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Preset_t2393284144 , Preset_t2393284144 , Il2CppObject*, const MethodInfo*))Array_compare_TisPreset_t2393284144_m949790279_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Boolean>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisBoolean_t476798718_m235360508_gshared (Il2CppObject * __this /* static, unused */, bool ___value10, bool ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisBoolean_t476798718_m235360508(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, bool, bool, Il2CppObject*, const MethodInfo*))Array_compare_TisBoolean_t476798718_m235360508_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Byte>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisByte_t2862609660_m3931363838_gshared (Il2CppObject * __this /* static, unused */, uint8_t ___value10, uint8_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisByte_t2862609660_m3931363838(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, uint8_t, uint8_t, Il2CppObject*, const MethodInfo*))Array_compare_TisByte_t2862609660_m3931363838_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Char>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisChar_t2862622538_m2790586444_gshared (Il2CppObject * __this /* static, unused */, Il2CppChar ___value10, Il2CppChar ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisChar_t2862622538_m2790586444(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Il2CppChar, Il2CppChar, Il2CppObject*, const MethodInfo*))Array_compare_TisChar_t2862622538_m2790586444_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisKeyValuePair_2_t1944668977_m2068200880_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2_t1944668977 ___value10, KeyValuePair_2_t1944668977 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisKeyValuePair_2_t1944668977_m2068200880(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, KeyValuePair_2_t1944668977 , KeyValuePair_2_t1944668977 , Il2CppObject*, const MethodInfo*))Array_compare_TisKeyValuePair_2_t1944668977_m2068200880_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Double>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisDouble_t3868226565_m3812610695_gshared (Il2CppObject * __this /* static, unused */, double ___value10, double ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisDouble_t3868226565_m3812610695(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, double, double, Il2CppObject*, const MethodInfo*))Array_compare_TisDouble_t3868226565_m3812610695_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Int32>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisInt32_t1153838500_m761600802_gshared (Il2CppObject * __this /* static, unused */, int32_t ___value10, int32_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisInt32_t1153838500_m761600802(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, int32_t, int32_t, Il2CppObject*, const MethodInfo*))Array_compare_TisInt32_t1153838500_m761600802_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Object>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisIl2CppObject_m585049589_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject * ___value10, Il2CppObject * ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisIl2CppObject_m585049589(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Il2CppObject *, Il2CppObject *, Il2CppObject*, const MethodInfo*))Array_compare_TisIl2CppObject_m585049589_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Reflection.CustomAttributeNamedArgument>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgument_t3059612989 ___value10, CustomAttributeNamedArgument_t3059612989 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgument_t3059612989 , CustomAttributeNamedArgument_t3059612989 , Il2CppObject*, const MethodInfo*))Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Reflection.CustomAttributeTypedArgument>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgument_t3301293422 ___value10, CustomAttributeTypedArgument_t3301293422 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgument_t3301293422 , CustomAttributeTypedArgument_t3301293422 , Il2CppObject*, const MethodInfo*))Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<System.Single>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisSingle_t4291918972_m742879486_gshared (Il2CppObject * __this /* static, unused */, float ___value10, float ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisSingle_t4291918972_m742879486(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, float, float, Il2CppObject*, const MethodInfo*))Array_compare_TisSingle_t4291918972_m742879486_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Color>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisColor_t4194546905_m187609507_gshared (Il2CppObject * __this /* static, unused */, Color_t4194546905 ___value10, Color_t4194546905 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisColor_t4194546905_m187609507(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Color_t4194546905 , Color_t4194546905 , Il2CppObject*, const MethodInfo*))Array_compare_TisColor_t4194546905_m187609507_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Color32>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisColor32_t598853688_m1852856962_gshared (Il2CppObject * __this /* static, unused */, Color32_t598853688 ___value10, Color32_t598853688 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisColor32_t598853688_m1852856962(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Color32_t598853688 , Color32_t598853688 , Il2CppObject*, const MethodInfo*))Array_compare_TisColor32_t598853688_m1852856962_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.EventSystems.RaycastResult>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisRaycastResult_t3762661364_m1390053132_gshared (Il2CppObject * __this /* static, unused */, RaycastResult_t3762661364 ___value10, RaycastResult_t3762661364 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisRaycastResult_t3762661364_m1390053132(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, RaycastResult_t3762661364 , RaycastResult_t3762661364 , Il2CppObject*, const MethodInfo*))Array_compare_TisRaycastResult_t3762661364_m1390053132_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Experimental.Director.Playable>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisPlayable_t70832698_m2773860020_gshared (Il2CppObject * __this /* static, unused */, Playable_t70832698 ___value10, Playable_t70832698 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisPlayable_t70832698_m2773860020(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Playable_t70832698 , Playable_t70832698 , Il2CppObject*, const MethodInfo*))Array_compare_TisPlayable_t70832698_m2773860020_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.UICharInfo>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisUICharInfo_t65807484_m3265641410_gshared (Il2CppObject * __this /* static, unused */, UICharInfo_t65807484 ___value10, UICharInfo_t65807484 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisUICharInfo_t65807484_m3265641410(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UICharInfo_t65807484 , UICharInfo_t65807484 , Il2CppObject*, const MethodInfo*))Array_compare_TisUICharInfo_t65807484_m3265641410_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.UILineInfo>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisUILineInfo_t4113875482_m508388704_gshared (Il2CppObject * __this /* static, unused */, UILineInfo_t4113875482 ___value10, UILineInfo_t4113875482 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisUILineInfo_t4113875482_m508388704(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UILineInfo_t4113875482 , UILineInfo_t4113875482 , Il2CppObject*, const MethodInfo*))Array_compare_TisUILineInfo_t4113875482_m508388704_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.UIVertex>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisUIVertex_t4244065212_m3608347266_gshared (Il2CppObject * __this /* static, unused */, UIVertex_t4244065212 ___value10, UIVertex_t4244065212 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisUIVertex_t4244065212_m3608347266(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UIVertex_t4244065212 , UIVertex_t4244065212 , Il2CppObject*, const MethodInfo*))Array_compare_TisUIVertex_t4244065212_m3608347266_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Vector2>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisVector2_t4282066565_m384371407_gshared (Il2CppObject * __this /* static, unused */, Vector2_t4282066565 ___value10, Vector2_t4282066565 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisVector2_t4282066565_m384371407(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector2_t4282066565 , Vector2_t4282066565 , Il2CppObject*, const MethodInfo*))Array_compare_TisVector2_t4282066565_m384371407_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Vector3>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisVector3_t4282066566_m376612048_gshared (Il2CppObject * __this /* static, unused */, Vector3_t4282066566 ___value10, Vector3_t4282066566 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisVector3_t4282066566_m376612048(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector3_t4282066566 , Vector3_t4282066566 , Il2CppObject*, const MethodInfo*))Array_compare_TisVector3_t4282066566_m376612048_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<UnityEngine.Vector4>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisVector4_t4282066567_m368852689_gshared (Il2CppObject * __this /* static, unused */, Vector4_t4282066567 ___value10, Vector4_t4282066567 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisVector4_t4282066567_m368852689(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector4_t4282066567 , Vector4_t4282066567 , Il2CppObject*, const MethodInfo*))Array_compare_TisVector4_t4282066567_m368852689_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::compare<WMG_Data_Source/WMG_VariableTypes>(T,T,System.Collections.Generic.IComparer`1<T>) extern "C" int32_t Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041_gshared (Il2CppObject * __this /* static, unused */, int32_t ___value10, int32_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method); #define Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, int32_t, int32_t, Il2CppObject*, const MethodInfo*))Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041_gshared)(__this /* static, unused */, ___value10, ___value21, ___comparer2, method) // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) extern "C" int32_t Array_FindIndex_TisIl2CppObject_m1464408032_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t3781873254 * ___match3, const MethodInfo* method); #define Array_FindIndex_TisIl2CppObject_m1464408032(__this /* static, unused */, ___array0, ___startIndex1, ___count2, ___match3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindIndex_TisIl2CppObject_m1464408032_gshared)(__this /* static, unused */, ___array0, ___startIndex1, ___count2, ___match3, method) // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) extern "C" int32_t Array_FindIndex_TisIl2CppObject_m1854445973_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, Predicate_1_t3781873254 * ___match2, const MethodInfo* method); #define Array_FindIndex_TisIl2CppObject_m1854445973(__this /* static, unused */, ___array0, ___startIndex1, ___match2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindIndex_TisIl2CppObject_m1854445973_gshared)(__this /* static, unused */, ___array0, ___startIndex1, ___match2, method) // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Predicate`1<T>) extern "C" int32_t Array_FindIndex_TisIl2CppObject_m445609408_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method); #define Array_FindIndex_TisIl2CppObject_m445609408(__this /* static, unused */, ___array0, ___match1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindIndex_TisIl2CppObject_m445609408_gshared)(__this /* static, unused */, ___array0, ___match1, method) // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m1171213802_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t3781873254 * ___match3, const MethodInfo* method); #define Array_FindLastIndex_TisIl2CppObject_m1171213802(__this /* static, unused */, ___array0, ___startIndex1, ___count2, ___match3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindLastIndex_TisIl2CppObject_m1171213802_gshared)(__this /* static, unused */, ___array0, ___startIndex1, ___count2, ___match3, method) // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m2846972747_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, Predicate_1_t3781873254 * ___match2, const MethodInfo* method); #define Array_FindLastIndex_TisIl2CppObject_m2846972747(__this /* static, unused */, ___array0, ___startIndex1, ___match2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindLastIndex_TisIl2CppObject_m2846972747_gshared)(__this /* static, unused */, ___array0, ___startIndex1, ___match2, method) // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Predicate`1<T>) extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m1979720778_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method); #define Array_FindLastIndex_TisIl2CppObject_m1979720778(__this /* static, unused */, ___array0, ___match1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Predicate_1_t3781873254 *, const MethodInfo*))Array_FindLastIndex_TisIl2CppObject_m1979720778_gshared)(__this /* static, unused */, ___array0, ___match1, method) // System.Int32 System.Array::IndexOf<AllSingleton/Contacts>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisContacts_t352143704_m3821923795_gshared (Il2CppObject * __this /* static, unused */, ContactsU5BU5D_t2097638985* ___array0, Contacts_t352143704 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisContacts_t352143704_m3821923795(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ContactsU5BU5D_t2097638985*, Contacts_t352143704 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisContacts_t352143704_m3821923795_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<AllSingleton/detailsProperty>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937_gshared (Il2CppObject * __this /* static, unused */, detailsPropertyU5BU5D_t3868157767* ___array0, detailsProperty_t1057943986 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, detailsPropertyU5BU5D_t3868157767*, detailsProperty_t1057943986 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<AllSingleton/DeviceDetailedInformation>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, DeviceDetailedInformation_t4234054081 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756*, DeviceDetailedInformation_t4234054081 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<AllSingleton/surveyProperty>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TissurveyProperty_t884569204_m2914196847_gshared (Il2CppObject * __this /* static, unused */, surveyPropertyU5BU5D_t3751806781* ___array0, surveyProperty_t884569204 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TissurveyProperty_t884569204_m2914196847(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, surveyPropertyU5BU5D_t3751806781*, surveyProperty_t884569204 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TissurveyProperty_t884569204_m2914196847_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, DeviceDetailedInformation_t3668321760 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889*, DeviceDetailedInformation_t3668321760 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/DeviceProperties>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250_gshared (Il2CppObject * __this /* static, unused */, DevicePropertiesU5BU5D_t665138486* ___array0, DeviceProperties_t2492701999 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DevicePropertiesU5BU5D_t665138486*, DeviceProperties_t2492701999 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrolU5BU5D_t635926856* ___array0, peopleOrderPatrol_t4292956421 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, peopleOrderPatrolU5BU5D_t635926856*, peopleOrderPatrol_t4292956421 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/peoplePatrol>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700_gshared (Il2CppObject * __this /* static, unused */, peoplePatrolU5BU5D_t2360067772* ___array0, peoplePatrol_t2522972577 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, peoplePatrolU5BU5D_t2360067772*, peoplePatrol_t2522972577 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/StaffInformatino>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191_gshared (Il2CppObject * __this /* static, unused */, StaffInformatinoU5BU5D_t2925930013* ___array0, StaffInformatino_t2939901716 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, StaffInformatinoU5BU5D_t2925930013*, StaffInformatino_t2939901716 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<HighlightingSystem.HighlighterRenderer/Data>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisData_t3265512710_m2483469697_gshared (Il2CppObject * __this /* static, unused */, DataU5BU5D_t883120163* ___array0, Data_t3265512710 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisData_t3265512710_m2483469697(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DataU5BU5D_t883120163*, Data_t3265512710 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisData_t3265512710_m2483469697_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<LitJson.PropertyMetadata>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadataU5BU5D_t2846646185* ___array0, PropertyMetadata_t4066634616 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, PropertyMetadataU5BU5D_t2846646185*, PropertyMetadata_t4066634616 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<PresetSelector/Preset>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisPreset_t2393284144_m2567179435_gshared (Il2CppObject * __this /* static, unused */, PresetU5BU5D_t864269073* ___array0, Preset_t2393284144 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisPreset_t2393284144_m2567179435(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, PresetU5BU5D_t864269073*, Preset_t2393284144 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisPreset_t2393284144_m2567179435_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<System.Boolean>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisBoolean_t476798718_m1229324824_gshared (Il2CppObject * __this /* static, unused */, BooleanU5BU5D_t3456302923* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisBoolean_t476798718_m1229324824(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, BooleanU5BU5D_t3456302923*, bool, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisBoolean_t476798718_m1229324824_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<System.Byte>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisByte_t2862609660_m2371551650_gshared (Il2CppObject * __this /* static, unused */, ByteU5BU5D_t4260760469* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisByte_t2862609660_m2371551650(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ByteU5BU5D_t4260760469*, uint8_t, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisByte_t2862609660_m2371551650_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<System.Char>(T[],T) extern "C" int32_t Array_IndexOf_TisChar_t2862622538_m3491153917_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* ___array0, Il2CppChar ___value1, const MethodInfo* method); #define Array_IndexOf_TisChar_t2862622538_m3491153917(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CharU5BU5D_t3324145743*, Il2CppChar, const MethodInfo*))Array_IndexOf_TisChar_t2862622538_m3491153917_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::IndexOf<System.Char>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisChar_t2862622538_m953753712_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* p0, Il2CppChar p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_IndexOf_TisChar_t2862622538_m953753712(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CharU5BU5D_t3324145743*, Il2CppChar, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisChar_t2862622538_m953753712_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 System.Array::IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t2483180780* ___array0, KeyValuePair_2_t1944668977 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, KeyValuePair_2U5BU5D_t2483180780*, KeyValuePair_2_t1944668977 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<System.Double>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisDouble_t3868226565_m3057200363_gshared (Il2CppObject * __this /* static, unused */, DoubleU5BU5D_t2145413704* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisDouble_t3868226565_m3057200363(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, DoubleU5BU5D_t2145413704*, double, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisDouble_t3868226565_m3057200363_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<System.Int32>(T[],T) extern "C" int32_t Array_IndexOf_TisInt32_t1153838500_m1482877264_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___value1, const MethodInfo* method); #define Array_IndexOf_TisInt32_t1153838500_m1482877264(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, const MethodInfo*))Array_IndexOf_TisInt32_t1153838500_m1482877264_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::IndexOf<System.Int32>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisInt32_t1153838500_m877823422_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* p0, int32_t p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_IndexOf_TisInt32_t1153838500_m877823422(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisInt32_t1153838500_m877823422_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 System.Array::IndexOf<System.Object>(T[],T) extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2661005505_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method); #define Array_IndexOf_TisIl2CppObject_m2661005505(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m2661005505_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::IndexOf<System.Object>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2704617185_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* p0, Il2CppObject * p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_IndexOf_TisIl2CppObject_m2704617185(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m2704617185_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32) extern "C" int32_t Array_IndexOf_TisIl2CppObject_m870893758_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, int32_t ___startIndex2, const MethodInfo* method); #define Array_IndexOf_TisIl2CppObject_m870893758(__this /* static, unused */, ___array0, ___value1, ___startIndex2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, const MethodInfo*))Array_IndexOf_TisIl2CppObject_m870893758_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, method) // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeNamedArgument>(T[],T) extern "C" int32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, CustomAttributeNamedArgument_t3059612989 ___value1, const MethodInfo* method); #define Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240*, CustomAttributeNamedArgument_t3059612989 , const MethodInfo*))Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeNamedArgument>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* p0, CustomAttributeNamedArgument_t3059612989 p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240*, CustomAttributeNamedArgument_t3059612989 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeTypedArgument>(T[],T) extern "C" int32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, CustomAttributeTypedArgument_t3301293422 ___value1, const MethodInfo* method); #define Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251*, CustomAttributeTypedArgument_t3301293422 , const MethodInfo*))Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeTypedArgument>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* p0, CustomAttributeTypedArgument_t3301293422 p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251*, CustomAttributeTypedArgument_t3301293422 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 System.Array::IndexOf<System.Single>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisSingle_t4291918972_m3556333474_gshared (Il2CppObject * __this /* static, unused */, SingleU5BU5D_t2316563989* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisSingle_t4291918972_m3556333474(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, SingleU5BU5D_t2316563989*, float, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisSingle_t4291918972_m3556333474_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Color>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisColor_t4194546905_m3123325703_gshared (Il2CppObject * __this /* static, unused */, ColorU5BU5D_t2441545636* ___array0, Color_t4194546905 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisColor_t4194546905_m3123325703(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ColorU5BU5D_t2441545636*, Color_t4194546905 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisColor_t4194546905_m3123325703_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Color32>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisColor32_t598853688_m2450814246_gshared (Il2CppObject * __this /* static, unused */, Color32U5BU5D_t2960766953* ___array0, Color32_t598853688 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisColor32_t598853688_m2450814246(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Color32U5BU5D_t2960766953*, Color32_t598853688 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisColor32_t598853688_m2450814246_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisRaycastResult_t3762661364_m1628381224_gshared (Il2CppObject * __this /* static, unused */, RaycastResultU5BU5D_t2754024893* ___array0, RaycastResult_t3762661364 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisRaycastResult_t3762661364_m1628381224(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, RaycastResultU5BU5D_t2754024893*, RaycastResult_t3762661364 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisRaycastResult_t3762661364_m1628381224_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Experimental.Director.Playable>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisPlayable_t70832698_m3233505232_gshared (Il2CppObject * __this /* static, unused */, PlayableU5BU5D_t910723999* ___array0, Playable_t70832698 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisPlayable_t70832698_m3233505232(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, PlayableU5BU5D_t910723999*, Playable_t70832698 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisPlayable_t70832698_m3233505232_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisUICharInfo_t65807484_m743908190_gshared (Il2CppObject * __this /* static, unused */, UICharInfoU5BU5D_t4214337045* ___array0, UICharInfo_t65807484 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisUICharInfo_t65807484_m743908190(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UICharInfoU5BU5D_t4214337045*, UICharInfo_t65807484 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisUICharInfo_t65807484_m743908190_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisUILineInfo_t4113875482_m855562620_gshared (Il2CppObject * __this /* static, unused */, UILineInfoU5BU5D_t2354741311* ___array0, UILineInfo_t4113875482 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisUILineInfo_t4113875482_m855562620(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UILineInfoU5BU5D_t2354741311*, UILineInfo_t4113875482 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisUILineInfo_t4113875482_m855562620_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisUIVertex_t4244065212_m3202013470_gshared (Il2CppObject * __this /* static, unused */, UIVertexU5BU5D_t1796391381* ___array0, UIVertex_t4244065212 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisUIVertex_t4244065212_m3202013470(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, UIVertexU5BU5D_t1796391381*, UIVertex_t4244065212 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisUIVertex_t4244065212_m3202013470_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisVector2_t4282066565_m3505913907_gshared (Il2CppObject * __this /* static, unused */, Vector2U5BU5D_t4024180168* ___array0, Vector2_t4282066565 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisVector2_t4282066565_m3505913907(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector2U5BU5D_t4024180168*, Vector2_t4282066565 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisVector2_t4282066565_m3505913907_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisVector3_t4282066566_m936427508_gshared (Il2CppObject * __this /* static, unused */, Vector3U5BU5D_t215400611* ___array0, Vector3_t4282066566 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisVector3_t4282066566_m936427508(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector3U5BU5D_t215400611*, Vector3_t4282066566 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisVector3_t4282066566_m936427508_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisVector4_t4282066567_m2661908405_gshared (Il2CppObject * __this /* static, unused */, Vector4U5BU5D_t701588350* ___array0, Vector4_t4282066567 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisVector4_t4282066567_m2661908405(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, Vector4U5BU5D_t701588350*, Vector4_t4282066567 , int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisVector4_t4282066567_m2661908405_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::IndexOf<WMG_Data_Source/WMG_VariableTypes>(T[],T,System.Int32,System.Int32) extern "C" int32_t Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757_gshared (Il2CppObject * __this /* static, unused */, WMG_VariableTypesU5BU5D_t877298455* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method); #define Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, WMG_VariableTypesU5BU5D_t877298455*, int32_t, int32_t, int32_t, const MethodInfo*))Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757_gshared)(__this /* static, unused */, ___array0, ___value1, ___startIndex2, ___count3, method) // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/Contacts>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Contacts_t352143704 , const MethodInfo*))Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/detailsProperty>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, detailsProperty_t1057943986 , const MethodInfo*))Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/DeviceDetailedInformation>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DeviceDetailedInformation_t4234054081 , const MethodInfo*))Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/surveyProperty>(T) extern "C" int32_t Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, surveyProperty_t884569204 , const MethodInfo*))Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DeviceDetailedInformation_t3668321760 , const MethodInfo*))Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DeviceProperties_t2492701999 , const MethodInfo*))Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern "C" int32_t Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, peopleOrderPatrol_t4292956421 , const MethodInfo*))Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern "C" int32_t Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, peoplePatrol_t2522972577 , const MethodInfo*))Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, StaffInformatino_t2939901716 , const MethodInfo*))Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ControlPoint_t3116362155 , const MethodInfo*))Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<HighlightingSystem.Highlighter/Mode>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<HighlightingSystem.HighlighterRenderer/Data>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisData_t3265512710_m271789373_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisData_t3265512710_m271789373(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Data_t3265512710 , const MethodInfo*))Array_InternalArray__IndexOf_TisData_t3265512710_m271789373_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<LitJson.ArrayMetadata>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ArrayMetadata_t4058342910 , const MethodInfo*))Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<LitJson.ObjectMetadata>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ObjectMetadata_t2009294498 , const MethodInfo*))Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<LitJson.PropertyMetadata>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, PropertyMetadata_t4066634616 , const MethodInfo*))Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, TableRange_t3372848153 , const MethodInfo*))Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Uri/UriScheme>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, UriScheme_t3372318283 , const MethodInfo*))Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<Mono.Xml2.XmlTextReader/TagName>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, TagName_t2016006645 , const MethodInfo*))Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<PresetSelector/Preset>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Preset_t2393284144 , const MethodInfo*))Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.ArraySegment`1<System.Byte>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ArraySegment_1_t2188033608 , const MethodInfo*))Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, bool, const MethodInfo*))Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Il2CppChar, const MethodInfo*))Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DictionaryEntry_t1751606614 , const MethodInfo*))Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Link_t2122599155 , const MethodInfo*))Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t1049882445 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t4066860316 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t3980314737 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t1832195516 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t4078114400 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t1840487222 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t2545618620 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t3222658402 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t1944668977 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, KeyValuePair_2_t3310123289 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Link>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Link_t2063667470 , const MethodInfo*))Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable/Slot>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Slot_t2260530181 , const MethodInfo*))Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.SortedList/Slot>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Slot_t2072023290 , const MethodInfo*))Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DateTime_t4283661327 , const MethodInfo*))Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Decimal_t1954350631 , const MethodInfo*))Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, double, const MethodInfo*))Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int16_t, const MethodInfo*))Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int64_t, const MethodInfo*))Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, IntPtr_t, const MethodInfo*))Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Il2CppObject *, const MethodInfo*))Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, CustomAttributeNamedArgument_t3059612989 , const MethodInfo*))Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, CustomAttributeTypedArgument_t3301293422 , const MethodInfo*))Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, LabelData_t3207823784 , const MethodInfo*))Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, LabelFixup_t660379442 , const MethodInfo*))Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILTokenInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ILTokenInfo_t1354080954 , const MethodInfo*))Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ParameterModifier_t741930026 , const MethodInfo*))Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceReader/ResourceCacheItem>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ResourceCacheItem_t2113902833 , const MethodInfo*))Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceReader/ResourceInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ResourceInfo_t4013605874 , const MethodInfo*))Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int8_t, const MethodInfo*))Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, X509ChainStatus_t766901931 , const MethodInfo*))Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, float, const MethodInfo*))Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.Mark>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Mark_t3811539797 , const MethodInfo*))Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, TimeSpan_t413522987 , const MethodInfo*))Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, uint16_t, const MethodInfo*))Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, uint32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, uint64_t, const MethodInfo*))Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Uri/UriScheme>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, UriScheme_t1290668975 , const MethodInfo*))Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlNamespaceManager/NsDecl>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, NsDecl_t3658211563 , const MethodInfo*))Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlNamespaceManager/NsScope>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, NsScope_t1749213747 , const MethodInfo*))Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<TypewriterEffect/FadeEntry>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, FadeEntry_t2858472101 , const MethodInfo*))Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UICamera/DepthEntry>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, DepthEntry_t1145614469 , const MethodInfo*))Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.AnimatorStateInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, AnimatorStateInfo_t323110318 , const MethodInfo*))Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Bounds>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Bounds_t2711641849 , const MethodInfo*))Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Color_t4194546905 , const MethodInfo*))Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color32>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Color32_t598853688 , const MethodInfo*))Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ContactPoint_t243083348 , const MethodInfo*))Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint2D>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, ContactPoint2D_t4288432358 , const MethodInfo*))Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.EventSystems.RaycastResult>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, RaycastResult_t3762661364 , const MethodInfo*))Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.Director.Playable>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Playable_t70832698 , const MethodInfo*))Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.KeyCode>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Keyframe_t4079056114 , const MethodInfo*))Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ParticleSystem/Particle>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Particle_t405273609 , const MethodInfo*))Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, RaycastHit_t4003175726 , const MethodInfo*))Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit2D>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, RaycastHit2D_t1374744384 , const MethodInfo*))Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, RenderTargetIdentifier_t1322160672 , const MethodInfo*))Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, HitInfo_t3209134097 , const MethodInfo*))Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, GcAchievementData_t3481375915 , const MethodInfo*))Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, GcScoreData_t2181296590 , const MethodInfo*))Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Touch>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Touch_t4210255029 , const MethodInfo*))Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.InputField/ContentType>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UICharInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, UICharInfo_t65807484 , const MethodInfo*))Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UILineInfo>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, UILineInfo_t4113875482 , const MethodInfo*))Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIVertex>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, UIVertex_t4244065212 , const MethodInfo*))Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector2>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Vector2_t4282066565 , const MethodInfo*))Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector3>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Vector3_t4282066566 , const MethodInfo*))Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector4>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Vector4_t4282066567 , const MethodInfo*))Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.VR.VRDeviceType>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, QualitySettings_t2308822883 , const MethodInfo*))Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, Preset_t8910124 , const MethodInfo*))Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, QualitySettings_t2868270621 , const MethodInfo*))Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676_gshared)(__this, ___item0, method) // System.Int32 System.Array::InternalArray__IndexOf<WMG_Data_Source/WMG_VariableTypes>(T) extern "C" int32_t Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737(__this, ___item0, method) (( int32_t (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737_gshared)(__this, ___item0, method) // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T) extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m268542275_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method); #define Array_LastIndexOf_TisIl2CppObject_m268542275(__this /* static, unused */, ___array0, ___value1, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, const MethodInfo*))Array_LastIndexOf_TisIl2CppObject_m268542275_gshared)(__this /* static, unused */, ___array0, ___value1, method) // System.Int32 System.Array::LastIndexOf<System.Object>(!!0[],!!0,System.Int32) extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m1100669044_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* p0, Il2CppObject * p1, int32_t p2, const MethodInfo* method); #define Array_LastIndexOf_TisIl2CppObject_m1100669044(__this /* static, unused */, p0, p1, p2, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, const MethodInfo*))Array_LastIndexOf_TisIl2CppObject_m1100669044_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Int32 System.Array::LastIndexOf<System.Object>(!!0[],!!0,System.Int32,System.Int32) extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m11770083_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* p0, Il2CppObject * p1, int32_t p2, int32_t p3, const MethodInfo* method); #define Array_LastIndexOf_TisIl2CppObject_m11770083(__this /* static, unused */, p0, p1, p2, p3, method) (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, int32_t, const MethodInfo*))Array_LastIndexOf_TisIl2CppObject_m11770083_gshared)(__this /* static, unused */, p0, p1, p2, p3, method) // System.Int32 UnityEngine.Mesh::SafeLength<System.Int32>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisInt32_t1153838500_m3487658462_gshared (Mesh_t4241756145 * __this, List_1_t2522024052 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisInt32_t1153838500_m3487658462(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t2522024052 *, const MethodInfo*))Mesh_SafeLength_TisInt32_t1153838500_m3487658462_gshared)(__this, ___values0, method) // System.Int32 UnityEngine.Mesh::SafeLength<System.Object>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisIl2CppObject_m3734723583_gshared (Mesh_t4241756145 * __this, List_1_t1244034627 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisIl2CppObject_m3734723583(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t1244034627 *, const MethodInfo*))Mesh_SafeLength_TisIl2CppObject_m3734723583_gshared)(__this, ___values0, method) // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Color32>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisColor32_t598853688_m1518847698_gshared (Mesh_t4241756145 * __this, List_1_t1967039240 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisColor32_t598853688_m1518847698(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t1967039240 *, const MethodInfo*))Mesh_SafeLength_TisColor32_t598853688_m1518847698_gshared)(__this, ___values0, method) // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector2>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector2_t4282066565_m961682405_gshared (Mesh_t4241756145 * __this, List_1_t1355284821 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisVector2_t4282066565_m961682405(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t1355284821 *, const MethodInfo*))Mesh_SafeLength_TisVector2_t4282066565_m961682405_gshared)(__this, ___values0, method) // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector3>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector3_t4282066566_m2423262404_gshared (Mesh_t4241756145 * __this, List_1_t1355284822 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisVector3_t4282066566_m2423262404(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t1355284822 *, const MethodInfo*))Mesh_SafeLength_TisVector3_t4282066566_m2423262404_gshared)(__this, ___values0, method) // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector4>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector4_t4282066567_m3884842403_gshared (Mesh_t4241756145 * __this, List_1_t1355284823 * ___values0, const MethodInfo* method); #define Mesh_SafeLength_TisVector4_t4282066567_m3884842403(__this, ___values0, method) (( int32_t (*) (Mesh_t4241756145 *, List_1_t1355284823 *, const MethodInfo*))Mesh_SafeLength_TisVector4_t4282066567_m3884842403_gshared)(__this, ___values0, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<AllSingleton/Contacts,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m523436603_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1173546528 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m523436603(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1173546528 *, const MethodInfo*))Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m523436603_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<AllSingleton/Contacts,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m3538835375_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t1173546528 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m3538835375(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1173546528 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m3538835375_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3718628771_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3718628771(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, const MethodInfo*))Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3718628771_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3800996057_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t1019035454 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3800996057(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3800996057_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3362583304_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t3279826981 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3362583304(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t3279826981 *, const MethodInfo*))Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3362583304_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3008866430_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t3279826981 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3008866430(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t3279826981 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3008866430_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3184215231_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t2001837556 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3184215231(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t2001837556 *, const MethodInfo*))Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3184215231_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3118078707_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t2001837556 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3118078707(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t2001837556 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3118078707_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m3200125998_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m3200125998(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, const MethodInfo*))Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m3200125998_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m790313833_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t184564025 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m790313833(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m790313833_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m2002680699_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m2002680699(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, const MethodInfo*))Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m2002680699_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderByDescending<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3854179185_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t1019035454 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3854179185(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3854179185_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3099477190_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, const MethodInfo* method); #define Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3099477190(__this /* static, unused */, ___source0, ___keySelector1, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, const MethodInfo*))Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3099477190_gshared)(__this /* static, unused */, ___source0, ___keySelector1, method) // System.Linq.IOrderedEnumerable`1<!!0> System.Linq.Enumerable::OrderByDescending<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<!!0>,System.Func`2<!!0,!!1>,System.Collections.Generic.IComparer`1<!!1>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3138525649_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* p0, Func_2_t184564025 * p1, Il2CppObject* p2, const MethodInfo* method); #define Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3138525649(__this /* static, unused */, p0, p1, p2, method) (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, const MethodInfo*))Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3138525649_gshared)(__this /* static, unused */, p0, p1, p2, method) // System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty/Getter`2<T,R>,System.Object) extern "C" Il2CppObject * MonoProperty_GetterAdapterFrame_TisIl2CppObject_TisIl2CppObject_m1731689598_gshared (Il2CppObject * __this /* static, unused */, Getter_2_t2712548107 * ___getter0, Il2CppObject * ___obj1, const MethodInfo* method); #define MonoProperty_GetterAdapterFrame_TisIl2CppObject_TisIl2CppObject_m1731689598(__this /* static, unused */, ___getter0, ___obj1, method) (( Il2CppObject * (*) (Il2CppObject * /* static, unused */, Getter_2_t2712548107 *, Il2CppObject *, const MethodInfo*))MonoProperty_GetterAdapterFrame_TisIl2CppObject_TisIl2CppObject_m1731689598_gshared)(__this /* static, unused */, ___getter0, ___obj1, method) // System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty/StaticGetter`1<R>,System.Object) extern "C" Il2CppObject * MonoProperty_StaticGetterAdapterFrame_TisIl2CppObject_m3228278087_gshared (Il2CppObject * __this /* static, unused */, StaticGetter_1_t3245381133 * ___getter0, Il2CppObject * ___obj1, const MethodInfo* method); #define MonoProperty_StaticGetterAdapterFrame_TisIl2CppObject_m3228278087(__this /* static, unused */, ___getter0, ___obj1, method) (( Il2CppObject * (*) (Il2CppObject * /* static, unused */, StaticGetter_1_t3245381133 *, Il2CppObject *, const MethodInfo*))MonoProperty_StaticGetterAdapterFrame_TisIl2CppObject_m3228278087_gshared)(__this /* static, unused */, ___getter0, ___obj1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1193809274_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1193809274(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1193809274_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m4277840466_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m4277840466(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m4277840466_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3893662906_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3893662906(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3893662906_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1431432794_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1431432794(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1431432794_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3571034998_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3571034998(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3571034998_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1869296454_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1869296454(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1869296454_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1646714633_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1646714633(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1646714633_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2914610139_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2914610139(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2914610139_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m4183419652_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m4183419652(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m4183419652_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2708124122_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2708124122(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2708124122_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m3395166778_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m3395166778(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m3395166778_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1562419059_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1562419059(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1562419059_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2872210141_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2872210141(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2872210141_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3640193476_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3640193476(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3640193476_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2510062175_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2510062175(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2510062175_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3034629155_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3034629155(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3034629155_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2912098178_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2912098178(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2912098178_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2184002880_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, float ___elapsed1, const MethodInfo* method); #define Tweener_DoUpdateDelay_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2184002880(__this /* static, unused */, ___t0, ___elapsed1, method) (( float (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, float, const MethodInfo*))Tweener_DoUpdateDelay_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2184002880_gshared)(__this /* static, unused */, ___t0, ___elapsed1, method) // System.String NGUITools::GetTypeName<System.Object>() extern "C" String_t* NGUITools_GetTypeName_TisIl2CppObject_m1633770405_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method); #define NGUITools_GetTypeName_TisIl2CppObject_m1633770405(__this /* static, unused */, method) (( String_t* (*) (Il2CppObject * /* static, unused */, const MethodInfo*))NGUITools_GetTypeName_TisIl2CppObject_m1633770405_gshared)(__this /* static, unused */, method) // System.Void LitJson.JsonMapper::RegisterExporter<System.Object>(LitJson.ExporterFunc`1<T>) extern "C" void JsonMapper_RegisterExporter_TisIl2CppObject_m354360644_gshared (Il2CppObject * __this /* static, unused */, ExporterFunc_1_t2892523986 * ___exporter0, const MethodInfo* method); #define JsonMapper_RegisterExporter_TisIl2CppObject_m354360644(__this /* static, unused */, ___exporter0, method) (( void (*) (Il2CppObject * /* static, unused */, ExporterFunc_1_t2892523986 *, const MethodInfo*))JsonMapper_RegisterExporter_TisIl2CppObject_m354360644_gshared)(__this /* static, unused */, ___exporter0, method) // System.Void LitJson.JsonMapper::RegisterImporter<System.Object,System.Object>(LitJson.ImporterFunc`2<TJson,TValue>) extern "C" void JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062_gshared (Il2CppObject * __this /* static, unused */, ImporterFunc_2_t2321565487 * ___importer0, const MethodInfo* method); #define JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062(__this /* static, unused */, ___importer0, method) (( void (*) (Il2CppObject * /* static, unused */, ImporterFunc_2_t2321565487 *, const MethodInfo*))JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062_gshared)(__this /* static, unused */, ___importer0, method) // System.Void NGUITools::Execute<System.Object>(UnityEngine.GameObject,System.String) extern "C" void NGUITools_Execute_TisIl2CppObject_m788594434_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___go0, String_t* ___funcName1, const MethodInfo* method); #define NGUITools_Execute_TisIl2CppObject_m788594434(__this /* static, unused */, ___go0, ___funcName1, method) (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, String_t*, const MethodInfo*))NGUITools_Execute_TisIl2CppObject_m788594434_gshared)(__this /* static, unused */, ___go0, ___funcName1, method) // !!0[] UnityEngine.GameObject::GetComponents<System.Object>() extern "C" ObjectU5BU5D_t1108656482* GameObject_GetComponents_TisIl2CppObject_m313358914_gshared (GameObject_t3674682005 * __this, const MethodInfo* method); #define GameObject_GetComponents_TisIl2CppObject_m313358914(__this, method) (( ObjectU5BU5D_t1108656482* (*) (GameObject_t3674682005 *, const MethodInfo*))GameObject_GetComponents_TisIl2CppObject_m313358914_gshared)(__this, method) // System.Void NGUITools::ExecuteAll<System.Object>(UnityEngine.GameObject,System.String) extern "C" void NGUITools_ExecuteAll_TisIl2CppObject_m4191004063_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___root0, String_t* ___funcName1, const MethodInfo* method); #define NGUITools_ExecuteAll_TisIl2CppObject_m4191004063(__this /* static, unused */, ___root0, ___funcName1, method) (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, String_t*, const MethodInfo*))NGUITools_ExecuteAll_TisIl2CppObject_m4191004063_gshared)(__this /* static, unused */, ___root0, ___funcName1, method) // System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>) extern "C" void Array_ForEach_TisIl2CppObject_m1927038056_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Action_1_t271665211 * ___action1, const MethodInfo* method); #define Array_ForEach_TisIl2CppObject_m1927038056(__this /* static, unused */, ___array0, ___action1, method) (( void (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Action_1_t271665211 *, const MethodInfo*))Array_ForEach_TisIl2CppObject_m1927038056_gshared)(__this /* static, unused */, ___array0, ___action1, method) // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/Contacts>(T) extern "C" void Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979(__this, ___item0, method) (( void (*) (Il2CppArray *, Contacts_t352143704 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/detailsProperty>(T) extern "C" void Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149(__this, ___item0, method) (( void (*) (Il2CppArray *, detailsProperty_t1057943986 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/DeviceDetailedInformation>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812(__this, ___item0, method) (( void (*) (Il2CppArray *, DeviceDetailedInformation_t4234054081 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/surveyProperty>(T) extern "C" void Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631(__this, ___item0, method) (( void (*) (Il2CppArray *, surveyProperty_t884569204 , const MethodInfo*))Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459(__this, ___item0, method) (( void (*) (Il2CppArray *, DeviceDetailedInformation_t3668321760 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746(__this, ___item0, method) (( void (*) (Il2CppArray *, DeviceProperties_t2492701999 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern "C" void Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816(__this, ___item0, method) (( void (*) (Il2CppArray *, peopleOrderPatrol_t4292956421 , const MethodInfo*))Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern "C" void Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468(__this, ___item0, method) (( void (*) (Il2CppArray *, peoplePatrol_t2522972577 , const MethodInfo*))Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern "C" void Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239(__this, ___item0, method) (( void (*) (Il2CppArray *, StaffInformatino_t2939901716 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern "C" void Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179(__this, ___item0, method) (( void (*) (Il2CppArray *, ControlPoint_t3116362155 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<HighlightingSystem.Highlighter/Mode>(T) extern "C" void Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<HighlightingSystem.HighlighterRenderer/Data>(T) extern "C" void Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161(__this, ___item0, method) (( void (*) (Il2CppArray *, Data_t3265512710 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<LitJson.ArrayMetadata>(T) extern "C" void Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572(__this, ___item0, method) (( void (*) (Il2CppArray *, ArrayMetadata_t4058342910 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<LitJson.ObjectMetadata>(T) extern "C" void Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248(__this, ___item0, method) (( void (*) (Il2CppArray *, ObjectMetadata_t2009294498 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<LitJson.PropertyMetadata>(T) extern "C" void Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566(__this, ___item0, method) (( void (*) (Il2CppArray *, PropertyMetadata_t4066634616 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern "C" void Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620(__this, ___item0, method) (( void (*) (Il2CppArray *, TableRange_t3372848153 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern "C" void Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<Mono.Security.Uri/UriScheme>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990(__this, ___item0, method) (( void (*) (Il2CppArray *, UriScheme_t3372318283 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<Mono.Xml2.XmlTextReader/TagName>(T) extern "C" void Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376(__this, ___item0, method) (( void (*) (Il2CppArray *, TagName_t2016006645 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<PresetSelector/Preset>(T) extern "C" void Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595(__this, ___item0, method) (( void (*) (Il2CppArray *, Preset_t2393284144 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.ArraySegment`1<System.Byte>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780(__this, ___item0, method) (( void (*) (Il2CppArray *, ArraySegment_1_t2188033608 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T) extern "C" void Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548(__this, ___item0, method) (( void (*) (Il2CppArray *, bool, const MethodInfo*))Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T) extern "C" void Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722(__this, ___item0, method) (( void (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T) extern "C" void Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272(__this, ___item0, method) (( void (*) (Il2CppArray *, Il2CppChar, const MethodInfo*))Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735(__this, ___item0, method) (( void (*) (Il2CppArray *, DictionaryEntry_t1751606614 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324(__this, ___item0, method) (( void (*) (Il2CppArray *, Link_t2122599155 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t1049882445 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t4066860316 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t3980314737 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t1832195516 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t4078114400 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t1840487222 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t2545618620 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t3222658402 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t1944668977 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478(__this, ___item0, method) (( void (*) (Il2CppArray *, KeyValuePair_2_t3310123289 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Link>(T) extern "C" void Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396(__this, ___item0, method) (( void (*) (Il2CppArray *, Link_t2063667470 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable/Slot>(T) extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400(__this, ___item0, method) (( void (*) (Il2CppArray *, Slot_t2260530181 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.SortedList/Slot>(T) extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733(__this, ___item0, method) (( void (*) (Il2CppArray *, Slot_t2072023290 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477(__this, ___item0, method) (( void (*) (Il2CppArray *, DateTime_t4283661327 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357(__this, ___item0, method) (( void (*) (Il2CppArray *, Decimal_t1954350631 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507(__this, ___item0, method) (( void (*) (Il2CppArray *, double, const MethodInfo*))Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T) extern "C" void Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376(__this, ___item0, method) (( void (*) (Il2CppArray *, int16_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T) extern "C" void Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T) extern "C" void Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089(__this, ___item0, method) (( void (*) (Il2CppArray *, int64_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T) extern "C" void Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017(__this, ___item0, method) (( void (*) (Il2CppArray *, IntPtr_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T) extern "C" void Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489(__this, ___item0, method) (( void (*) (Il2CppArray *, Il2CppObject *, const MethodInfo*))Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T) extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730(__this, ___item0, method) (( void (*) (Il2CppArray *, CustomAttributeNamedArgument_t3059612989 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T) extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091(__this, ___item0, method) (( void (*) (Il2CppArray *, CustomAttributeTypedArgument_t3301293422 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILGenerator/LabelData>(T) extern "C" void Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275(__this, ___item0, method) (( void (*) (Il2CppArray *, LabelData_t3207823784 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern "C" void Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869(__this, ___item0, method) (( void (*) (Il2CppArray *, LabelFixup_t660379442 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILTokenInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416(__this, ___item0, method) (( void (*) (Il2CppArray *, ILTokenInfo_t1354080954 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T) extern "C" void Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327(__this, ___item0, method) (( void (*) (Il2CppArray *, ParameterModifier_t741930026 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceReader/ResourceCacheItem>(T) extern "C" void Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236(__this, ___item0, method) (( void (*) (Il2CppArray *, ResourceCacheItem_t2113902833 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceReader/ResourceInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317(__this, ___item0, method) (( void (*) (Il2CppArray *, ResourceInfo_t4013605874 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern "C" void Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720(__this, ___item0, method) (( void (*) (Il2CppArray *, uint8_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T) extern "C" void Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935(__this, ___item0, method) (( void (*) (Il2CppArray *, int8_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern "C" void Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703(__this, ___item0, method) (( void (*) (Il2CppArray *, X509ChainStatus_t766901931 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T) extern "C" void Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770(__this, ___item0, method) (( void (*) (Il2CppArray *, float, const MethodInfo*))Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.Mark>(T) extern "C" void Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661(__this, ___item0, method) (( void (*) (Il2CppArray *, Mark_t3811539797 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T) extern "C" void Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249(__this, ___item0, method) (( void (*) (Il2CppArray *, TimeSpan_t413522987 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593(__this, ___item0, method) (( void (*) (Il2CppArray *, uint16_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811(__this, ___item0, method) (( void (*) (Il2CppArray *, uint32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010(__this, ___item0, method) (( void (*) (Il2CppArray *, uint64_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Uri/UriScheme>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346(__this, ___item0, method) (( void (*) (Il2CppArray *, UriScheme_t1290668975 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlNamespaceManager/NsDecl>(T) extern "C" void Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854(__this, ___item0, method) (( void (*) (Il2CppArray *, NsDecl_t3658211563 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlNamespaceManager/NsScope>(T) extern "C" void Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598(__this, ___item0, method) (( void (*) (Il2CppArray *, NsScope_t1749213747 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<TypewriterEffect/FadeEntry>(T) extern "C" void Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920(__this, ___item0, method) (( void (*) (Il2CppArray *, FadeEntry_t2858472101 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UICamera/DepthEntry>(T) extern "C" void Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880(__this, ___item0, method) (( void (*) (Il2CppArray *, DepthEntry_t1145614469 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.AnimatorStateInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156(__this, ___item0, method) (( void (*) (Il2CppArray *, AnimatorStateInfo_t323110318 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Bounds>(T) extern "C" void Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271(__this, ___item0, method) (( void (*) (Il2CppArray *, Bounds_t2711641849 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color>(T) extern "C" void Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191(__this, ___item0, method) (( void (*) (Il2CppArray *, Color_t4194546905 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color32>(T) extern "C" void Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398(__this, ___item0, method) (( void (*) (Il2CppArray *, Color32_t598853688 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint>(T) extern "C" void Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522(__this, ___item0, method) (( void (*) (Il2CppArray *, ContactPoint_t243083348 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint2D>(T) extern "C" void Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804(__this, ___item0, method) (( void (*) (Il2CppArray *, ContactPoint2D_t4288432358 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.EventSystems.RaycastResult>(T) extern "C" void Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348(__this, ___item0, method) (( void (*) (Il2CppArray *, RaycastResult_t3762661364 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.Director.Playable>(T) extern "C" void Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716(__this, ___item0, method) (( void (*) (Il2CppArray *, Playable_t70832698 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.KeyCode>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T) extern "C" void Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928(__this, ___item0, method) (( void (*) (Il2CppArray *, Keyframe_t4079056114 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ParticleSystem/Particle>(T) extern "C" void Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732(__this, ___item0, method) (( void (*) (Il2CppArray *, Particle_t405273609 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit>(T) extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068(__this, ___item0, method) (( void (*) (Il2CppArray *, RaycastHit_t4003175726 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit2D>(T) extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414(__this, ___item0, method) (( void (*) (Il2CppArray *, RaycastHit2D_t1374744384 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern "C" void Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204(__this, ___item0, method) (( void (*) (Il2CppArray *, RenderTargetIdentifier_t1322160672 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents/HitInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468(__this, ___item0, method) (( void (*) (Il2CppArray *, HitInfo_t3209134097 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern "C" void Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131(__this, ___item0, method) (( void (*) (Il2CppArray *, GcAchievementData_t3481375915 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern "C" void Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038(__this, ___item0, method) (( void (*) (Il2CppArray *, GcScoreData_t2181296590 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Touch>(T) extern "C" void Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203(__this, ___item0, method) (( void (*) (Il2CppArray *, Touch_t4210255029 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.InputField/ContentType>(T) extern "C" void Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UICharInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170(__this, ___item0, method) (( void (*) (Il2CppArray *, UICharInfo_t65807484 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UILineInfo>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256(__this, ___item0, method) (( void (*) (Il2CppArray *, UILineInfo_t4113875482 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIVertex>(T) extern "C" void Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610(__this, ___item0, method) (( void (*) (Il2CppArray *, UIVertex_t4244065212 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector2>(T) extern "C" void Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531(__this, ___item0, method) (( void (*) (Il2CppArray *, Vector2_t4282066565 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector3>(T) extern "C" void Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052(__this, ___item0, method) (( void (*) (Il2CppArray *, Vector3_t4282066566 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector4>(T) extern "C" void Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573(__this, ___item0, method) (( void (*) (Il2CppArray *, Vector4_t4282066567 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.VR.VRDeviceType>(T) extern "C" void Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern "C" void Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630(__this, ___item0, method) (( void (*) (Il2CppArray *, QualitySettings_t2308822883 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern "C" void Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119(__this, ___item0, method) (( void (*) (Il2CppArray *, Preset_t8910124 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern "C" void Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872(__this, ___item0, method) (( void (*) (Il2CppArray *, QualitySettings_t2868270621 , const MethodInfo*))Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_Add<WMG_Data_Source/WMG_VariableTypes>(T) extern "C" void Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method); #define Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773(__this, ___item0, method) (( void (*) (Il2CppArray *, int32_t, const MethodInfo*))Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773_gshared)(__this, ___item0, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/Contacts>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117_gshared (Il2CppArray * __this, ContactsU5BU5D_t2097638985* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, ContactsU5BU5D_t2097638985*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/detailsProperty>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213_gshared (Il2CppArray * __this, detailsPropertyU5BU5D_t3868157767* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, detailsPropertyU5BU5D_t3868157767*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/DeviceDetailedInformation>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870_gshared (Il2CppArray * __this, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, DeviceDetailedInformationU5BU5D_t1518729756*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/surveyProperty>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609_gshared (Il2CppArray * __this, surveyPropertyU5BU5D_t3751806781* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, surveyPropertyU5BU5D_t3751806781*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047_gshared (Il2CppArray * __this, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, DeviceDetailedInformationU5BU5D_t2899977889*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/DeviceProperties>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366_gshared (Il2CppArray * __this, DevicePropertiesU5BU5D_t665138486* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, DevicePropertiesU5BU5D_t665138486*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366_gshared)(__this, ___array0, ___index1, method) // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[],System.Int32) extern "C" void Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914_gshared (Il2CppArray * __this, peopleOrderPatrolU5BU5D_t635926856* ___array0, int32_t ___index1, const MethodInfo* method); #define Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914(__this, ___array0, ___index1, method) (( void (*) (Il2CppArray *, peopleOrderPatrolU5BU5D_t635926856*, int32_t, const MethodInfo*))Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914_gshared)(__this, ___array0, ___index1, method) // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1967117138 * Extensions_Blendable_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m570433453_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method) { { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_isBlendable_19((bool)1); TweenerCore_3_t1967117138 * L_1 = ___t0; return L_1; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t4267772355 * Extensions_Blendable_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4024477958_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method) { { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_isBlendable_19((bool)1); TweenerCore_3_t4267772355 * L_1 = ___t0; return L_1; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::Blendable<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3133199874 * Extensions_Blendable_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1607374437_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method) { { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_isBlendable_19((bool)1); TweenerCore_3_t3133199874 * L_1 = ___t0; return L_1; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::NoFrom<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t1558294869 * Extensions_NoFrom_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m4109982040_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method) { { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_isFromAllowed_52((bool)0); TweenerCore_3_t1558294869 * L_1 = ___t0; return L_1; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.Extensions::NoFrom<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" TweenerCore_3_t3243674587 * Extensions_NoFrom_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2841254922_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method) { { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_isFromAllowed_52((bool)0); TweenerCore_3_t3243674587 * L_1 = ___t0; return L_1; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468_MetadataUsageId; extern "C" TweenerCore_3_t67468338 * TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4167017468_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t67468338 * G_B11_0 = NULL; TweenerCore_3_t67468338 * G_B7_0 = NULL; TweenerCore_3_t67468338 * G_B9_0 = NULL; TweenerCore_3_t67468338 * G_B8_0 = NULL; TweenerCore_3_t67468338 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t67468338 * L_20 = (TweenerCore_3_t67468338 *)((TweenerCore_3_t67468338 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t67468338 * L_63 = (TweenerCore_3_t67468338 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t67468338 * L_65 = (TweenerCore_3_t67468338 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762_MetadataUsageId; extern "C" TweenerCore_3_t1391333008 * TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1247437762_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t1391333008 * G_B11_0 = NULL; TweenerCore_3_t1391333008 * G_B7_0 = NULL; TweenerCore_3_t1391333008 * G_B9_0 = NULL; TweenerCore_3_t1391333008 * G_B8_0 = NULL; TweenerCore_3_t1391333008 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t1391333008 * L_20 = (TweenerCore_3_t1391333008 *)((TweenerCore_3_t1391333008 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t1391333008 * L_63 = (TweenerCore_3_t1391333008 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t1391333008 * L_65 = (TweenerCore_3_t1391333008 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714_MetadataUsageId; extern "C" TweenerCore_3_t3986127068 * TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m2610932714_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t3986127068 * G_B11_0 = NULL; TweenerCore_3_t3986127068 * G_B7_0 = NULL; TweenerCore_3_t3986127068 * G_B9_0 = NULL; TweenerCore_3_t3986127068 * G_B8_0 = NULL; TweenerCore_3_t3986127068 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t3986127068 * L_20 = (TweenerCore_3_t3986127068 *)((TweenerCore_3_t3986127068 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t3986127068 * L_63 = (TweenerCore_3_t3986127068 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t3986127068 * L_65 = (TweenerCore_3_t3986127068 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826_MetadataUsageId; extern "C" TweenerCore_3_t2340078120 * TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2960786826_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t2340078120 * G_B11_0 = NULL; TweenerCore_3_t2340078120 * G_B7_0 = NULL; TweenerCore_3_t2340078120 * G_B9_0 = NULL; TweenerCore_3_t2340078120 * G_B8_0 = NULL; TweenerCore_3_t2340078120 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t2340078120 * L_20 = (TweenerCore_3_t2340078120 *)((TweenerCore_3_t2340078120 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t2340078120 * L_63 = (TweenerCore_3_t2340078120 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t2340078120 * L_65 = (TweenerCore_3_t2340078120 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366_MetadataUsageId; extern "C" TweenerCore_3_t1047223528 * TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1389659366_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t1047223528 * G_B11_0 = NULL; TweenerCore_3_t1047223528 * G_B7_0 = NULL; TweenerCore_3_t1047223528 * G_B9_0 = NULL; TweenerCore_3_t1047223528 * G_B8_0 = NULL; TweenerCore_3_t1047223528 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t1047223528 * L_20 = (TweenerCore_3_t1047223528 *)((TweenerCore_3_t1047223528 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t1047223528 * L_63 = (TweenerCore_3_t1047223528 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t1047223528 * L_65 = (TweenerCore_3_t1047223528 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646_MetadataUsageId; extern "C" TweenerCore_3_t775239064 * TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2912526646_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t775239064 * G_B11_0 = NULL; TweenerCore_3_t775239064 * G_B7_0 = NULL; TweenerCore_3_t775239064 * G_B9_0 = NULL; TweenerCore_3_t775239064 * G_B8_0 = NULL; TweenerCore_3_t775239064 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t775239064 * L_20 = (TweenerCore_3_t775239064 *)((TweenerCore_3_t775239064 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t775239064 * L_63 = (TweenerCore_3_t775239064 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t775239064 * L_65 = (TweenerCore_3_t775239064 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699_MetadataUsageId; extern "C" TweenerCore_3_t1558294869 * TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m460138699_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t1558294869 * G_B11_0 = NULL; TweenerCore_3_t1558294869 * G_B7_0 = NULL; TweenerCore_3_t1558294869 * G_B9_0 = NULL; TweenerCore_3_t1558294869 * G_B8_0 = NULL; TweenerCore_3_t1558294869 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t1558294869 * L_20 = (TweenerCore_3_t1558294869 *)((TweenerCore_3_t1558294869 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t1558294869 * L_63 = (TweenerCore_3_t1558294869 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t1558294869 * L_65 = (TweenerCore_3_t1558294869 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155_MetadataUsageId; extern "C" TweenerCore_3_t4126622711 * TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1465270155_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t4126622711 * G_B11_0 = NULL; TweenerCore_3_t4126622711 * G_B7_0 = NULL; TweenerCore_3_t4126622711 * G_B9_0 = NULL; TweenerCore_3_t4126622711 * G_B8_0 = NULL; TweenerCore_3_t4126622711 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t4126622711 * L_20 = (TweenerCore_3_t4126622711 *)((TweenerCore_3_t4126622711 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t4126622711 * L_63 = (TweenerCore_3_t4126622711 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t4126622711 * L_65 = (TweenerCore_3_t4126622711 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884_MetadataUsageId; extern "C" TweenerCore_3_t2006159996 * TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m202912884_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t2006159996 * G_B11_0 = NULL; TweenerCore_3_t2006159996 * G_B7_0 = NULL; TweenerCore_3_t2006159996 * G_B9_0 = NULL; TweenerCore_3_t2006159996 * G_B8_0 = NULL; TweenerCore_3_t2006159996 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t2006159996 * L_20 = (TweenerCore_3_t2006159996 *)((TweenerCore_3_t2006159996 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t2006159996 * L_63 = (TweenerCore_3_t2006159996 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t2006159996 * L_65 = (TweenerCore_3_t2006159996 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988_MetadataUsageId; extern "C" TweenerCore_3_t1967117138 * TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3602872988_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t1967117138 * G_B11_0 = NULL; TweenerCore_3_t1967117138 * G_B7_0 = NULL; TweenerCore_3_t1967117138 * G_B9_0 = NULL; TweenerCore_3_t1967117138 * G_B8_0 = NULL; TweenerCore_3_t1967117138 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t1967117138 * L_20 = (TweenerCore_3_t1967117138 *)((TweenerCore_3_t1967117138 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t1967117138 * L_63 = (TweenerCore_3_t1967117138 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t1967117138 * L_65 = (TweenerCore_3_t1967117138 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962_MetadataUsageId; extern "C" TweenerCore_3_t2280135028 * TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m149929962_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t2280135028 * G_B11_0 = NULL; TweenerCore_3_t2280135028 * G_B7_0 = NULL; TweenerCore_3_t2280135028 * G_B9_0 = NULL; TweenerCore_3_t2280135028 * G_B8_0 = NULL; TweenerCore_3_t2280135028 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t2280135028 * L_20 = (TweenerCore_3_t2280135028 *)((TweenerCore_3_t2280135028 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t2280135028 * L_63 = (TweenerCore_3_t2280135028 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t2280135028 * L_65 = (TweenerCore_3_t2280135028 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605_MetadataUsageId; extern "C" TweenerCore_3_t4267772355 * TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m567591605_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t4267772355 * G_B11_0 = NULL; TweenerCore_3_t4267772355 * G_B7_0 = NULL; TweenerCore_3_t4267772355 * G_B9_0 = NULL; TweenerCore_3_t4267772355 * G_B8_0 = NULL; TweenerCore_3_t4267772355 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t4267772355 * L_20 = (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t4267772355 * L_63 = (TweenerCore_3_t4267772355 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t4267772355 * L_65 = (TweenerCore_3_t4267772355 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333_MetadataUsageId; extern "C" TweenerCore_3_t675430313 * TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3206016333_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t675430313 * G_B11_0 = NULL; TweenerCore_3_t675430313 * G_B7_0 = NULL; TweenerCore_3_t675430313 * G_B9_0 = NULL; TweenerCore_3_t675430313 * G_B8_0 = NULL; TweenerCore_3_t675430313 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t675430313 * L_20 = (TweenerCore_3_t675430313 *)((TweenerCore_3_t675430313 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t675430313 * L_63 = (TweenerCore_3_t675430313 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t675430313 * L_65 = (TweenerCore_3_t675430313 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188_MetadataUsageId; extern "C" TweenerCore_3_t980437966 * TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m709627188_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t980437966 * G_B11_0 = NULL; TweenerCore_3_t980437966 * G_B7_0 = NULL; TweenerCore_3_t980437966 * G_B9_0 = NULL; TweenerCore_3_t980437966 * G_B8_0 = NULL; TweenerCore_3_t980437966 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t980437966 * L_20 = (TweenerCore_3_t980437966 *)((TweenerCore_3_t980437966 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t980437966 * L_63 = (TweenerCore_3_t980437966 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t980437966 * L_65 = (TweenerCore_3_t980437966 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967_MetadataUsageId; extern "C" TweenerCore_3_t66211615 * TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3065973967_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t66211615 * G_B11_0 = NULL; TweenerCore_3_t66211615 * G_B7_0 = NULL; TweenerCore_3_t66211615 * G_B9_0 = NULL; TweenerCore_3_t66211615 * G_B8_0 = NULL; TweenerCore_3_t66211615 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t66211615 * L_20 = (TweenerCore_3_t66211615 *)((TweenerCore_3_t66211615 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t66211615 * L_63 = (TweenerCore_3_t66211615 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t66211615 * L_65 = (TweenerCore_3_t66211615 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227_MetadataUsageId; extern "C" TweenerCore_3_t3243674587 * TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m594958227_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t3243674587 * G_B11_0 = NULL; TweenerCore_3_t3243674587 * G_B7_0 = NULL; TweenerCore_3_t3243674587 * G_B9_0 = NULL; TweenerCore_3_t3243674587 * G_B8_0 = NULL; TweenerCore_3_t3243674587 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t3243674587 * L_20 = (TweenerCore_3_t3243674587 *)((TweenerCore_3_t3243674587 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t3243674587 * L_63 = (TweenerCore_3_t3243674587 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t3243674587 * L_65 = (TweenerCore_3_t3243674587 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826_MetadataUsageId; extern "C" TweenerCore_3_t3133199874 * TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1307779826_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t3133199874 * G_B11_0 = NULL; TweenerCore_3_t3133199874 * G_B7_0 = NULL; TweenerCore_3_t3133199874 * G_B9_0 = NULL; TweenerCore_3_t3133199874 * G_B8_0 = NULL; TweenerCore_3_t3133199874 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t3133199874 * L_20 = (TweenerCore_3_t3133199874 *)((TweenerCore_3_t3133199874 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t3133199874 * L_63 = (TweenerCore_3_t3133199874 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t3133199874 * L_65 = (TweenerCore_3_t3133199874 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.Core.TweenManager::GetTweener<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>() extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debugger_t799697389_il2cpp_TypeInfo_var; extern Il2CppClass* Int32_t1153838500_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral4017659301; extern Il2CppCodeGenString* _stringLiteral1133; extern Il2CppCodeGenString* _stringLiteral47; extern Il2CppCodeGenString* _stringLiteral1134; extern const uint32_t TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464_MetadataUsageId; extern "C" TweenerCore_3_t990994486 * TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (TweenManager_GetTweener_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m1905932464_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Type_t * V_2 = NULL; int32_t V_3 = 0; Tween_t675658773 * V_4 = NULL; int32_t V_5 = 0; int32_t V_6 = 0; TweenerCore_3_t990994486 * G_B11_0 = NULL; TweenerCore_3_t990994486 * G_B7_0 = NULL; TweenerCore_3_t990994486 * G_B9_0 = NULL; TweenerCore_3_t990994486 * G_B8_0 = NULL; TweenerCore_3_t990994486 * G_B10_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_0 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_010c; } } { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_1; Type_t * L_2 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_2; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); V_2 = (Type_t *)L_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_4 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); V_3 = (int32_t)L_4; goto IL_00be; } IL_0037: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_5 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_6 = V_3; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Tween_t675658773 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_4 = (Tween_t675658773 *)L_8; Tween_t675658773 * L_9 = V_4; if (!L_9) { goto IL_00ba; } } { Tween_t675658773 * L_10 = V_4; NullCheck(L_10); Type_t * L_11 = (Type_t *)L_10->get_typeofT1_32(); Type_t * L_12 = V_0; if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_00ba; } } { Tween_t675658773 * L_13 = V_4; NullCheck(L_13); Type_t * L_14 = (Type_t *)L_13->get_typeofT2_33(); Type_t * L_15 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_14) == ((Il2CppObject*)(Type_t *)L_15)))) { goto IL_00ba; } } { Tween_t675658773 * L_16 = V_4; NullCheck(L_16); Type_t * L_17 = (Type_t *)L_16->get_typeofTPlugOptions_34(); Type_t * L_18 = V_2; if ((!(((Il2CppObject*)(Type_t *)L_17) == ((Il2CppObject*)(Type_t *)L_18)))) { goto IL_00ba; } } { Tween_t675658773 * L_19 = V_4; TweenerCore_3_t990994486 * L_20 = (TweenerCore_3_t990994486 *)((TweenerCore_3_t990994486 *)Castclass(L_19, IL2CPP_RGCTX_DATA(method->rgctx_data, 3))); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_20, /*hidden argument*/NULL); TweenU5BU5D_t2368679928* L_21 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_22 = V_3; NullCheck(L_21); IL2CPP_ARRAY_BOUNDS_CHECK(L_21, L_22); ArrayElementTypeCheck (L_21, NULL); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Tween_t675658773 *)NULL); int32_t L_23 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); int32_t L_24 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B7_0 = L_20; if ((((int32_t)L_23) == ((int32_t)L_24))) { G_B11_0 = L_20; goto IL_00ad; } } { int32_t L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_26 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_25) == ((uint32_t)L_26)))) { G_B9_0 = G_B7_0; goto IL_0099; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_27 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_27-(int32_t)1))); G_B11_0 = G_B8_0; goto IL_00ad; } IL_0099: { int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_29 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); G_B10_0 = G_B9_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { G_B11_0 = G_B9_0; goto IL_00ad; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_30 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__minPooledTweenerId_28(((int32_t)((int32_t)L_30+(int32_t)1))); G_B11_0 = G_B10_0; } IL_00ad: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_31 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_31-(int32_t)1))); return G_B11_0; } IL_00ba: { int32_t L_32 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_32-(int32_t)1)); } IL_00be: { int32_t L_33 = V_3; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_34 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__minPooledTweenerId_28(); if ((((int32_t)L_33) > ((int32_t)((int32_t)((int32_t)L_34-(int32_t)1))))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_35 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_36 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_35) < ((int32_t)L_36))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenU5BU5D_t2368679928* L_37 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__pooledTweeners_22(); int32_t L_38 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); NullCheck(L_37); IL2CPP_ARRAY_BOUNDS_CHECK(L_37, L_38); ArrayElementTypeCheck (L_37, NULL); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (Tween_t675658773 *)NULL); int32_t L_39 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get__maxPooledTweenerId_29(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set__maxPooledTweenerId_29(((int32_t)((int32_t)L_39-(int32_t)1))); int32_t L_40 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totPooledTweeners_16(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totPooledTweeners_16(((int32_t)((int32_t)L_40-(int32_t)1))); int32_t L_41 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_41-(int32_t)1))); goto IL_018a; } IL_010c: { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_42 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); int32_t L_43 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); if ((((int32_t)L_42) < ((int32_t)((int32_t)((int32_t)L_43-(int32_t)1))))) { goto IL_018a; } } { IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_44 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); V_5 = (int32_t)L_44; int32_t L_45 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); V_6 = (int32_t)L_45; TweenManager_IncreaseCapacities_m4137155233(NULL /*static, unused*/, (int32_t)1, /*hidden argument*/NULL); int32_t L_46 = ((Debugger_t799697389_StaticFields*)Debugger_t799697389_il2cpp_TypeInfo_var->static_fields)->get_logPriority_0(); if ((((int32_t)L_46) < ((int32_t)1))) { goto IL_018a; } } { int32_t L_47 = V_5; int32_t L_48 = L_47; Il2CppObject * L_49 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_48); int32_t L_50 = V_6; int32_t L_51 = L_50; Il2CppObject * L_52 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_49, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_52, /*hidden argument*/NULL); NullCheck((String_t*)_stringLiteral4017659301); String_t* L_54 = String_Replace_m2915759397((String_t*)_stringLiteral4017659301, (String_t*)_stringLiteral1133, (String_t*)L_53, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_55 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxTweeners_4(); int32_t L_56 = L_55; Il2CppObject * L_57 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_56); int32_t L_58 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_maxSequences_5(); int32_t L_59 = L_58; Il2CppObject * L_60 = Box(Int32_t1153838500_il2cpp_TypeInfo_var, &L_59); String_t* L_61 = String_Concat_m2809334143(NULL /*static, unused*/, (Il2CppObject *)L_57, (Il2CppObject *)_stringLiteral47, (Il2CppObject *)L_60, /*hidden argument*/NULL); NullCheck((String_t*)L_54); String_t* L_62 = String_Replace_m2915759397((String_t*)L_54, (String_t*)_stringLiteral1134, (String_t*)L_61, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_62, /*hidden argument*/NULL); } IL_018a: { TweenerCore_3_t990994486 * L_63 = (TweenerCore_3_t990994486 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 3)); (( void (*) (TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(L_63, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); int32_t L_64 = ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->get_totTweeners_18(); ((TweenManager_t4283858702_StaticFields*)TweenManager_t4283858702_il2cpp_TypeInfo_var->static_fields)->set_totTweeners_18(((int32_t)((int32_t)L_64+(int32_t)1))); TweenerCore_3_t990994486 * L_65 = (TweenerCore_3_t990994486 *)L_63; TweenManager_AddActiveTween_m1869434239(NULL /*static, unused*/, (Tween_t675658773 *)L_65, /*hidden argument*/NULL); return L_65; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702_MetadataUsageId; extern "C" TweenerCore_3_t67468338 * DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t27465137 * ___getter0, DOSetter_1_t1064104965 * ___setter1, Color2_t2672154097 ___endValue2, float ___duration3, ABSTweenPlugin_3_t551274153 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m4224158702_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t67468338 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t67468338 * L_0 = (( TweenerCore_3_t67468338 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t67468338 *)L_0; TweenerCore_3_t67468338 * L_1 = V_0; DOGetter_1_t27465137 * L_2 = ___getter0; DOSetter_1_t1064104965 * L_3 = ___setter1; Color2_t2672154097 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t551274153 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, DOGetter_1_t27465137 *, DOSetter_1_t1064104965 *, Color2_t2672154097 , float, ABSTweenPlugin_3_t551274153 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_1, (DOGetter_1_t27465137 *)L_2, (DOSetter_1_t1064104965 *)L_3, (Color2_t2672154097 )L_4, (float)L_5, (ABSTweenPlugin_3_t551274153 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t67468338 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t67468338 *)NULL; } IL_0022: { TweenerCore_3_t67468338 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996_MetadataUsageId; extern "C" TweenerCore_3_t1391333008 * DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1223537605 * ___getter0, DOSetter_1_t2260177433 * ___setter1, double ___endValue2, float ___duration3, ABSTweenPlugin_3_t1875138823 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3793226996_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1391333008 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t1391333008 * L_0 = (( TweenerCore_3_t1391333008 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t1391333008 *)L_0; TweenerCore_3_t1391333008 * L_1 = V_0; DOGetter_1_t1223537605 * L_2 = ___getter0; DOSetter_1_t2260177433 * L_3 = ___setter1; double L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1875138823 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, DOGetter_1_t1223537605 *, DOSetter_1_t2260177433 *, double, float, ABSTweenPlugin_3_t1875138823 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_1, (DOGetter_1_t1223537605 *)L_2, (DOSetter_1_t2260177433 *)L_3, (double)L_4, (float)L_5, (ABSTweenPlugin_3_t1875138823 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t1391333008 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t1391333008 *)NULL; } IL_0022: { TweenerCore_3_t1391333008 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948_MetadataUsageId; extern "C" TweenerCore_3_t3986127068 * DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t2804116836 * ___getter0, DOSetter_1_t3840756664 * ___setter1, int32_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t174965587 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m433841948_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3986127068 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t3986127068 * L_0 = (( TweenerCore_3_t3986127068 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t3986127068 *)L_0; TweenerCore_3_t3986127068 * L_1 = V_0; DOGetter_1_t2804116836 * L_2 = ___getter0; DOSetter_1_t3840756664 * L_3 = ___setter1; int32_t L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t174965587 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, DOGetter_1_t2804116836 *, DOSetter_1_t3840756664 *, int32_t, float, ABSTweenPlugin_3_t174965587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_1, (DOGetter_1_t2804116836 *)L_2, (DOSetter_1_t3840756664 *)L_3, (int32_t)L_4, (float)L_5, (ABSTweenPlugin_3_t174965587 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t3986127068 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t3986127068 *)NULL; } IL_0022: { TweenerCore_3_t3986127068 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428_MetadataUsageId; extern "C" TweenerCore_3_t2340078120 * DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t2804116931 * ___getter0, DOSetter_1_t3840756759 * ___setter1, int64_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t2823883935 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1619978428_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2340078120 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t2340078120 * L_0 = (( TweenerCore_3_t2340078120 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t2340078120 *)L_0; TweenerCore_3_t2340078120 * L_1 = V_0; DOGetter_1_t2804116931 * L_2 = ___getter0; DOSetter_1_t3840756759 * L_3 = ___setter1; int64_t L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t2823883935 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, DOGetter_1_t2804116931 *, DOSetter_1_t3840756759 *, int64_t, float, ABSTweenPlugin_3_t2823883935 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_1, (DOGetter_1_t2804116931 *)L_2, (DOSetter_1_t3840756759 *)L_3, (int64_t)L_4, (float)L_5, (ABSTweenPlugin_3_t2823883935 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t2340078120 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t2340078120 *)NULL; } IL_0022: { TweenerCore_3_t2340078120 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760_MetadataUsageId; extern "C" TweenerCore_3_t1047223528 * DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1526127411 * ___getter0, DOSetter_1_t2562767239 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t1531029343 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m945364760_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1047223528 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t1047223528 * L_0 = (( TweenerCore_3_t1047223528 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t1047223528 *)L_0; TweenerCore_3_t1047223528 * L_1 = V_0; DOGetter_1_t1526127411 * L_2 = ___getter0; DOSetter_1_t2562767239 * L_3 = ___setter1; Il2CppObject * L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1531029343 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1531029343 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_1, (DOGetter_1_t1526127411 *)L_2, (DOSetter_1_t2562767239 *)L_3, (Il2CppObject *)L_4, (float)L_5, (ABSTweenPlugin_3_t1531029343 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t1047223528 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t1047223528 *)NULL; } IL_0022: { TweenerCore_3_t1047223528 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480_MetadataUsageId; extern "C" TweenerCore_3_t775239064 * DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1526127411 * ___getter0, DOSetter_1_t2562767239 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t1259044879 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2016837480_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t775239064 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t775239064 * L_0 = (( TweenerCore_3_t775239064 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t775239064 *)L_0; TweenerCore_3_t775239064 * L_1 = V_0; DOGetter_1_t1526127411 * L_2 = ___getter0; DOSetter_1_t2562767239 * L_3 = ___setter1; Il2CppObject * L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1259044879 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, DOGetter_1_t1526127411 *, DOSetter_1_t2562767239 *, Il2CppObject *, float, ABSTweenPlugin_3_t1259044879 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_1, (DOGetter_1_t1526127411 *)L_2, (DOSetter_1_t2562767239 *)L_3, (Il2CppObject *)L_4, (float)L_5, (ABSTweenPlugin_3_t1259044879 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t775239064 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t775239064 *)NULL; } IL_0022: { TweenerCore_3_t775239064 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885_MetadataUsageId; extern "C" TweenerCore_3_t1558294869 * DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1647230012 * ___getter0, DOSetter_1_t2683869840 * ___setter1, float ___endValue2, float ___duration3, ABSTweenPlugin_3_t2042100684 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1805365885_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1558294869 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t1558294869 * L_0 = (( TweenerCore_3_t1558294869 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t1558294869 *)L_0; TweenerCore_3_t1558294869 * L_1 = V_0; DOGetter_1_t1647230012 * L_2 = ___getter0; DOSetter_1_t2683869840 * L_3 = ___setter1; float L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t2042100684 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, DOGetter_1_t1647230012 *, DOSetter_1_t2683869840 *, float, float, ABSTweenPlugin_3_t2042100684 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_1, (DOGetter_1_t1647230012 *)L_2, (DOSetter_1_t2683869840 *)L_3, (float)L_4, (float)L_5, (ABSTweenPlugin_3_t2042100684 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t1558294869 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t1558294869 *)NULL; } IL_0022: { TweenerCore_3_t1558294869 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501_MetadataUsageId; extern "C" TweenerCore_3_t4126622711 * DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1674946317 * ___getter0, DOSetter_1_t2711586145 * ___setter1, uint32_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t315461230 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3063221501_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t4126622711 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t4126622711 * L_0 = (( TweenerCore_3_t4126622711 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t4126622711 *)L_0; TweenerCore_3_t4126622711 * L_1 = V_0; DOGetter_1_t1674946317 * L_2 = ___getter0; DOSetter_1_t2711586145 * L_3 = ___setter1; uint32_t L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t315461230 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, DOGetter_1_t1674946317 *, DOSetter_1_t2711586145 *, uint32_t, float, ABSTweenPlugin_3_t315461230 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_1, (DOGetter_1_t1674946317 *)L_2, (DOSetter_1_t2711586145 *)L_3, (uint32_t)L_4, (float)L_5, (ABSTweenPlugin_3_t315461230 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t4126622711 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t4126622711 *)NULL; } IL_0022: { TweenerCore_3_t4126622711 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086_MetadataUsageId; extern "C" TweenerCore_3_t2006159996 * DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1674946412 * ___getter0, DOSetter_1_t2711586240 * ___setter1, uint64_t ___endValue2, float ___duration3, ABSTweenPlugin_3_t2489965811 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m2234818086_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2006159996 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t2006159996 * L_0 = (( TweenerCore_3_t2006159996 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t2006159996 *)L_0; TweenerCore_3_t2006159996 * L_1 = V_0; DOGetter_1_t1674946412 * L_2 = ___getter0; DOSetter_1_t2711586240 * L_3 = ___setter1; uint64_t L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t2489965811 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, DOGetter_1_t1674946412 *, DOSetter_1_t2711586240 *, uint64_t, float, ABSTweenPlugin_3_t2489965811 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_1, (DOGetter_1_t1674946412 *)L_2, (DOSetter_1_t2711586240 *)L_3, (uint64_t)L_4, (float)L_5, (ABSTweenPlugin_3_t2489965811 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t2006159996 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t2006159996 *)NULL; } IL_0022: { TweenerCore_3_t2006159996 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510_MetadataUsageId; extern "C" TweenerCore_3_t1967117138 * DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1549857945 * ___getter0, DOSetter_1_t2586497773 * ___setter1, Color_t4194546905 ___endValue2, float ___duration3, ABSTweenPlugin_3_t2450922953 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1261818510_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1967117138 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t1967117138 * L_0 = (( TweenerCore_3_t1967117138 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t1967117138 *)L_0; TweenerCore_3_t1967117138 * L_1 = V_0; DOGetter_1_t1549857945 * L_2 = ___getter0; DOSetter_1_t2586497773 * L_3 = ___setter1; Color_t4194546905 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t2450922953 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, DOGetter_1_t1549857945 *, DOSetter_1_t2586497773 *, Color_t4194546905 , float, ABSTweenPlugin_3_t2450922953 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_1, (DOGetter_1_t1549857945 *)L_2, (DOSetter_1_t2586497773 *)L_3, (Color_t4194546905 )L_4, (float)L_5, (ABSTweenPlugin_3_t2450922953 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t1967117138 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t1967117138 *)NULL; } IL_0022: { TweenerCore_3_t1967117138 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692_MetadataUsageId; extern "C" TweenerCore_3_t2280135028 * DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t3203981218 * ___getter0, DOSetter_1_t4240621046 * ___setter1, Quaternion_t1553702882 ___endValue2, float ___duration3, ABSTweenPlugin_3_t2763940843 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1794001692_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2280135028 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t2280135028 * L_0 = (( TweenerCore_3_t2280135028 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t2280135028 *)L_0; TweenerCore_3_t2280135028 * L_1 = V_0; DOGetter_1_t3203981218 * L_2 = ___getter0; DOSetter_1_t4240621046 * L_3 = ___setter1; Quaternion_t1553702882 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t2763940843 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Quaternion_t1553702882 , float, ABSTweenPlugin_3_t2763940843 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_1, (DOGetter_1_t3203981218 *)L_2, (DOSetter_1_t4240621046 *)L_3, (Quaternion_t1553702882 )L_4, (float)L_5, (ABSTweenPlugin_3_t2763940843 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t2280135028 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t2280135028 *)NULL; } IL_0022: { TweenerCore_3_t2280135028 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391_MetadataUsageId; extern "C" TweenerCore_3_t4267772355 * DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t3203981218 * ___getter0, DOSetter_1_t4240621046 * ___setter1, Vector3_t4282066566 ___endValue2, float ___duration3, ABSTweenPlugin_3_t456610874 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1484700391_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t4267772355 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t4267772355 * L_0 = (( TweenerCore_3_t4267772355 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t4267772355 *)L_0; TweenerCore_3_t4267772355 * L_1 = V_0; DOGetter_1_t3203981218 * L_2 = ___getter0; DOSetter_1_t4240621046 * L_3 = ___setter1; Vector3_t4282066566 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t456610874 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t456610874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_1, (DOGetter_1_t3203981218 *)L_2, (DOSetter_1_t4240621046 *)L_3, (Vector3_t4282066566 )L_4, (float)L_5, (ABSTweenPlugin_3_t456610874 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t4267772355 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t4267772355 *)NULL; } IL_0022: { TweenerCore_3_t4267772355 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871_MetadataUsageId; extern "C" TweenerCore_3_t675430313 * DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1597215656 * ___getter0, DOSetter_1_t2633855484 * ___setter1, Rect_t4241904616 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1159236128 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m509015871_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t675430313 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t675430313 * L_0 = (( TweenerCore_3_t675430313 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t675430313 *)L_0; TweenerCore_3_t675430313 * L_1 = V_0; DOGetter_1_t1597215656 * L_2 = ___getter0; DOSetter_1_t2633855484 * L_3 = ___setter1; Rect_t4241904616 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1159236128 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, DOGetter_1_t1597215656 *, DOSetter_1_t2633855484 *, Rect_t4241904616 , float, ABSTweenPlugin_3_t1159236128 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_1, (DOGetter_1_t1597215656 *)L_2, (DOSetter_1_t2633855484 *)L_3, (Rect_t4241904616 )L_4, (float)L_5, (ABSTweenPlugin_3_t1159236128 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t675430313 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t675430313 *)NULL; } IL_0022: { TweenerCore_3_t675430313 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326_MetadataUsageId; extern "C" TweenerCore_3_t980437966 * DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377605 * ___getter0, DOSetter_1_t2674017433 * ___setter1, Vector2_t4282066565 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1464243781 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1356228326_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t980437966 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t980437966 * L_0 = (( TweenerCore_3_t980437966 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t980437966 *)L_0; TweenerCore_3_t980437966 * L_1 = V_0; DOGetter_1_t1637377605 * L_2 = ___getter0; DOSetter_1_t2674017433 * L_3 = ___setter1; Vector2_t4282066565 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1464243781 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, DOGetter_1_t1637377605 *, DOSetter_1_t2674017433 *, Vector2_t4282066565 , float, ABSTweenPlugin_3_t1464243781 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_1, (DOGetter_1_t1637377605 *)L_2, (DOSetter_1_t2674017433 *)L_3, (Vector2_t4282066565 )L_4, (float)L_5, (ABSTweenPlugin_3_t1464243781 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t980437966 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t980437966 *)NULL; } IL_0022: { TweenerCore_3_t980437966 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433_MetadataUsageId; extern "C" TweenerCore_3_t66211615 * DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t550017430 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1061530433_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t66211615 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t66211615 * L_0 = (( TweenerCore_3_t66211615 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t66211615 *)L_0; TweenerCore_3_t66211615 * L_1 = V_0; DOGetter_1_t1637377606 * L_2 = ___getter0; DOSetter_1_t2674017434 * L_3 = ___setter1; Il2CppObject * L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t550017430 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t550017430 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_1, (DOGetter_1_t1637377606 *)L_2, (DOSetter_1_t2674017434 *)L_3, (Il2CppObject *)L_4, (float)L_5, (ABSTweenPlugin_3_t550017430 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t66211615 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t66211615 *)NULL; } IL_0022: { TweenerCore_3_t66211615 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301_MetadataUsageId; extern "C" TweenerCore_3_t3243674587 * DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Il2CppObject * ___endValue2, float ___duration3, ABSTweenPlugin_3_t3727480402 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1178775301_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3243674587 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t3243674587 * L_0 = (( TweenerCore_3_t3243674587 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t3243674587 *)L_0; TweenerCore_3_t3243674587 * L_1 = V_0; DOGetter_1_t1637377606 * L_2 = ___getter0; DOSetter_1_t2674017434 * L_3 = ___setter1; Il2CppObject * L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t3727480402 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t3727480402 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_1, (DOGetter_1_t1637377606 *)L_2, (DOSetter_1_t2674017434 *)L_3, (Il2CppObject *)L_4, (float)L_5, (ABSTweenPlugin_3_t3727480402 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t3243674587 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t3243674587 *)NULL; } IL_0022: { TweenerCore_3_t3243674587 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596_MetadataUsageId; extern "C" TweenerCore_3_t3133199874 * DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377606 * ___getter0, DOSetter_1_t2674017434 * ___setter1, Vector3_t4282066566 ___endValue2, float ___duration3, ABSTweenPlugin_3_t3617005689 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2029762596_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3133199874 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t3133199874 * L_0 = (( TweenerCore_3_t3133199874 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t3133199874 *)L_0; TweenerCore_3_t3133199874 * L_1 = V_0; DOGetter_1_t1637377606 * L_2 = ___getter0; DOSetter_1_t2674017434 * L_3 = ___setter1; Vector3_t4282066566 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t3617005689 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Vector3_t4282066566 , float, ABSTweenPlugin_3_t3617005689 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_1, (DOGetter_1_t1637377606 *)L_2, (DOSetter_1_t2674017434 *)L_3, (Vector3_t4282066566 )L_4, (float)L_5, (ABSTweenPlugin_3_t3617005689 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t3133199874 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t3133199874 *)NULL; } IL_0022: { TweenerCore_3_t3133199874 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::ApplyTo<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866_MetadataUsageId; extern "C" TweenerCore_3_t990994486 * DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866_gshared (Il2CppObject * __this /* static, unused */, DOGetter_1_t1637377607 * ___getter0, DOSetter_1_t2674017435 * ___setter1, Vector4_t4282066567 ___endValue2, float ___duration3, ABSTweenPlugin_3_t1474800301 * ___plugin4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_ApplyTo_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2703296866_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t990994486 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); DOTween_InitCheck_m3805752347(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenerCore_3_t990994486 * L_0 = (( TweenerCore_3_t990994486 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (TweenerCore_3_t990994486 *)L_0; TweenerCore_3_t990994486 * L_1 = V_0; DOGetter_1_t1637377607 * L_2 = ___getter0; DOSetter_1_t2674017435 * L_3 = ___setter1; Vector4_t4282066567 L_4 = ___endValue2; float L_5 = ___duration3; ABSTweenPlugin_3_t1474800301 * L_6 = ___plugin4; bool L_7 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, DOGetter_1_t1637377607 *, DOSetter_1_t2674017435 *, Vector4_t4282066567 , float, ABSTweenPlugin_3_t1474800301 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_1, (DOGetter_1_t1637377607 *)L_2, (DOSetter_1_t2674017435 *)L_3, (Vector4_t4282066567 )L_4, (float)L_5, (ABSTweenPlugin_3_t1474800301 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); if (L_7) { goto IL_0022; } } { TweenerCore_3_t990994486 * L_8 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_8, (bool)1, /*hidden argument*/NULL); return (TweenerCore_3_t990994486 *)NULL; } IL_0022: { TweenerCore_3_t990994486 * L_9 = V_0; return L_9; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::To<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern const uint32_t DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266_MetadataUsageId; extern "C" TweenerCore_3_t2280135028 * DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266_gshared (Il2CppObject * __this /* static, unused */, ABSTweenPlugin_3_t2763940843 * ___plugin0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Quaternion_t1553702882 ___endValue3, float ___duration4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_To_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1724129266_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DOGetter_1_t3203981218 * L_0 = ___getter1; DOSetter_1_t4240621046 * L_1 = ___setter2; Quaternion_t1553702882 L_2 = ___endValue3; float L_3 = ___duration4; ABSTweenPlugin_3_t2763940843 * L_4 = ___plugin0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); TweenerCore_3_t2280135028 * L_5 = (( TweenerCore_3_t2280135028 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t3203981218 *, DOSetter_1_t4240621046 *, Quaternion_t1553702882 , float, ABSTweenPlugin_3_t2763940843 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (DOGetter_1_t3203981218 *)L_0, (DOSetter_1_t4240621046 *)L_1, (Quaternion_t1553702882 )L_2, (float)L_3, (ABSTweenPlugin_3_t2763940843 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions> DG.Tweening.DOTween::To<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern const uint32_t DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255_MetadataUsageId; extern "C" TweenerCore_3_t66211615 * DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255_gshared (Il2CppObject * __this /* static, unused */, ABSTweenPlugin_3_t550017430 * ___plugin0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (DOTween_To_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1042079255_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DOGetter_1_t1637377606 * L_0 = ___getter1; DOSetter_1_t2674017434 * L_1 = ___setter2; Il2CppObject * L_2 = ___endValue3; float L_3 = ___duration4; ABSTweenPlugin_3_t550017430 * L_4 = ___plugin0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); TweenerCore_3_t66211615 * L_5 = (( TweenerCore_3_t66211615 * (*) (Il2CppObject * /* static, unused */, DOGetter_1_t1637377606 *, DOSetter_1_t2674017434 *, Il2CppObject *, float, ABSTweenPlugin_3_t550017430 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (DOGetter_1_t1637377606 *)L_0, (DOSetter_1_t2674017434 *)L_1, (Il2CppObject *)L_2, (float)L_3, (ABSTweenPlugin_3_t550017430 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetCustomPlugin<System.Object,UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Dictionary_2_t2140522786_il2cpp_TypeInfo_var; extern const MethodInfo* Dictionary_2__ctor_m3725683735_MethodInfo_var; extern const MethodInfo* Dictionary_2_TryGetValue_m1887319664_MethodInfo_var; extern const MethodInfo* Dictionary_2_Add_m310272943_MethodInfo_var; extern const uint32_t PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773_MetadataUsageId; extern "C" ABSTweenPlugin_3_t550017430 * PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetCustomPlugin_TisIl2CppObject_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m939050773_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Il2CppObject * V_1 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Dictionary_2_t2140522786 * L_1 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__customPlugins_17(); if (L_1) { goto IL_0020; } } { Dictionary_2_t2140522786 * L_2 = (Dictionary_2_t2140522786 *)il2cpp_codegen_object_new(Dictionary_2_t2140522786_il2cpp_TypeInfo_var); Dictionary_2__ctor_m3725683735(L_2, (int32_t)((int32_t)20), /*hidden argument*/Dictionary_2__ctor_m3725683735_MethodInfo_var); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__customPlugins_17(L_2); goto IL_0036; } IL_0020: { Dictionary_2_t2140522786 * L_3 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__customPlugins_17(); Type_t * L_4 = V_0; NullCheck((Dictionary_2_t2140522786 *)L_3); bool L_5 = Dictionary_2_TryGetValue_m1887319664((Dictionary_2_t2140522786 *)L_3, (Type_t *)L_4, (Il2CppObject **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m1887319664_MethodInfo_var); if (!L_5) { goto IL_0036; } } { Il2CppObject * L_6 = V_1; return ((ABSTweenPlugin_3_t550017430 *)IsInst(L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); } IL_0036: { Il2CppObject * L_7 = (( Il2CppObject * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); V_1 = (Il2CppObject *)L_7; Dictionary_2_t2140522786 * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__customPlugins_17(); Type_t * L_9 = V_0; Il2CppObject * L_10 = V_1; NullCheck((Dictionary_2_t2140522786 *)L_8); Dictionary_2_Add_m310272943((Dictionary_2_t2140522786 *)L_8, (Type_t *)L_9, (Il2CppObject *)L_10, /*hidden argument*/Dictionary_2_Add_m310272943_MethodInfo_var); Il2CppObject * L_11 = V_1; return ((ABSTweenPlugin_3_t550017430 *)IsInst(L_11, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160_MetadataUsageId; extern "C" ABSTweenPlugin_3_t551274153 * PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m863670160_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t551274153 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t551274153 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1875138823 * PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2139371438_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1875138823 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1875138823 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566_MetadataUsageId; extern "C" ABSTweenPlugin_3_t174965587 * PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m46500566_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t174965587 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t174965587 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678_MetadataUsageId; extern "C" ABSTweenPlugin_3_t2823883935 * PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m396354678_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t2823883935 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t2823883935 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1531029343 * PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2281593042_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1531029343 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1531029343 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1259044879 * PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3500121890_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1259044879 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1259044879 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359_MetadataUsageId; extern "C" ABSTweenPlugin_3_t2042100684 * PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3388587359_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t2042100684 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t2042100684 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887_MetadataUsageId; extern "C" ABSTweenPlugin_3_t315461230 * PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3915040887_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t315461230 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t315461230 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560_MetadataUsageId; extern "C" ABSTweenPlugin_3_t2489965811 * PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1094846560_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t2489965811 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t2489965811 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304_MetadataUsageId; extern "C" ABSTweenPlugin_3_t2450922953 * PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2164800304_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t2450922953 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t2450922953 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486_MetadataUsageId; extern "C" ABSTweenPlugin_3_t2763940843 * PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m2910646486_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t2763940843 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t2763940843 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241_MetadataUsageId; extern "C" ABSTweenPlugin_3_t456610874 * PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3367847241_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t456610874 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t456610874 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1159236128 * PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3520402745_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1159236128 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1159236128 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1464243781 * PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1275627808_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1464243781 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1464243781 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379_MetadataUsageId; extern "C" ABSTweenPlugin_3_t550017430 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3380360379_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t550017430 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t550017430 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847_MetadataUsageId; extern "C" ABSTweenPlugin_3_t3727480402 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1160958847_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t3727480402 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t3727480402 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446_MetadataUsageId; extern "C" ABSTweenPlugin_3_t3617005689 * PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1873780446_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t3617005689 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t3617005689 *)NULL; } } // DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions> DG.Tweening.Plugins.Core.PluginsManager::GetDefaultPlugin<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>() extern const Il2CppType* Vector3_t4282066566_0_0_0_var; extern const Il2CppType* Vector3U5BU5D_t215400611_0_0_0_var; extern const Il2CppType* Quaternion_t1553702882_0_0_0_var; extern const Il2CppType* Vector2_t4282066565_0_0_0_var; extern const Il2CppType* Single_t4291918972_0_0_0_var; extern const Il2CppType* Color_t4194546905_0_0_0_var; extern const Il2CppType* Int32_t1153838500_0_0_0_var; extern const Il2CppType* Vector4_t4282066567_0_0_0_var; extern const Il2CppType* Rect_t4241904616_0_0_0_var; extern const Il2CppType* RectOffset_t3056157787_0_0_0_var; extern const Il2CppType* UInt32_t24667981_0_0_0_var; extern const Il2CppType* String_t_0_0_0_var; extern const Il2CppType* Color2_t2672154097_0_0_0_var; extern const Il2CppType* Int64_t1153838595_0_0_0_var; extern const Il2CppType* UInt64_t24668076_0_0_0_var; extern const Il2CppType* Double_t3868226565_0_0_0_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* PluginsManager_t1628423141_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3Plugin_t4169633349_il2cpp_TypeInfo_var; extern Il2CppClass* Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var; extern Il2CppClass* QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var; extern Il2CppClass* Vector2Plugin_t3282129668_il2cpp_TypeInfo_var; extern Il2CppClass* FloatPlugin_t4247005649_il2cpp_TypeInfo_var; extern Il2CppClass* ColorPlugin_t2735281560_il2cpp_TypeInfo_var; extern Il2CppClass* IntPlugin_t3956440740_il2cpp_TypeInfo_var; extern Il2CppClass* Vector4Plugin_t762169734_il2cpp_TypeInfo_var; extern Il2CppClass* RectPlugin_t547917837_il2cpp_TypeInfo_var; extern Il2CppClass* RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var; extern Il2CppClass* UintPlugin_t3309538563_il2cpp_TypeInfo_var; extern Il2CppClass* StringPlugin_t713419258_il2cpp_TypeInfo_var; extern Il2CppClass* Color2Plugin_t850426008_il2cpp_TypeInfo_var; extern Il2CppClass* LongPlugin_t4170721957_il2cpp_TypeInfo_var; extern Il2CppClass* UlongPlugin_t1296623654_il2cpp_TypeInfo_var; extern Il2CppClass* DoublePlugin_t1679046074_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1579181078; extern const uint32_t PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084_MetadataUsageId; extern "C" ABSTweenPlugin_3_t1474800301 * PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (PluginsManager_GetDefaultPlugin_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2471933084_MetadataUsageId); s_Il2CppMethodIntialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; Il2CppObject * V_2 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); V_0 = (Type_t *)L_0; Type_t * L_1 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 1)), /*hidden argument*/NULL); V_1 = (Type_t *)L_1; V_2 = (Il2CppObject *)NULL; Type_t * L_2 = V_0; Type_t * L_3 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_2) == ((Il2CppObject*)(Type_t *)L_3)))) { goto IL_0045; } } { Type_t * L_4 = V_0; Type_t * L_5 = V_1; if ((!(((Il2CppObject*)(Type_t *)L_4) == ((Il2CppObject*)(Type_t *)L_5)))) { goto IL_0045; } } { Il2CppObject * L_6 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); if (L_6) { goto IL_003a; } } { Vector3Plugin_t4169633349 * L_7 = (Vector3Plugin_t4169633349 *)il2cpp_codegen_object_new(Vector3Plugin_t4169633349_il2cpp_TypeInfo_var); Vector3Plugin__ctor_m1483098192(L_7, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3Plugin_7(L_7); } IL_003a: { Il2CppObject * L_8 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3Plugin_7(); V_2 = (Il2CppObject *)L_8; goto IL_02c7; } IL_0045: { Type_t * L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3_t4282066566_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_9) == ((Il2CppObject*)(Type_t *)L_10)))) { goto IL_007b; } } { Type_t * L_11 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector3U5BU5D_t215400611_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_11) == ((Il2CppObject*)(Type_t *)L_12)))) { goto IL_007b; } } { Il2CppObject * L_13 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); if (L_13) { goto IL_0070; } } { Vector3ArrayPlugin_t3415920978 * L_14 = (Vector3ArrayPlugin_t3415920978 *)il2cpp_codegen_object_new(Vector3ArrayPlugin_t3415920978_il2cpp_TypeInfo_var); Vector3ArrayPlugin__ctor_m3342952823(L_14, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector3ArrayPlugin_14(L_14); } IL_0070: { Il2CppObject * L_15 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector3ArrayPlugin_14(); V_2 = (Il2CppObject *)L_15; goto IL_02c7; } IL_007b: { Type_t * L_16 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_17 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_16) == ((Il2CppObject*)(Type_t *)L_17)))) { goto IL_00c0; } } { Type_t * L_18 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Quaternion_t1553702882_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_18) == ((Il2CppObject*)(Type_t *)L_19)))) { goto IL_00a4; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1579181078, /*hidden argument*/NULL); goto IL_02c7; } IL_00a4: { Il2CppObject * L_20 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); if (L_20) { goto IL_00b5; } } { QuaternionPlugin_t1465715271 * L_21 = (QuaternionPlugin_t1465715271 *)il2cpp_codegen_object_new(QuaternionPlugin_t1465715271_il2cpp_TypeInfo_var); QuaternionPlugin__ctor_m2925254306(L_21, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__quaternionPlugin_9(L_21); } IL_00b5: { Il2CppObject * L_22 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__quaternionPlugin_9(); V_2 = (Il2CppObject *)L_22; goto IL_02c7; } IL_00c0: { Type_t * L_23 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_24 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector2_t4282066565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_23) == ((Il2CppObject*)(Type_t *)L_24)))) { goto IL_00e9; } } { Il2CppObject * L_25 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); if (L_25) { goto IL_00de; } } { Vector2Plugin_t3282129668 * L_26 = (Vector2Plugin_t3282129668 *)il2cpp_codegen_object_new(Vector2Plugin_t3282129668_il2cpp_TypeInfo_var); Vector2Plugin__ctor_m1993632369(L_26, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector2Plugin_6(L_26); } IL_00de: { Il2CppObject * L_27 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector2Plugin_6(); V_2 = (Il2CppObject *)L_27; goto IL_02c7; } IL_00e9: { Type_t * L_28 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_29 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Single_t4291918972_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_28) == ((Il2CppObject*)(Type_t *)L_29)))) { goto IL_0112; } } { Il2CppObject * L_30 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); if (L_30) { goto IL_0107; } } { FloatPlugin_t4247005649 * L_31 = (FloatPlugin_t4247005649 *)il2cpp_codegen_object_new(FloatPlugin_t4247005649_il2cpp_TypeInfo_var); FloatPlugin__ctor_m1707734980(L_31, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__floatPlugin_0(L_31); } IL_0107: { Il2CppObject * L_32 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__floatPlugin_0(); V_2 = (Il2CppObject *)L_32; goto IL_02c7; } IL_0112: { Type_t * L_33 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color_t4194546905_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_33) == ((Il2CppObject*)(Type_t *)L_34)))) { goto IL_013b; } } { Il2CppObject * L_35 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); if (L_35) { goto IL_0130; } } { ColorPlugin_t2735281560 * L_36 = (ColorPlugin_t2735281560 *)il2cpp_codegen_object_new(ColorPlugin_t2735281560_il2cpp_TypeInfo_var); ColorPlugin__ctor_m1884576733(L_36, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__colorPlugin_10(L_36); } IL_0130: { Il2CppObject * L_37 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__colorPlugin_10(); V_2 = (Il2CppObject *)L_37; goto IL_02c7; } IL_013b: { Type_t * L_38 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int32_t1153838500_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_38) == ((Il2CppObject*)(Type_t *)L_39)))) { goto IL_0164; } } { Il2CppObject * L_40 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); if (L_40) { goto IL_0159; } } { IntPlugin_t3956440740 * L_41 = (IntPlugin_t3956440740 *)il2cpp_codegen_object_new(IntPlugin_t3956440740_il2cpp_TypeInfo_var); IntPlugin__ctor_m1224723921(L_41, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__intPlugin_2(L_41); } IL_0159: { Il2CppObject * L_42 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__intPlugin_2(); V_2 = (Il2CppObject *)L_42; goto IL_02c7; } IL_0164: { Type_t * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Vector4_t4282066567_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_43) == ((Il2CppObject*)(Type_t *)L_44)))) { goto IL_018d; } } { Il2CppObject * L_45 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); if (L_45) { goto IL_0182; } } { Vector4Plugin_t762169734 * L_46 = (Vector4Plugin_t762169734 *)il2cpp_codegen_object_new(Vector4Plugin_t762169734_il2cpp_TypeInfo_var); Vector4Plugin__ctor_m972564015(L_46, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__vector4Plugin_8(L_46); } IL_0182: { Il2CppObject * L_47 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__vector4Plugin_8(); V_2 = (Il2CppObject *)L_47; goto IL_02c7; } IL_018d: { Type_t * L_48 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_49 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Rect_t4241904616_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_48) == ((Il2CppObject*)(Type_t *)L_49)))) { goto IL_01b6; } } { Il2CppObject * L_50 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); if (L_50) { goto IL_01ab; } } { RectPlugin_t547917837 * L_51 = (RectPlugin_t547917837 *)il2cpp_codegen_object_new(RectPlugin_t547917837_il2cpp_TypeInfo_var); RectPlugin__ctor_m1101551388(L_51, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectPlugin_11(L_51); } IL_01ab: { Il2CppObject * L_52 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectPlugin_11(); V_2 = (Il2CppObject *)L_52; goto IL_02c7; } IL_01b6: { Type_t * L_53 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_54 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(RectOffset_t3056157787_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_53) == ((Il2CppObject*)(Type_t *)L_54)))) { goto IL_01df; } } { Il2CppObject * L_55 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); if (L_55) { goto IL_01d4; } } { RectOffsetPlugin_t301051904 * L_56 = (RectOffsetPlugin_t301051904 *)il2cpp_codegen_object_new(RectOffsetPlugin_t301051904_il2cpp_TypeInfo_var); RectOffsetPlugin__ctor_m2034471177(L_56, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__rectOffsetPlugin_12(L_56); } IL_01d4: { Il2CppObject * L_57 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__rectOffsetPlugin_12(); V_2 = (Il2CppObject *)L_57; goto IL_02c7; } IL_01df: { Type_t * L_58 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_59 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt32_t24667981_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_58) == ((Il2CppObject*)(Type_t *)L_59)))) { goto IL_0208; } } { Il2CppObject * L_60 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); if (L_60) { goto IL_01fd; } } { UintPlugin_t3309538563 * L_61 = (UintPlugin_t3309538563 *)il2cpp_codegen_object_new(UintPlugin_t3309538563_il2cpp_TypeInfo_var); UintPlugin__ctor_m876318438(L_61, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__uintPlugin_3(L_61); } IL_01fd: { Il2CppObject * L_62 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__uintPlugin_3(); V_2 = (Il2CppObject *)L_62; goto IL_02c7; } IL_0208: { Type_t * L_63 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(String_t_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_63) == ((Il2CppObject*)(Type_t *)L_64)))) { goto IL_0231; } } { Il2CppObject * L_65 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); if (L_65) { goto IL_0226; } } { StringPlugin_t713419258 * L_66 = (StringPlugin_t713419258 *)il2cpp_codegen_object_new(StringPlugin_t713419258_il2cpp_TypeInfo_var); StringPlugin__ctor_m3716977999(L_66, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__stringPlugin_13(L_66); } IL_0226: { Il2CppObject * L_67 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__stringPlugin_13(); V_2 = (Il2CppObject *)L_67; goto IL_02c7; } IL_0231: { Type_t * L_68 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Color2_t2672154097_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_68) == ((Il2CppObject*)(Type_t *)L_69)))) { goto IL_0257; } } { Il2CppObject * L_70 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); if (L_70) { goto IL_024f; } } { Color2Plugin_t850426008 * L_71 = (Color2Plugin_t850426008 *)il2cpp_codegen_object_new(Color2Plugin_t850426008_il2cpp_TypeInfo_var); Color2Plugin__ctor_m3870660721(L_71, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__color2Plugin_15(L_71); } IL_024f: { Il2CppObject * L_72 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__color2Plugin_15(); V_2 = (Il2CppObject *)L_72; goto IL_02c7; } IL_0257: { Type_t * L_73 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_74 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Int64_t1153838595_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_73) == ((Il2CppObject*)(Type_t *)L_74)))) { goto IL_027d; } } { Il2CppObject * L_75 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); if (L_75) { goto IL_0275; } } { LongPlugin_t4170721957 * L_76 = (LongPlugin_t4170721957 *)il2cpp_codegen_object_new(LongPlugin_t4170721957_il2cpp_TypeInfo_var); LongPlugin__ctor_m541140868(L_76, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__longPlugin_4(L_76); } IL_0275: { Il2CppObject * L_77 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__longPlugin_4(); V_2 = (Il2CppObject *)L_77; goto IL_02c7; } IL_027d: { Type_t * L_78 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_79 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(UInt64_t24668076_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_78) == ((Il2CppObject*)(Type_t *)L_79)))) { goto IL_02a3; } } { Il2CppObject * L_80 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); if (L_80) { goto IL_029b; } } { UlongPlugin_t1296623654 * L_81 = (UlongPlugin_t1296623654 *)il2cpp_codegen_object_new(UlongPlugin_t1296623654_il2cpp_TypeInfo_var); UlongPlugin__ctor_m2625472783(L_81, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__ulongPlugin_5(L_81); } IL_029b: { Il2CppObject * L_82 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__ulongPlugin_5(); V_2 = (Il2CppObject *)L_82; goto IL_02c7; } IL_02a3: { Type_t * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_84 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(Double_t3868226565_0_0_0_var), /*hidden argument*/NULL); if ((!(((Il2CppObject*)(Type_t *)L_83) == ((Il2CppObject*)(Type_t *)L_84)))) { goto IL_02c7; } } { Il2CppObject * L_85 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); if (L_85) { goto IL_02c1; } } { DoublePlugin_t1679046074 * L_86 = (DoublePlugin_t1679046074 *)il2cpp_codegen_object_new(DoublePlugin_t1679046074_il2cpp_TypeInfo_var); DoublePlugin__ctor_m1056407951(L_86, /*hidden argument*/NULL); ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->set__doublePlugin_1(L_86); } IL_02c1: { Il2CppObject * L_87 = ((PluginsManager_t1628423141_StaticFields*)PluginsManager_t1628423141_il2cpp_TypeInfo_var->static_fields)->get__doublePlugin_1(); V_2 = (Il2CppObject *)L_87; } IL_02c7: { Il2CppObject * L_88 = V_2; if (!L_88) { goto IL_02d1; } } { Il2CppObject * L_89 = V_2; return ((ABSTweenPlugin_3_t1474800301 *)IsInst(L_89, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))); } IL_02d1: { return (ABSTweenPlugin_3_t1474800301 *)NULL; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3377251968_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t67468338 * L_0 = ___t0; Color2_t2672154097 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t67468338 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t67468338 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t67468338 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t67468338 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t67468338 * L_11 = ___t0; TweenerCore_3_t67468338 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t551274153 * L_13 = (ABSTweenPlugin_3_t551274153 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_14 = ___t0; TweenerCore_3_t67468338 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t27465137 * L_16 = (DOGetter_1_t27465137 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t27465137 *)L_16); Color2_t2672154097 L_17 = (( Color2_t2672154097 (*) (DOGetter_1_t27465137 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t27465137 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t551274153 *)L_13); Color2_t2672154097 L_18 = VirtFuncInvoker2< Color2_t2672154097 , TweenerCore_3_t67468338 *, Color2_t2672154097 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t551274153 *)L_13, (TweenerCore_3_t67468338 *)L_14, (Color2_t2672154097 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t67468338 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t67468338 * L_20 = ___t0; TweenerCore_3_t67468338 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t551274153 * L_22 = (ABSTweenPlugin_3_t551274153 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_23 = ___t0; TweenerCore_3_t67468338 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t27465137 * L_25 = (DOGetter_1_t27465137 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t27465137 *)L_25); Color2_t2672154097 L_26 = (( Color2_t2672154097 (*) (DOGetter_1_t27465137 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t27465137 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t551274153 *)L_22); Color2_t2672154097 L_27 = VirtFuncInvoker2< Color2_t2672154097 , TweenerCore_3_t67468338 *, Color2_t2672154097 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t551274153 *)L_22, (TweenerCore_3_t67468338 *)L_23, (Color2_t2672154097 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t67468338 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t551274153 * L_29 = (ABSTweenPlugin_3_t551274153 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t551274153 *)L_29); VirtActionInvoker1< TweenerCore_3_t67468338 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t551274153 *)L_29, (TweenerCore_3_t67468338 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t67468338 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t67468338 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t67468338 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t67468338 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t67468338 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1774200770_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1391333008 * L_0 = ___t0; double L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t1391333008 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t1391333008 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t1391333008 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1391333008 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t1391333008 * L_11 = ___t0; TweenerCore_3_t1391333008 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1875138823 * L_13 = (ABSTweenPlugin_3_t1875138823 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_14 = ___t0; TweenerCore_3_t1391333008 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1223537605 * L_16 = (DOGetter_1_t1223537605 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1223537605 *)L_16); double L_17 = (( double (*) (DOGetter_1_t1223537605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1223537605 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1875138823 *)L_13); double L_18 = VirtFuncInvoker2< double, TweenerCore_3_t1391333008 *, double >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1875138823 *)L_13, (TweenerCore_3_t1391333008 *)L_14, (double)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t1391333008 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t1391333008 * L_20 = ___t0; TweenerCore_3_t1391333008 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1875138823 * L_22 = (ABSTweenPlugin_3_t1875138823 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_23 = ___t0; TweenerCore_3_t1391333008 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1223537605 * L_25 = (DOGetter_1_t1223537605 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1223537605 *)L_25); double L_26 = (( double (*) (DOGetter_1_t1223537605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1223537605 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1875138823 *)L_22); double L_27 = VirtFuncInvoker2< double, TweenerCore_3_t1391333008 *, double >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1875138823 *)L_22, (TweenerCore_3_t1391333008 *)L_23, (double)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t1391333008 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1875138823 * L_29 = (ABSTweenPlugin_3_t1875138823 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1875138823 *)L_29); VirtActionInvoker1< TweenerCore_3_t1391333008 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1875138823 *)L_29, (TweenerCore_3_t1391333008 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t1391333008 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t1391333008 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t1391333008 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t1391333008 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1391333008 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1608373610_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3986127068 * L_0 = ___t0; int32_t L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t3986127068 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t3986127068 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t3986127068 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3986127068 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t3986127068 * L_11 = ___t0; TweenerCore_3_t3986127068 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t174965587 * L_13 = (ABSTweenPlugin_3_t174965587 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_14 = ___t0; TweenerCore_3_t3986127068 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t2804116836 * L_16 = (DOGetter_1_t2804116836 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t2804116836 *)L_16); int32_t L_17 = (( int32_t (*) (DOGetter_1_t2804116836 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116836 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t174965587 *)L_13); int32_t L_18 = VirtFuncInvoker2< int32_t, TweenerCore_3_t3986127068 *, int32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t174965587 *)L_13, (TweenerCore_3_t3986127068 *)L_14, (int32_t)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t3986127068 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t3986127068 * L_20 = ___t0; TweenerCore_3_t3986127068 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t174965587 * L_22 = (ABSTweenPlugin_3_t174965587 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_23 = ___t0; TweenerCore_3_t3986127068 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t2804116836 * L_25 = (DOGetter_1_t2804116836 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t2804116836 *)L_25); int32_t L_26 = (( int32_t (*) (DOGetter_1_t2804116836 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116836 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t174965587 *)L_22); int32_t L_27 = VirtFuncInvoker2< int32_t, TweenerCore_3_t3986127068 *, int32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t174965587 *)L_22, (TweenerCore_3_t3986127068 *)L_23, (int32_t)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t3986127068 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t174965587 * L_29 = (ABSTweenPlugin_3_t174965587 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t174965587 *)L_29); VirtActionInvoker1< TweenerCore_3_t3986127068 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t174965587 *)L_29, (TweenerCore_3_t3986127068 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t3986127068 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t3986127068 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t3986127068 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t3986127068 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3986127068 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m2656306954_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2340078120 * L_0 = ___t0; int64_t L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t2340078120 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t2340078120 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t2340078120 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2340078120 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t2340078120 * L_11 = ___t0; TweenerCore_3_t2340078120 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t2823883935 * L_13 = (ABSTweenPlugin_3_t2823883935 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_14 = ___t0; TweenerCore_3_t2340078120 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t2804116931 * L_16 = (DOGetter_1_t2804116931 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t2804116931 *)L_16); int64_t L_17 = (( int64_t (*) (DOGetter_1_t2804116931 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116931 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2823883935 *)L_13); int64_t L_18 = VirtFuncInvoker2< int64_t, TweenerCore_3_t2340078120 *, int64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2823883935 *)L_13, (TweenerCore_3_t2340078120 *)L_14, (int64_t)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t2340078120 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t2340078120 * L_20 = ___t0; TweenerCore_3_t2340078120 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t2823883935 * L_22 = (ABSTweenPlugin_3_t2823883935 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_23 = ___t0; TweenerCore_3_t2340078120 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t2804116931 * L_25 = (DOGetter_1_t2804116931 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t2804116931 *)L_25); int64_t L_26 = (( int64_t (*) (DOGetter_1_t2804116931 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116931 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2823883935 *)L_22); int64_t L_27 = VirtFuncInvoker2< int64_t, TweenerCore_3_t2340078120 *, int64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2823883935 *)L_22, (TweenerCore_3_t2340078120 *)L_23, (int64_t)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t2340078120 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t2823883935 * L_29 = (ABSTweenPlugin_3_t2823883935 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t2823883935 *)L_29); VirtActionInvoker1< TweenerCore_3_t2340078120 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2823883935 *)L_29, (TweenerCore_3_t2340078120 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t2340078120 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t2340078120 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t2340078120 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t2340078120 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2340078120 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3157698534_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1047223528 * L_0 = ___t0; Il2CppObject * L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t1047223528 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t1047223528 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t1047223528 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1047223528 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t1047223528 * L_11 = ___t0; TweenerCore_3_t1047223528 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1531029343 * L_13 = (ABSTweenPlugin_3_t1531029343 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_14 = ___t0; TweenerCore_3_t1047223528 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1526127411 * L_16 = (DOGetter_1_t1526127411 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_16); Il2CppObject * L_17 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1531029343 *)L_13); Il2CppObject * L_18 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t1047223528 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1531029343 *)L_13, (TweenerCore_3_t1047223528 *)L_14, (Il2CppObject *)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t1047223528 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t1047223528 * L_20 = ___t0; TweenerCore_3_t1047223528 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1531029343 * L_22 = (ABSTweenPlugin_3_t1531029343 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_23 = ___t0; TweenerCore_3_t1047223528 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1526127411 * L_25 = (DOGetter_1_t1526127411 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_25); Il2CppObject * L_26 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1531029343 *)L_22); Il2CppObject * L_27 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t1047223528 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1531029343 *)L_22, (TweenerCore_3_t1047223528 *)L_23, (Il2CppObject *)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t1047223528 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1531029343 * L_29 = (ABSTweenPlugin_3_t1531029343 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1531029343 *)L_29); VirtActionInvoker1< TweenerCore_3_t1047223528 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1531029343 *)L_29, (TweenerCore_3_t1047223528 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t1047223528 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t1047223528 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t1047223528 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t1047223528 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1047223528 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1421622_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t775239064 * L_0 = ___t0; Il2CppObject * L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t775239064 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t775239064 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t775239064 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t775239064 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t775239064 * L_11 = ___t0; TweenerCore_3_t775239064 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1259044879 * L_13 = (ABSTweenPlugin_3_t1259044879 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_14 = ___t0; TweenerCore_3_t775239064 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1526127411 * L_16 = (DOGetter_1_t1526127411 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_16); Il2CppObject * L_17 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1259044879 *)L_13); Il2CppObject * L_18 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t775239064 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1259044879 *)L_13, (TweenerCore_3_t775239064 *)L_14, (Il2CppObject *)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t775239064 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t775239064 * L_20 = ___t0; TweenerCore_3_t775239064 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1259044879 * L_22 = (ABSTweenPlugin_3_t1259044879 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_23 = ___t0; TweenerCore_3_t775239064 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1526127411 * L_25 = (DOGetter_1_t1526127411 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_25); Il2CppObject * L_26 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1259044879 *)L_22); Il2CppObject * L_27 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t775239064 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1259044879 *)L_22, (TweenerCore_3_t775239064 *)L_23, (Il2CppObject *)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t775239064 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1259044879 * L_29 = (ABSTweenPlugin_3_t1259044879 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1259044879 *)L_29); VirtActionInvoker1< TweenerCore_3_t775239064 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1259044879 *)L_29, (TweenerCore_3_t775239064 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t775239064 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t775239064 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t775239064 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t775239064 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t775239064 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m296595471_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1558294869 * L_0 = ___t0; float L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t1558294869 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t1558294869 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t1558294869 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1558294869 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t1558294869 * L_11 = ___t0; TweenerCore_3_t1558294869 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t2042100684 * L_13 = (ABSTweenPlugin_3_t2042100684 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_14 = ___t0; TweenerCore_3_t1558294869 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1647230012 * L_16 = (DOGetter_1_t1647230012 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1647230012 *)L_16); float L_17 = (( float (*) (DOGetter_1_t1647230012 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1647230012 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2042100684 *)L_13); float L_18 = VirtFuncInvoker2< float, TweenerCore_3_t1558294869 *, float >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2042100684 *)L_13, (TweenerCore_3_t1558294869 *)L_14, (float)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t1558294869 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t1558294869 * L_20 = ___t0; TweenerCore_3_t1558294869 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t2042100684 * L_22 = (ABSTweenPlugin_3_t2042100684 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_23 = ___t0; TweenerCore_3_t1558294869 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1647230012 * L_25 = (DOGetter_1_t1647230012 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1647230012 *)L_25); float L_26 = (( float (*) (DOGetter_1_t1647230012 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1647230012 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2042100684 *)L_22); float L_27 = VirtFuncInvoker2< float, TweenerCore_3_t1558294869 *, float >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2042100684 *)L_22, (TweenerCore_3_t1558294869 *)L_23, (float)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t1558294869 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t2042100684 * L_29 = (ABSTweenPlugin_3_t2042100684 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t2042100684 *)L_29); VirtActionInvoker1< TweenerCore_3_t1558294869 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2042100684 *)L_29, (TweenerCore_3_t1558294869 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t1558294869 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t1558294869 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t1558294869 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t1558294869 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1558294869 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m345684939_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t4126622711 * L_0 = ___t0; uint32_t L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t4126622711 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t4126622711 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t4126622711 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t4126622711 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t4126622711 * L_11 = ___t0; TweenerCore_3_t4126622711 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t315461230 * L_13 = (ABSTweenPlugin_3_t315461230 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_14 = ___t0; TweenerCore_3_t4126622711 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1674946317 * L_16 = (DOGetter_1_t1674946317 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1674946317 *)L_16); uint32_t L_17 = (( uint32_t (*) (DOGetter_1_t1674946317 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946317 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t315461230 *)L_13); uint32_t L_18 = VirtFuncInvoker2< uint32_t, TweenerCore_3_t4126622711 *, uint32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t315461230 *)L_13, (TweenerCore_3_t4126622711 *)L_14, (uint32_t)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t4126622711 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t4126622711 * L_20 = ___t0; TweenerCore_3_t4126622711 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t315461230 * L_22 = (ABSTweenPlugin_3_t315461230 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_23 = ___t0; TweenerCore_3_t4126622711 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1674946317 * L_25 = (DOGetter_1_t1674946317 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1674946317 *)L_25); uint32_t L_26 = (( uint32_t (*) (DOGetter_1_t1674946317 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946317 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t315461230 *)L_22); uint32_t L_27 = VirtFuncInvoker2< uint32_t, TweenerCore_3_t4126622711 *, uint32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t315461230 *)L_22, (TweenerCore_3_t4126622711 *)L_23, (uint32_t)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t4126622711 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t315461230 * L_29 = (ABSTweenPlugin_3_t315461230 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t315461230 *)L_29); VirtActionInvoker1< TweenerCore_3_t4126622711 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t315461230 *)L_29, (TweenerCore_3_t4126622711 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t4126622711 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t4126622711 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t4126622711 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t4126622711 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4126622711 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m3276234740_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2006159996 * L_0 = ___t0; uint64_t L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t2006159996 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t2006159996 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t2006159996 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2006159996 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t2006159996 * L_11 = ___t0; TweenerCore_3_t2006159996 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t2489965811 * L_13 = (ABSTweenPlugin_3_t2489965811 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_14 = ___t0; TweenerCore_3_t2006159996 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1674946412 * L_16 = (DOGetter_1_t1674946412 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1674946412 *)L_16); uint64_t L_17 = (( uint64_t (*) (DOGetter_1_t1674946412 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946412 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2489965811 *)L_13); uint64_t L_18 = VirtFuncInvoker2< uint64_t, TweenerCore_3_t2006159996 *, uint64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2489965811 *)L_13, (TweenerCore_3_t2006159996 *)L_14, (uint64_t)L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t2006159996 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t2006159996 * L_20 = ___t0; TweenerCore_3_t2006159996 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t2489965811 * L_22 = (ABSTweenPlugin_3_t2489965811 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_23 = ___t0; TweenerCore_3_t2006159996 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1674946412 * L_25 = (DOGetter_1_t1674946412 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1674946412 *)L_25); uint64_t L_26 = (( uint64_t (*) (DOGetter_1_t1674946412 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946412 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2489965811 *)L_22); uint64_t L_27 = VirtFuncInvoker2< uint64_t, TweenerCore_3_t2006159996 *, uint64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2489965811 *)L_22, (TweenerCore_3_t2006159996 *)L_23, (uint64_t)L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t2006159996 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t2489965811 * L_29 = (ABSTweenPlugin_3_t2489965811 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t2489965811 *)L_29); VirtActionInvoker1< TweenerCore_3_t2006159996 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2489965811 *)L_29, (TweenerCore_3_t2006159996 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t2006159996 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t2006159996 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t2006159996 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t2006159996 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2006159996 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3834774944_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1967117138 * L_0 = ___t0; Color_t4194546905 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t1967117138 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t1967117138 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t1967117138 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1967117138 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t1967117138 * L_11 = ___t0; TweenerCore_3_t1967117138 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t2450922953 * L_13 = (ABSTweenPlugin_3_t2450922953 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_14 = ___t0; TweenerCore_3_t1967117138 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1549857945 * L_16 = (DOGetter_1_t1549857945 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1549857945 *)L_16); Color_t4194546905 L_17 = (( Color_t4194546905 (*) (DOGetter_1_t1549857945 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1549857945 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2450922953 *)L_13); Color_t4194546905 L_18 = VirtFuncInvoker2< Color_t4194546905 , TweenerCore_3_t1967117138 *, Color_t4194546905 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2450922953 *)L_13, (TweenerCore_3_t1967117138 *)L_14, (Color_t4194546905 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t1967117138 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t1967117138 * L_20 = ___t0; TweenerCore_3_t1967117138 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t2450922953 * L_22 = (ABSTweenPlugin_3_t2450922953 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_23 = ___t0; TweenerCore_3_t1967117138 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1549857945 * L_25 = (DOGetter_1_t1549857945 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1549857945 *)L_25); Color_t4194546905 L_26 = (( Color_t4194546905 (*) (DOGetter_1_t1549857945 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1549857945 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2450922953 *)L_22); Color_t4194546905 L_27 = VirtFuncInvoker2< Color_t4194546905 , TweenerCore_3_t1967117138 *, Color_t4194546905 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2450922953 *)L_22, (TweenerCore_3_t1967117138 *)L_23, (Color_t4194546905 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t1967117138 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t2450922953 * L_29 = (ABSTweenPlugin_3_t2450922953 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t2450922953 *)L_29); VirtActionInvoker1< TweenerCore_3_t1967117138 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2450922953 *)L_29, (TweenerCore_3_t1967117138 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t1967117138 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t1967117138 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t1967117138 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t1967117138 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1967117138 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4227436138_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2280135028 * L_0 = ___t0; Quaternion_t1553702882 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t2280135028 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t2280135028 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t2280135028 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2280135028 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t2280135028 * L_11 = ___t0; TweenerCore_3_t2280135028 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t2763940843 * L_13 = (ABSTweenPlugin_3_t2763940843 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_14 = ___t0; TweenerCore_3_t2280135028 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t3203981218 * L_16 = (DOGetter_1_t3203981218 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_16); Quaternion_t1553702882 L_17 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2763940843 *)L_13); Quaternion_t1553702882 L_18 = VirtFuncInvoker2< Quaternion_t1553702882 , TweenerCore_3_t2280135028 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2763940843 *)L_13, (TweenerCore_3_t2280135028 *)L_14, (Quaternion_t1553702882 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t2280135028 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t2280135028 * L_20 = ___t0; TweenerCore_3_t2280135028 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t2763940843 * L_22 = (ABSTweenPlugin_3_t2763940843 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_23 = ___t0; TweenerCore_3_t2280135028 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t3203981218 * L_25 = (DOGetter_1_t3203981218 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_25); Quaternion_t1553702882 L_26 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2763940843 *)L_22); Quaternion_t1553702882 L_27 = VirtFuncInvoker2< Quaternion_t1553702882 , TweenerCore_3_t2280135028 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2763940843 *)L_22, (TweenerCore_3_t2280135028 *)L_23, (Quaternion_t1553702882 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t2280135028 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t2763940843 * L_29 = (ABSTweenPlugin_3_t2763940843 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t2763940843 *)L_29); VirtActionInvoker1< TweenerCore_3_t2280135028 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2763940843 *)L_29, (TweenerCore_3_t2280135028 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t2280135028 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t2280135028 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t2280135028 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t2280135028 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2280135028 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2273611385_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t4267772355 * L_0 = ___t0; Vector3_t4282066566 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t4267772355 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t4267772355 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t4267772355 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t4267772355 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t4267772355 * L_11 = ___t0; TweenerCore_3_t4267772355 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t456610874 * L_13 = (ABSTweenPlugin_3_t456610874 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_14 = ___t0; TweenerCore_3_t4267772355 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t3203981218 * L_16 = (DOGetter_1_t3203981218 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_16); Quaternion_t1553702882 L_17 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t456610874 *)L_13); Vector3_t4282066566 L_18 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t4267772355 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t456610874 *)L_13, (TweenerCore_3_t4267772355 *)L_14, (Quaternion_t1553702882 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t4267772355 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t4267772355 * L_20 = ___t0; TweenerCore_3_t4267772355 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t456610874 * L_22 = (ABSTweenPlugin_3_t456610874 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_23 = ___t0; TweenerCore_3_t4267772355 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t3203981218 * L_25 = (DOGetter_1_t3203981218 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_25); Quaternion_t1553702882 L_26 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t456610874 *)L_22); Vector3_t4282066566 L_27 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t4267772355 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t456610874 *)L_22, (TweenerCore_3_t4267772355 *)L_23, (Quaternion_t1553702882 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t4267772355 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t456610874 * L_29 = (ABSTweenPlugin_3_t456610874 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t456610874 *)L_29); VirtActionInvoker1< TweenerCore_3_t4267772355 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t456610874 *)L_29, (TweenerCore_3_t4267772355 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t4267772355 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t4267772355 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t4267772355 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t4267772355 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4267772355 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m492170893_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t675430313 * L_0 = ___t0; Rect_t4241904616 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t675430313 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t675430313 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t675430313 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t675430313 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t675430313 * L_11 = ___t0; TweenerCore_3_t675430313 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1159236128 * L_13 = (ABSTweenPlugin_3_t1159236128 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_14 = ___t0; TweenerCore_3_t675430313 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1597215656 * L_16 = (DOGetter_1_t1597215656 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1597215656 *)L_16); Rect_t4241904616 L_17 = (( Rect_t4241904616 (*) (DOGetter_1_t1597215656 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1597215656 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1159236128 *)L_13); Rect_t4241904616 L_18 = VirtFuncInvoker2< Rect_t4241904616 , TweenerCore_3_t675430313 *, Rect_t4241904616 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1159236128 *)L_13, (TweenerCore_3_t675430313 *)L_14, (Rect_t4241904616 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t675430313 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t675430313 * L_20 = ___t0; TweenerCore_3_t675430313 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1159236128 * L_22 = (ABSTweenPlugin_3_t1159236128 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_23 = ___t0; TweenerCore_3_t675430313 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1597215656 * L_25 = (DOGetter_1_t1597215656 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1597215656 *)L_25); Rect_t4241904616 L_26 = (( Rect_t4241904616 (*) (DOGetter_1_t1597215656 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1597215656 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1159236128 *)L_22); Rect_t4241904616 L_27 = VirtFuncInvoker2< Rect_t4241904616 , TweenerCore_3_t675430313 *, Rect_t4241904616 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1159236128 *)L_22, (TweenerCore_3_t675430313 *)L_23, (Rect_t4241904616 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t675430313 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1159236128 * L_29 = (ABSTweenPlugin_3_t1159236128 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1159236128 *)L_29); VirtActionInvoker1< TweenerCore_3_t675430313 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1159236128 *)L_29, (TweenerCore_3_t675430313 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t675430313 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t675430313 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t675430313 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t675430313 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t675430313 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m731450548_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t980437966 * L_0 = ___t0; Vector2_t4282066565 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t980437966 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t980437966 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t980437966 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t980437966 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t980437966 * L_11 = ___t0; TweenerCore_3_t980437966 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1464243781 * L_13 = (ABSTweenPlugin_3_t1464243781 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_14 = ___t0; TweenerCore_3_t980437966 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1637377605 * L_16 = (DOGetter_1_t1637377605 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1637377605 *)L_16); Vector2_t4282066565 L_17 = (( Vector2_t4282066565 (*) (DOGetter_1_t1637377605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377605 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1464243781 *)L_13); Vector2_t4282066565 L_18 = VirtFuncInvoker2< Vector2_t4282066565 , TweenerCore_3_t980437966 *, Vector2_t4282066565 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1464243781 *)L_13, (TweenerCore_3_t980437966 *)L_14, (Vector2_t4282066565 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t980437966 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t980437966 * L_20 = ___t0; TweenerCore_3_t980437966 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1464243781 * L_22 = (ABSTweenPlugin_3_t1464243781 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_23 = ___t0; TweenerCore_3_t980437966 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1637377605 * L_25 = (DOGetter_1_t1637377605 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1637377605 *)L_25); Vector2_t4282066565 L_26 = (( Vector2_t4282066565 (*) (DOGetter_1_t1637377605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377605 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1464243781 *)L_22); Vector2_t4282066565 L_27 = VirtFuncInvoker2< Vector2_t4282066565 , TweenerCore_3_t980437966 *, Vector2_t4282066565 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1464243781 *)L_22, (TweenerCore_3_t980437966 *)L_23, (Vector2_t4282066565 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t980437966 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1464243781 * L_29 = (ABSTweenPlugin_3_t1464243781 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1464243781 *)L_29); VirtActionInvoker1< TweenerCore_3_t980437966 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1464243781 *)L_29, (TweenerCore_3_t980437966 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t980437966 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t980437966 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t980437966 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t980437966 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t980437966 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m1837097359_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t66211615 * L_0 = ___t0; Il2CppObject * L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t66211615 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t66211615 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t66211615 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t66211615 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t66211615 * L_11 = ___t0; TweenerCore_3_t66211615 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t550017430 * L_13 = (ABSTweenPlugin_3_t550017430 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_14 = ___t0; TweenerCore_3_t66211615 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1637377606 * L_16 = (DOGetter_1_t1637377606 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_16); Vector3_t4282066566 L_17 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t550017430 *)L_13); Il2CppObject * L_18 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t66211615 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t550017430 *)L_13, (TweenerCore_3_t66211615 *)L_14, (Vector3_t4282066566 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t66211615 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t66211615 * L_20 = ___t0; TweenerCore_3_t66211615 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t550017430 * L_22 = (ABSTweenPlugin_3_t550017430 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_23 = ___t0; TweenerCore_3_t66211615 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1637377606 * L_25 = (DOGetter_1_t1637377606 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_25); Vector3_t4282066566 L_26 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t550017430 *)L_22); Il2CppObject * L_27 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t66211615 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t550017430 *)L_22, (TweenerCore_3_t66211615 *)L_23, (Vector3_t4282066566 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t66211615 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t550017430 * L_29 = (ABSTweenPlugin_3_t550017430 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t550017430 *)L_29); VirtActionInvoker1< TweenerCore_3_t66211615 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t550017430 *)L_29, (TweenerCore_3_t66211615 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t66211615 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t66211615 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t66211615 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t66211615 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t66211615 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2452268371_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3243674587 * L_0 = ___t0; Il2CppObject * L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t3243674587 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t3243674587 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t3243674587 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3243674587 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t3243674587 * L_11 = ___t0; TweenerCore_3_t3243674587 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t3727480402 * L_13 = (ABSTweenPlugin_3_t3727480402 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_14 = ___t0; TweenerCore_3_t3243674587 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1637377606 * L_16 = (DOGetter_1_t1637377606 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_16); Vector3_t4282066566 L_17 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3727480402 *)L_13); Il2CppObject * L_18 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t3243674587 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3727480402 *)L_13, (TweenerCore_3_t3243674587 *)L_14, (Vector3_t4282066566 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t3243674587 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t3243674587 * L_20 = ___t0; TweenerCore_3_t3243674587 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t3727480402 * L_22 = (ABSTweenPlugin_3_t3727480402 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_23 = ___t0; TweenerCore_3_t3243674587 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1637377606 * L_25 = (DOGetter_1_t1637377606 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_25); Vector3_t4282066566 L_26 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3727480402 *)L_22); Il2CppObject * L_27 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t3243674587 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3727480402 *)L_22, (TweenerCore_3_t3243674587 *)L_23, (Vector3_t4282066566 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t3243674587 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t3727480402 * L_29 = (ABSTweenPlugin_3_t3727480402 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t3727480402 *)L_29); VirtActionInvoker1< TweenerCore_3_t3243674587 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3727480402 *)L_29, (TweenerCore_3_t3243674587 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t3243674587 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t3243674587 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t3243674587 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t3243674587 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3243674587 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m306740978_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3133199874 * L_0 = ___t0; Vector3_t4282066566 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t3133199874 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t3133199874 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t3133199874 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3133199874 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t3133199874 * L_11 = ___t0; TweenerCore_3_t3133199874 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t3617005689 * L_13 = (ABSTweenPlugin_3_t3617005689 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_14 = ___t0; TweenerCore_3_t3133199874 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1637377606 * L_16 = (DOGetter_1_t1637377606 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_16); Vector3_t4282066566 L_17 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3617005689 *)L_13); Vector3_t4282066566 L_18 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t3133199874 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3617005689 *)L_13, (TweenerCore_3_t3133199874 *)L_14, (Vector3_t4282066566 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t3133199874 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t3133199874 * L_20 = ___t0; TweenerCore_3_t3133199874 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t3617005689 * L_22 = (ABSTweenPlugin_3_t3617005689 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_23 = ___t0; TweenerCore_3_t3133199874 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1637377606 * L_25 = (DOGetter_1_t1637377606 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_25); Vector3_t4282066566 L_26 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3617005689 *)L_22); Vector3_t4282066566 L_27 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t3133199874 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3617005689 *)L_22, (TweenerCore_3_t3133199874 *)L_23, (Vector3_t4282066566 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t3133199874 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t3617005689 * L_29 = (ABSTweenPlugin_3_t3617005689 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t3617005689 *)L_29); VirtActionInvoker1< TweenerCore_3_t3133199874 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3617005689 *)L_29, (TweenerCore_3_t3133199874 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t3133199874 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t3133199874 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t3133199874 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t3133199874 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3133199874 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeEndValue<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single,System.Boolean) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern Il2CppClass* TweenManager_t4283858702_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704_MetadataUsageId; extern "C" Tweener_t3057794306 * Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newEndValue1, float ___newDuration2, bool ___snapStartValue3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoChangeEndValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m4176998704_MetadataUsageId); s_Il2CppMethodIntialized = true; } Tweener_t3057794306 * V_0 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t990994486 * L_0 = ___t0; Vector4_t4282066567 L_1 = ___newEndValue1; NullCheck(L_0); L_0->set_endValue_54(L_1); TweenerCore_3_t990994486 * L_2 = ___t0; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isRelative_27((bool)0); TweenerCore_3_t990994486 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0086; } } { TweenerCore_3_t990994486 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t990994486 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { bool L_9 = ___snapStartValue3; if (!L_9) { goto IL_007a; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_10 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_10) { goto IL_005d; } } IL_0032: try { // begin try (depth: 1) TweenerCore_3_t990994486 * L_11 = ___t0; TweenerCore_3_t990994486 * L_12 = ___t0; NullCheck(L_12); ABSTweenPlugin_3_t1474800301 * L_13 = (ABSTweenPlugin_3_t1474800301 *)L_12->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_14 = ___t0; TweenerCore_3_t990994486 * L_15 = ___t0; NullCheck(L_15); DOGetter_1_t1637377607 * L_16 = (DOGetter_1_t1637377607 *)L_15->get_getter_57(); NullCheck((DOGetter_1_t1637377607 *)L_16); Vector4_t4282066567 L_17 = (( Vector4_t4282066567 (*) (DOGetter_1_t1637377607 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377607 *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1474800301 *)L_13); Vector4_t4282066567 L_18 = VirtFuncInvoker2< Vector4_t4282066567 , TweenerCore_3_t990994486 *, Vector4_t4282066567 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1474800301 *)L_13, (TweenerCore_3_t990994486 *)L_14, (Vector4_t4282066567 )L_17); NullCheck(L_11); L_11->set_startValue_53(L_18); goto IL_007a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0051; throw e; } CATCH_0051: { // begin catch(System.Object) TweenerCore_3_t990994486 * L_19 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(TweenManager_t4283858702_il2cpp_TypeInfo_var); TweenManager_Despawn_m4133721302(NULL /*static, unused*/, (Tween_t675658773 *)L_19, (bool)1, /*hidden argument*/NULL); V_0 = (Tweener_t3057794306 *)NULL; goto IL_00b3; } // end catch (depth: 1) IL_005d: { TweenerCore_3_t990994486 * L_20 = ___t0; TweenerCore_3_t990994486 * L_21 = ___t0; NullCheck(L_21); ABSTweenPlugin_3_t1474800301 * L_22 = (ABSTweenPlugin_3_t1474800301 *)L_21->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_23 = ___t0; TweenerCore_3_t990994486 * L_24 = ___t0; NullCheck(L_24); DOGetter_1_t1637377607 * L_25 = (DOGetter_1_t1637377607 *)L_24->get_getter_57(); NullCheck((DOGetter_1_t1637377607 *)L_25); Vector4_t4282066567 L_26 = (( Vector4_t4282066567 (*) (DOGetter_1_t1637377607 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377607 *)L_25, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1474800301 *)L_22); Vector4_t4282066567 L_27 = VirtFuncInvoker2< Vector4_t4282066567 , TweenerCore_3_t990994486 *, Vector4_t4282066567 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1474800301 *)L_22, (TweenerCore_3_t990994486 *)L_23, (Vector4_t4282066567 )L_26); NullCheck(L_20); L_20->set_startValue_53(L_27); } IL_007a: { TweenerCore_3_t990994486 * L_28 = ___t0; NullCheck(L_28); ABSTweenPlugin_3_t1474800301 * L_29 = (ABSTweenPlugin_3_t1474800301 *)L_28->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_30 = ___t0; NullCheck((ABSTweenPlugin_3_t1474800301 *)L_29); VirtActionInvoker1< TweenerCore_3_t990994486 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1474800301 *)L_29, (TweenerCore_3_t990994486 *)L_30); } IL_0086: { float L_31 = ___newDuration2; if ((!(((float)L_31) > ((float)(0.0f))))) { goto IL_00a3; } } { TweenerCore_3_t990994486 * L_32 = ___t0; float L_33 = ___newDuration2; NullCheck(L_32); ((Tween_t675658773 *)L_32)->set_duration_23(L_33); TweenerCore_3_t990994486 * L_34 = ___t0; NullCheck(L_34); bool L_35 = (bool)((Tween_t675658773 *)L_34)->get_startupDone_41(); if (!L_35) { goto IL_00a3; } } { TweenerCore_3_t990994486 * L_36 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_36, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 4)); } IL_00a3: { TweenerCore_3_t990994486 * L_37 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_37, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t990994486 * L_38 = ___t0; return L_38; } IL_00b3: { Tweener_t3057794306 * L_39 = V_0; return L_39; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m2503113380_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t67468338 * L_1 = ___t0; Color2_t2672154097 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t67468338 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t67468338 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t67468338 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t67468338 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t551274153 * L_10 = (ABSTweenPlugin_3_t551274153 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t551274153 *)L_10); VirtActionInvoker1< TweenerCore_3_t67468338 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t551274153 *)L_10, (TweenerCore_3_t67468338 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t67468338 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t67468338 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t67468338 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t67468338 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t67468338 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m702533556_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1391333008 * L_1 = ___t0; double L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t1391333008 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t1391333008 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1391333008 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t1391333008 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1875138823 * L_10 = (ABSTweenPlugin_3_t1875138823 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1875138823 *)L_10); VirtActionInvoker1< TweenerCore_3_t1391333008 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1875138823 *)L_10, (TweenerCore_3_t1391333008 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t1391333008 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t1391333008 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t1391333008 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t1391333008 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1391333008 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1961167180_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3986127068 * L_1 = ___t0; int32_t L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t3986127068 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t3986127068 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3986127068 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t3986127068 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t174965587 * L_10 = (ABSTweenPlugin_3_t174965587 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t174965587 *)L_10); VirtActionInvoker1< TweenerCore_3_t3986127068 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t174965587 *)L_10, (TweenerCore_3_t3986127068 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t3986127068 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t3986127068 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t3986127068 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t3986127068 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3986127068 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3410348972_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2340078120 * L_1 = ___t0; int64_t L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t2340078120 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t2340078120 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2340078120 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t2340078120 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2823883935 * L_10 = (ABSTweenPlugin_3_t2823883935 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t2823883935 *)L_10); VirtActionInvoker1< TweenerCore_3_t2340078120 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2823883935 *)L_10, (TweenerCore_3_t2340078120 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t2340078120 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t2340078120 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t2340078120 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t2340078120 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2340078120 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2485488656_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1047223528 * L_1 = ___t0; Il2CppObject * L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t1047223528 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t1047223528 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1047223528 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t1047223528 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1531029343 * L_10 = (ABSTweenPlugin_3_t1531029343 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1531029343 *)L_10); VirtActionInvoker1< TweenerCore_3_t1047223528 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1531029343 *)L_10, (TweenerCore_3_t1047223528 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t1047223528 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t1047223528 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t1047223528 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t1047223528 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1047223528 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m339392576_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t775239064 * L_1 = ___t0; Il2CppObject * L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t775239064 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t775239064 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t775239064 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t775239064 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1259044879 * L_10 = (ABSTweenPlugin_3_t1259044879 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1259044879 *)L_10); VirtActionInvoker1< TweenerCore_3_t775239064 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1259044879 *)L_10, (TweenerCore_3_t775239064 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t775239064 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t775239064 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t775239064 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t775239064 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t775239064 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3995509173_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1558294869 * L_1 = ___t0; float L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t1558294869 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t1558294869 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1558294869 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t1558294869 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2042100684 * L_10 = (ABSTweenPlugin_3_t2042100684 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t2042100684 *)L_10); VirtActionInvoker1< TweenerCore_3_t1558294869 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2042100684 *)L_10, (TweenerCore_3_t1558294869 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t1558294869 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t1558294869 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t1558294869 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t1558294869 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1558294869 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2982074507_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t4126622711 * L_1 = ___t0; uint32_t L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t4126622711 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t4126622711 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t4126622711 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t4126622711 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t315461230 * L_10 = (ABSTweenPlugin_3_t315461230 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t315461230 *)L_10); VirtActionInvoker1< TweenerCore_3_t4126622711 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t315461230 *)L_10, (TweenerCore_3_t4126622711 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t4126622711 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t4126622711 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t4126622711 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t4126622711 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4126622711 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1015642562_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2006159996 * L_1 = ___t0; uint64_t L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t2006159996 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t2006159996 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2006159996 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t2006159996 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2489965811 * L_10 = (ABSTweenPlugin_3_t2489965811 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t2489965811 *)L_10); VirtActionInvoker1< TweenerCore_3_t2006159996 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2489965811 *)L_10, (TweenerCore_3_t2006159996 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t2006159996 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t2006159996 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t2006159996 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t2006159996 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2006159996 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2758608196_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1967117138 * L_1 = ___t0; Color_t4194546905 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t1967117138 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t1967117138 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t1967117138 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t1967117138 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2450922953 * L_10 = (ABSTweenPlugin_3_t2450922953 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t2450922953 *)L_10); VirtActionInvoker1< TweenerCore_3_t1967117138 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2450922953 *)L_10, (TweenerCore_3_t1967117138 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t1967117138 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t1967117138 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t1967117138 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t1967117138 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1967117138 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m265267660_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2280135028 * L_1 = ___t0; Quaternion_t1553702882 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t2280135028 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t2280135028 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t2280135028 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t2280135028 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2763940843 * L_10 = (ABSTweenPlugin_3_t2763940843 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t2763940843 *)L_10); VirtActionInvoker1< TweenerCore_3_t2280135028 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2763940843 *)L_10, (TweenerCore_3_t2280135028 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t2280135028 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t2280135028 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t2280135028 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t2280135028 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2280135028 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1753658123_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t4267772355 * L_1 = ___t0; Vector3_t4282066566 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t4267772355 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t4267772355 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t4267772355 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t4267772355 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t456610874 * L_10 = (ABSTweenPlugin_3_t456610874 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t456610874 *)L_10); VirtActionInvoker1< TweenerCore_3_t4267772355 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t456610874 *)L_10, (TweenerCore_3_t4267772355 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t4267772355 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t4267772355 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t4267772355 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t4267772355 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4267772355 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2991735625_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t675430313 * L_1 = ___t0; Rect_t4241904616 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t675430313 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t675430313 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t675430313 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t675430313 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1159236128 * L_10 = (ABSTweenPlugin_3_t1159236128 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1159236128 *)L_10); VirtActionInvoker1< TweenerCore_3_t675430313 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1159236128 *)L_10, (TweenerCore_3_t675430313 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t675430313 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t675430313 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t675430313 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t675430313 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t675430313 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m1318064898_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t980437966 * L_1 = ___t0; Vector2_t4282066565 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t980437966 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t980437966 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t980437966 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t980437966 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1464243781 * L_10 = (ABSTweenPlugin_3_t1464243781 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1464243781 *)L_10); VirtActionInvoker1< TweenerCore_3_t980437966 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1464243781 *)L_10, (TweenerCore_3_t980437966 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t980437966 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t980437966 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t980437966 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t980437966 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t980437966 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3199528071_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t66211615 * L_1 = ___t0; Il2CppObject * L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t66211615 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t66211615 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t66211615 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t66211615 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t550017430 * L_10 = (ABSTweenPlugin_3_t550017430 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t550017430 *)L_10); VirtActionInvoker1< TweenerCore_3_t66211615 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t550017430 *)L_10, (TweenerCore_3_t66211615 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t66211615 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t66211615 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t66211615 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t66211615 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t66211615 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4108988483_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3243674587 * L_1 = ___t0; Il2CppObject * L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t3243674587 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t3243674587 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3243674587 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t3243674587 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t3727480402 * L_10 = (ABSTweenPlugin_3_t3727480402 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t3727480402 *)L_10); VirtActionInvoker1< TweenerCore_3_t3243674587 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3727480402 *)L_10, (TweenerCore_3_t3243674587 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t3243674587 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t3243674587 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t3243674587 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t3243674587 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3243674587 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m215886980_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3133199874 * L_1 = ___t0; Vector3_t4282066566 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t3133199874 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t3133199874 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t3133199874 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t3133199874 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t3617005689 * L_10 = (ABSTweenPlugin_3_t3617005689 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t3617005689 *)L_10); VirtActionInvoker1< TweenerCore_3_t3133199874 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3617005689 *)L_10, (TweenerCore_3_t3133199874 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t3133199874 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t3133199874 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t3133199874 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t3133199874 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3133199874 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeStartValue<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeStartValue_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3408676358_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newStartValue1, float ___newDuration2, const MethodInfo* method) { { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t990994486 * L_1 = ___t0; Vector4_t4282066567 L_2 = ___newStartValue1; NullCheck(L_1); L_1->set_startValue_53(L_2); TweenerCore_3_t990994486 * L_3 = ___t0; NullCheck(L_3); bool L_4 = (bool)((Tween_t675658773 *)L_3)->get_startupDone_41(); if (!L_4) { goto IL_0034; } } { TweenerCore_3_t990994486 * L_5 = ___t0; NullCheck(L_5); int32_t L_6 = (int32_t)((Tween_t675658773 *)L_5)->get_specialStartupMode_39(); if (!L_6) { goto IL_0028; } } { TweenerCore_3_t990994486 * L_7 = ___t0; bool L_8 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_8) { goto IL_0028; } } { return (Tweener_t3057794306 *)NULL; } IL_0028: { TweenerCore_3_t990994486 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1474800301 * L_10 = (ABSTweenPlugin_3_t1474800301 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_11 = ___t0; NullCheck((ABSTweenPlugin_3_t1474800301 *)L_10); VirtActionInvoker1< TweenerCore_3_t990994486 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1474800301 *)L_10, (TweenerCore_3_t990994486 *)L_11); } IL_0034: { float L_12 = ___newDuration2; if ((!(((float)L_12) > ((float)(0.0f))))) { goto IL_0051; } } { TweenerCore_3_t990994486 * L_13 = ___t0; float L_14 = ___newDuration2; NullCheck(L_13); ((Tween_t675658773 *)L_13)->set_duration_23(L_14); TweenerCore_3_t990994486 * L_15 = ___t0; NullCheck(L_15); bool L_16 = (bool)((Tween_t675658773 *)L_15)->get_startupDone_41(); if (!L_16) { goto IL_0051; } } { TweenerCore_3_t990994486 * L_17 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_17, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0051: { TweenerCore_3_t990994486 * L_18 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_18, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t990994486 * L_19 = ___t0; return L_19; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m3247867489_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, Color2_t2672154097 ___newStartValue1, Color2_t2672154097 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t67468338 * L_1 = ___t0; TweenerCore_3_t67468338 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t67468338 * L_5 = ___t0; Color2_t2672154097 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t67468338 * L_7 = ___t0; Color2_t2672154097 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t67468338 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t67468338 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t67468338 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t67468338 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t551274153 * L_16 = (ABSTweenPlugin_3_t551274153 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t551274153 *)L_16); VirtActionInvoker1< TweenerCore_3_t67468338 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t551274153 *)L_16, (TweenerCore_3_t67468338 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t67468338 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t67468338 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t67468338 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t67468338 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t67468338 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1243007627_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, double ___newStartValue1, double ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1391333008 * L_1 = ___t0; TweenerCore_3_t1391333008 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t1391333008 * L_5 = ___t0; double L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t1391333008 * L_7 = ___t0; double L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t1391333008 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t1391333008 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t1391333008 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t1391333008 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1875138823 * L_16 = (ABSTweenPlugin_3_t1875138823 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1875138823 *)L_16); VirtActionInvoker1< TweenerCore_3_t1391333008 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1875138823 *)L_16, (TweenerCore_3_t1391333008 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t1391333008 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t1391333008 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t1391333008 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t1391333008 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1391333008 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1743302963_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, int32_t ___newStartValue1, int32_t ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3986127068 * L_1 = ___t0; TweenerCore_3_t3986127068 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t3986127068 * L_5 = ___t0; int32_t L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t3986127068 * L_7 = ___t0; int32_t L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t3986127068 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t3986127068 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t3986127068 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t3986127068 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t174965587 * L_16 = (ABSTweenPlugin_3_t174965587 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t174965587 *)L_16); VirtActionInvoker1< TweenerCore_3_t3986127068 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t174965587 *)L_16, (TweenerCore_3_t3986127068 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t3986127068 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t3986127068 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t3986127068 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t3986127068 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3986127068 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1306809043_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, int64_t ___newStartValue1, int64_t ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2340078120 * L_1 = ___t0; TweenerCore_3_t2340078120 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t2340078120 * L_5 = ___t0; int64_t L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t2340078120 * L_7 = ___t0; int64_t L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t2340078120 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t2340078120 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t2340078120 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t2340078120 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t2823883935 * L_16 = (ABSTweenPlugin_3_t2823883935 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t2823883935 *)L_16); VirtActionInvoker1< TweenerCore_3_t2340078120 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2823883935 *)L_16, (TweenerCore_3_t2340078120 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t2340078120 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t2340078120 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t2340078120 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t2340078120 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2340078120 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1397842095_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1047223528 * L_1 = ___t0; TweenerCore_3_t1047223528 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t1047223528 * L_5 = ___t0; Il2CppObject * L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t1047223528 * L_7 = ___t0; Il2CppObject * L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t1047223528 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t1047223528 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t1047223528 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t1047223528 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1531029343 * L_16 = (ABSTweenPlugin_3_t1531029343 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1531029343 *)L_16); VirtActionInvoker1< TweenerCore_3_t1047223528 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1531029343 *)L_16, (TweenerCore_3_t1047223528 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t1047223528 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t1047223528 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t1047223528 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t1047223528 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1047223528 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m542353407_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t775239064 * L_1 = ___t0; TweenerCore_3_t775239064 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t775239064 * L_5 = ___t0; Il2CppObject * L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t775239064 * L_7 = ___t0; Il2CppObject * L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t775239064 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t775239064 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t775239064 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t775239064 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1259044879 * L_16 = (ABSTweenPlugin_3_t1259044879 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1259044879 *)L_16); VirtActionInvoker1< TweenerCore_3_t775239064 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1259044879 *)L_16, (TweenerCore_3_t775239064 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t775239064 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t775239064 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t775239064 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t775239064 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t775239064 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1920875888_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___newStartValue1, float ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1558294869 * L_1 = ___t0; TweenerCore_3_t1558294869 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t1558294869 * L_5 = ___t0; float L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t1558294869 * L_7 = ___t0; float L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t1558294869 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t1558294869 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t1558294869 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t1558294869 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t2042100684 * L_16 = (ABSTweenPlugin_3_t2042100684 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t2042100684 *)L_16); VirtActionInvoker1< TweenerCore_3_t1558294869 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2042100684 *)L_16, (TweenerCore_3_t1558294869 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t1558294869 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t1558294869 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t1558294869 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t1558294869 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1558294869 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3969951508_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, uint32_t ___newStartValue1, uint32_t ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t4126622711 * L_1 = ___t0; TweenerCore_3_t4126622711 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t4126622711 * L_5 = ___t0; uint32_t L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t4126622711 * L_7 = ___t0; uint32_t L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t4126622711 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t4126622711 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t4126622711 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t4126622711 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t315461230 * L_16 = (ABSTweenPlugin_3_t315461230 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t315461230 *)L_16); VirtActionInvoker1< TweenerCore_3_t4126622711 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t315461230 *)L_16, (TweenerCore_3_t4126622711 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t4126622711 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t4126622711 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t4126622711 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t4126622711 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4126622711 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m404438461_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, uint64_t ___newStartValue1, uint64_t ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2006159996 * L_1 = ___t0; TweenerCore_3_t2006159996 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t2006159996 * L_5 = ___t0; uint64_t L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t2006159996 * L_7 = ___t0; uint64_t L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t2006159996 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t2006159996 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t2006159996 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t2006159996 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t2489965811 * L_16 = (ABSTweenPlugin_3_t2489965811 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t2489965811 *)L_16); VirtActionInvoker1< TweenerCore_3_t2006159996 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2489965811 *)L_16, (TweenerCore_3_t2006159996 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t2006159996 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t2006159996 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t2006159996 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t2006159996 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2006159996 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2974914689_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, Color_t4194546905 ___newStartValue1, Color_t4194546905 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t1967117138 * L_1 = ___t0; TweenerCore_3_t1967117138 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t1967117138 * L_5 = ___t0; Color_t4194546905 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t1967117138 * L_7 = ___t0; Color_t4194546905 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t1967117138 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t1967117138 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t1967117138 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t1967117138 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t2450922953 * L_16 = (ABSTweenPlugin_3_t2450922953 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t2450922953 *)L_16); VirtActionInvoker1< TweenerCore_3_t1967117138 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2450922953 *)L_16, (TweenerCore_3_t1967117138 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t1967117138 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t1967117138 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t1967117138 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t1967117138 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t1967117138 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1228818483_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, Quaternion_t1553702882 ___newStartValue1, Quaternion_t1553702882 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t2280135028 * L_1 = ___t0; TweenerCore_3_t2280135028 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t2280135028 * L_5 = ___t0; Quaternion_t1553702882 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t2280135028 * L_7 = ___t0; Quaternion_t1553702882 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t2280135028 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t2280135028 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t2280135028 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t2280135028 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t2763940843 * L_16 = (ABSTweenPlugin_3_t2763940843 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t2763940843 *)L_16); VirtActionInvoker1< TweenerCore_3_t2280135028 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2763940843 *)L_16, (TweenerCore_3_t2280135028 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t2280135028 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t2280135028 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t2280135028 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t2280135028 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t2280135028 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3272494298_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, Vector3_t4282066566 ___newStartValue1, Vector3_t4282066566 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t4267772355 * L_1 = ___t0; TweenerCore_3_t4267772355 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t4267772355 * L_5 = ___t0; Vector3_t4282066566 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t4267772355 * L_7 = ___t0; Vector3_t4282066566 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t4267772355 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t4267772355 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t4267772355 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t4267772355 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t456610874 * L_16 = (ABSTweenPlugin_3_t456610874 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t456610874 *)L_16); VirtActionInvoker1< TweenerCore_3_t4267772355 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t456610874 *)L_16, (TweenerCore_3_t4267772355 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t4267772355 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t4267772355 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t4267772355 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t4267772355 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t4267772355 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2193929686_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, Rect_t4241904616 ___newStartValue1, Rect_t4241904616 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t675430313 * L_1 = ___t0; TweenerCore_3_t675430313 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t675430313 * L_5 = ___t0; Rect_t4241904616 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t675430313 * L_7 = ___t0; Rect_t4241904616 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t675430313 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t675430313 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t675430313 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t675430313 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1159236128 * L_16 = (ABSTweenPlugin_3_t1159236128 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1159236128 *)L_16); VirtActionInvoker1< TweenerCore_3_t675430313 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1159236128 *)L_16, (TweenerCore_3_t675430313 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t675430313 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t675430313 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t675430313 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t675430313 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t675430313 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2574721661_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, Vector2_t4282066565 ___newStartValue1, Vector2_t4282066565 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t980437966 * L_1 = ___t0; TweenerCore_3_t980437966 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t980437966 * L_5 = ___t0; Vector2_t4282066565 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t980437966 * L_7 = ___t0; Vector2_t4282066565 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t980437966 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t980437966 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t980437966 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t980437966 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1464243781 * L_16 = (ABSTweenPlugin_3_t1464243781 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1464243781 *)L_16); VirtActionInvoker1< TweenerCore_3_t980437966 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1464243781 *)L_16, (TweenerCore_3_t980437966 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t980437966 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t980437966 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t980437966 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t980437966 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t980437966 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m3490814936_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t66211615 * L_1 = ___t0; TweenerCore_3_t66211615 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t66211615 * L_5 = ___t0; Il2CppObject * L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t66211615 * L_7 = ___t0; Il2CppObject * L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t66211615 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t66211615 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t66211615 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t66211615 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t550017430 * L_16 = (ABSTweenPlugin_3_t550017430 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t550017430 *)L_16); VirtActionInvoker1< TweenerCore_3_t66211615 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t550017430 *)L_16, (TweenerCore_3_t66211615 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t66211615 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t66211615 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t66211615 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t66211615 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t66211615 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m707359132_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, Il2CppObject * ___newStartValue1, Il2CppObject * ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3243674587 * L_1 = ___t0; TweenerCore_3_t3243674587 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t3243674587 * L_5 = ___t0; Il2CppObject * L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t3243674587 * L_7 = ___t0; Il2CppObject * L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t3243674587 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t3243674587 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t3243674587 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t3243674587 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t3727480402 * L_16 = (ABSTweenPlugin_3_t3727480402 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t3727480402 *)L_16); VirtActionInvoker1< TweenerCore_3_t3243674587 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3727480402 *)L_16, (TweenerCore_3_t3243674587 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t3243674587 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t3243674587 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t3243674587 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t3243674587 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3243674587 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2617344443_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, Vector3_t4282066566 ___newStartValue1, Vector3_t4282066566 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t3133199874 * L_1 = ___t0; TweenerCore_3_t3133199874 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t3133199874 * L_5 = ___t0; Vector3_t4282066566 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t3133199874 * L_7 = ___t0; Vector3_t4282066566 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t3133199874 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t3133199874 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t3133199874 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t3133199874 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t3617005689 * L_16 = (ABSTweenPlugin_3_t3617005689 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t3617005689 *)L_16); VirtActionInvoker1< TweenerCore_3_t3133199874 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3617005689 *)L_16, (TweenerCore_3_t3133199874 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t3133199874 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t3133199874 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t3133199874 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t3133199874 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t3133199874 * L_25 = ___t0; return L_25; } } // DG.Tweening.Tweener DG.Tweening.Tweener::DoChangeValues<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T2,T2,System.Single) extern "C" Tweener_t3057794306 * Tweener_DoChangeValues_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2659967225_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, Vector4_t4282066567 ___newStartValue1, Vector4_t4282066567 ___newEndValue2, float ___newDuration3, const MethodInfo* method) { bool V_0 = false; { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); ((Tweener_t3057794306 *)L_0)->set_hasManuallySetStartValue_51((bool)1); TweenerCore_3_t990994486 * L_1 = ___t0; TweenerCore_3_t990994486 * L_2 = ___t0; int32_t L_3 = (int32_t)0; V_0 = (bool)L_3; NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_isFrom_18((bool)L_3); bool L_4 = V_0; NullCheck(L_1); ((Tween_t675658773 *)L_1)->set_isRelative_27(L_4); TweenerCore_3_t990994486 * L_5 = ___t0; Vector4_t4282066567 L_6 = ___newStartValue1; NullCheck(L_5); L_5->set_startValue_53(L_6); TweenerCore_3_t990994486 * L_7 = ___t0; Vector4_t4282066567 L_8 = ___newEndValue2; NullCheck(L_7); L_7->set_endValue_54(L_8); TweenerCore_3_t990994486 * L_9 = ___t0; NullCheck(L_9); bool L_10 = (bool)((Tween_t675658773 *)L_9)->get_startupDone_41(); if (!L_10) { goto IL_004b; } } { TweenerCore_3_t990994486 * L_11 = ___t0; NullCheck(L_11); int32_t L_12 = (int32_t)((Tween_t675658773 *)L_11)->get_specialStartupMode_39(); if (!L_12) { goto IL_003f; } } { TweenerCore_3_t990994486 * L_13 = ___t0; bool L_14 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_14) { goto IL_003f; } } { return (Tweener_t3057794306 *)NULL; } IL_003f: { TweenerCore_3_t990994486 * L_15 = ___t0; NullCheck(L_15); ABSTweenPlugin_3_t1474800301 * L_16 = (ABSTweenPlugin_3_t1474800301 *)L_15->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_17 = ___t0; NullCheck((ABSTweenPlugin_3_t1474800301 *)L_16); VirtActionInvoker1< TweenerCore_3_t990994486 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1474800301 *)L_16, (TweenerCore_3_t990994486 *)L_17); } IL_004b: { float L_18 = ___newDuration3; if ((!(((float)L_18) > ((float)(0.0f))))) { goto IL_0068; } } { TweenerCore_3_t990994486 * L_19 = ___t0; float L_20 = ___newDuration3; NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_duration_23(L_20); TweenerCore_3_t990994486 * L_21 = ___t0; NullCheck(L_21); bool L_22 = (bool)((Tween_t675658773 *)L_21)->get_startupDone_41(); if (!L_22) { goto IL_0068; } } { TweenerCore_3_t990994486 * L_23 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_23, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); } IL_0068: { TweenerCore_3_t990994486 * L_24 = ___t0; Tween_DoGoto_m553213920(NULL /*static, unused*/, (Tween_t675658773 *)L_24, (float)(0.0f), (int32_t)0, (int32_t)2, /*hidden argument*/NULL); TweenerCore_3_t990994486 * L_25 = ___t0; return L_25; } } // System.Array/Swapper System.Array::get_swapper<AllSingleton/Contacts>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisContacts_t352143704_m2198315065_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisContacts_t352143704_m2198315065_gshared (Il2CppObject * __this /* static, unused */, ContactsU5BU5D_t2097638985* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisContacts_t352143704_m2198315065_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ContactsU5BU5D_t2097638985* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ContactsU5BU5D_t2097638985* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { ContactsU5BU5D_t2097638985* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { ContactsU5BU5D_t2097638985* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { ContactsU5BU5D_t2097638985* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<AllSingleton/detailsProperty>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555_gshared (Il2CppObject * __this /* static, unused */, detailsPropertyU5BU5D_t3868157767* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisdetailsProperty_t1057943986_m2842428555_MetadataUsageId); s_Il2CppMethodIntialized = true; } { detailsPropertyU5BU5D_t3868157767* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { detailsPropertyU5BU5D_t3868157767* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { detailsPropertyU5BU5D_t3868157767* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { detailsPropertyU5BU5D_t3868157767* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { detailsPropertyU5BU5D_t3868157767* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<AllSingleton/DeviceDetailedInformation>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisDeviceDetailedInformation_t4234054081_m3865668186_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DeviceDetailedInformationU5BU5D_t1518729756* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { DeviceDetailedInformationU5BU5D_t1518729756* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { DeviceDetailedInformationU5BU5D_t1518729756* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { DeviceDetailedInformationU5BU5D_t1518729756* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { DeviceDetailedInformationU5BU5D_t1518729756* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<AllSingleton/surveyProperty>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TissurveyProperty_t884569204_m1025667925_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TissurveyProperty_t884569204_m1025667925_gshared (Il2CppObject * __this /* static, unused */, surveyPropertyU5BU5D_t3751806781* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TissurveyProperty_t884569204_m1025667925_MetadataUsageId); s_Il2CppMethodIntialized = true; } { surveyPropertyU5BU5D_t3751806781* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { surveyPropertyU5BU5D_t3751806781* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { surveyPropertyU5BU5D_t3751806781* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { surveyPropertyU5BU5D_t3751806781* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { surveyPropertyU5BU5D_t3751806781* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisDeviceDetailedInformation_t3668321760_m2327178809_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DeviceDetailedInformationU5BU5D_t2899977889* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { DeviceDetailedInformationU5BU5D_t2899977889* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { DeviceDetailedInformationU5BU5D_t2899977889* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { DeviceDetailedInformationU5BU5D_t2899977889* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { DeviceDetailedInformationU5BU5D_t2899977889* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/DeviceProperties>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016_gshared (Il2CppObject * __this /* static, unused */, DevicePropertiesU5BU5D_t665138486* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisDeviceProperties_t2492701999_m1128536016_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DevicePropertiesU5BU5D_t665138486* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { DevicePropertiesU5BU5D_t665138486* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { DevicePropertiesU5BU5D_t665138486* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { DevicePropertiesU5BU5D_t665138486* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { DevicePropertiesU5BU5D_t665138486* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrolU5BU5D_t635926856* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TispeopleOrderPatrol_t4292956421_m1376691614_MetadataUsageId); s_Il2CppMethodIntialized = true; } { peopleOrderPatrolU5BU5D_t635926856* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { peopleOrderPatrolU5BU5D_t635926856* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { peopleOrderPatrolU5BU5D_t635926856* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { peopleOrderPatrolU5BU5D_t635926856* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { peopleOrderPatrolU5BU5D_t635926856* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/peoplePatrol>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426_gshared (Il2CppObject * __this /* static, unused */, peoplePatrolU5BU5D_t2360067772* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TispeoplePatrol_t2522972577_m1785823426_MetadataUsageId); s_Il2CppMethodIntialized = true; } { peoplePatrolU5BU5D_t2360067772* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { peoplePatrolU5BU5D_t2360067772* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { peoplePatrolU5BU5D_t2360067772* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { peoplePatrolU5BU5D_t2360067772* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { peoplePatrolU5BU5D_t2360067772* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<ConsoleApplication.LocalProcessing/StaffInformatino>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisStaffInformatino_t2939901716_m930091509_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisStaffInformatino_t2939901716_m930091509_gshared (Il2CppObject * __this /* static, unused */, StaffInformatinoU5BU5D_t2925930013* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisStaffInformatino_t2939901716_m930091509_MetadataUsageId); s_Il2CppMethodIntialized = true; } { StaffInformatinoU5BU5D_t2925930013* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { StaffInformatinoU5BU5D_t2925930013* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { StaffInformatinoU5BU5D_t2925930013* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { StaffInformatinoU5BU5D_t2925930013* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { StaffInformatinoU5BU5D_t2925930013* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<HighlightingSystem.HighlighterRenderer/Data>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisData_t3265512710_m2562721383_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisData_t3265512710_m2562721383_gshared (Il2CppObject * __this /* static, unused */, DataU5BU5D_t883120163* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisData_t3265512710_m2562721383_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DataU5BU5D_t883120163* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { DataU5BU5D_t883120163* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { DataU5BU5D_t883120163* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { DataU5BU5D_t883120163* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { DataU5BU5D_t883120163* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<LitJson.PropertyMetadata>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadataU5BU5D_t2846646185* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisPropertyMetadata_t4066634616_m3071236716_MetadataUsageId); s_Il2CppMethodIntialized = true; } { PropertyMetadataU5BU5D_t2846646185* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { PropertyMetadataU5BU5D_t2846646185* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { PropertyMetadataU5BU5D_t2846646185* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { PropertyMetadataU5BU5D_t2846646185* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { PropertyMetadataU5BU5D_t2846646185* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<PresetSelector/Preset>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisPreset_t2393284144_m2275668753_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisPreset_t2393284144_m2275668753_gshared (Il2CppObject * __this /* static, unused */, PresetU5BU5D_t864269073* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisPreset_t2393284144_m2275668753_MetadataUsageId); s_Il2CppMethodIntialized = true; } { PresetU5BU5D_t864269073* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { PresetU5BU5D_t864269073* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { PresetU5BU5D_t864269073* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { PresetU5BU5D_t864269073* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { PresetU5BU5D_t864269073* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Boolean>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisBoolean_t476798718_m2640800258_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisBoolean_t476798718_m2640800258_gshared (Il2CppObject * __this /* static, unused */, BooleanU5BU5D_t3456302923* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisBoolean_t476798718_m2640800258_MetadataUsageId); s_Il2CppMethodIntialized = true; } { BooleanU5BU5D_t3456302923* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { BooleanU5BU5D_t3456302923* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { BooleanU5BU5D_t3456302923* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { BooleanU5BU5D_t3456302923* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { BooleanU5BU5D_t3456302923* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Byte>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisByte_t2862609660_m525536776_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisByte_t2862609660_m525536776_gshared (Il2CppObject * __this /* static, unused */, ByteU5BU5D_t4260760469* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisByte_t2862609660_m525536776_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ByteU5BU5D_t4260760469* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ByteU5BU5D_t4260760469* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { ByteU5BU5D_t4260760469* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { ByteU5BU5D_t4260760469* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { ByteU5BU5D_t4260760469* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Char>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisChar_t2862622538_m889966038_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisChar_t2862622538_m889966038_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisChar_t2862622538_m889966038_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CharU5BU5D_t3324145743* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { CharU5BU5D_t3324145743* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { CharU5BU5D_t3324145743* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { CharU5BU5D_t3324145743* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { CharU5BU5D_t3324145743* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t2483180780* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisKeyValuePair_2_t1944668977_m2512635318_MetadataUsageId); s_Il2CppMethodIntialized = true; } { KeyValuePair_2U5BU5D_t2483180780* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { KeyValuePair_2U5BU5D_t2483180780* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { KeyValuePair_2U5BU5D_t2483180780* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { KeyValuePair_2U5BU5D_t2483180780* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { KeyValuePair_2U5BU5D_t2483180780* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Double>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisDouble_t3868226565_m699248977_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisDouble_t3868226565_m699248977_gshared (Il2CppObject * __this /* static, unused */, DoubleU5BU5D_t2145413704* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisDouble_t3868226565_m699248977_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DoubleU5BU5D_t2145413704* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { DoubleU5BU5D_t2145413704* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { DoubleU5BU5D_t2145413704* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { DoubleU5BU5D_t2145413704* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { DoubleU5BU5D_t2145413704* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Int32>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisInt32_t1153838500_m3162346280_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisInt32_t1153838500_m3162346280_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisInt32_t1153838500_m3162346280_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Int32U5BU5D_t3230847821* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { Int32U5BU5D_t3230847821* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Int32U5BU5D_t3230847821* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { Int32U5BU5D_t3230847821* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { Int32U5BU5D_t3230847821* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Object>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisIl2CppObject_m2666204735_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisIl2CppObject_m2666204735_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisIl2CppObject_m2666204735_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ObjectU5BU5D_t1108656482* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { ObjectU5BU5D_t1108656482* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { ObjectU5BU5D_t1108656482* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { ObjectU5BU5D_t1108656482* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Reflection.CustomAttributeNamedArgument>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisCustomAttributeNamedArgument_t3059612989_m636397832_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Reflection.CustomAttributeTypedArgument>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisCustomAttributeTypedArgument_t3301293422_m1469563001_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<System.Single>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisSingle_t4291918972_m1460552840_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisSingle_t4291918972_m1460552840_gshared (Il2CppObject * __this /* static, unused */, SingleU5BU5D_t2316563989* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisSingle_t4291918972_m1460552840_MetadataUsageId); s_Il2CppMethodIntialized = true; } { SingleU5BU5D_t2316563989* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { SingleU5BU5D_t2316563989* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { SingleU5BU5D_t2316563989* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { SingleU5BU5D_t2316563989* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { SingleU5BU5D_t2316563989* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Color>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisColor_t4194546905_m2101809773_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisColor_t4194546905_m2101809773_gshared (Il2CppObject * __this /* static, unused */, ColorU5BU5D_t2441545636* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisColor_t4194546905_m2101809773_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ColorU5BU5D_t2441545636* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ColorU5BU5D_t2441545636* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { ColorU5BU5D_t2441545636* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { ColorU5BU5D_t2441545636* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { ColorU5BU5D_t2441545636* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Color32>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisColor32_t598853688_m3116429708_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisColor32_t598853688_m3116429708_gshared (Il2CppObject * __this /* static, unused */, Color32U5BU5D_t2960766953* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisColor32_t598853688_m3116429708_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Color32U5BU5D_t2960766953* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { Color32U5BU5D_t2960766953* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Color32U5BU5D_t2960766953* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { Color32U5BU5D_t2960766953* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { Color32U5BU5D_t2960766953* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.EventSystems.RaycastResult>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisRaycastResult_t3762661364_m3763812882_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisRaycastResult_t3762661364_m3763812882_gshared (Il2CppObject * __this /* static, unused */, RaycastResultU5BU5D_t2754024893* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisRaycastResult_t3762661364_m3763812882_MetadataUsageId); s_Il2CppMethodIntialized = true; } { RaycastResultU5BU5D_t2754024893* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { RaycastResultU5BU5D_t2754024893* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { RaycastResultU5BU5D_t2754024893* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { RaycastResultU5BU5D_t2754024893* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { RaycastResultU5BU5D_t2754024893* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Experimental.Director.Playable>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisPlayable_t70832698_m3105735866_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisPlayable_t70832698_m3105735866_gshared (Il2CppObject * __this /* static, unused */, PlayableU5BU5D_t910723999* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisPlayable_t70832698_m3105735866_MetadataUsageId); s_Il2CppMethodIntialized = true; } { PlayableU5BU5D_t910723999* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { PlayableU5BU5D_t910723999* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { PlayableU5BU5D_t910723999* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { PlayableU5BU5D_t910723999* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { PlayableU5BU5D_t910723999* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.UICharInfo>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisUICharInfo_t65807484_m2567638600_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisUICharInfo_t65807484_m2567638600_gshared (Il2CppObject * __this /* static, unused */, UICharInfoU5BU5D_t4214337045* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisUICharInfo_t65807484_m2567638600_MetadataUsageId); s_Il2CppMethodIntialized = true; } { UICharInfoU5BU5D_t4214337045* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { UICharInfoU5BU5D_t4214337045* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { UICharInfoU5BU5D_t4214337045* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { UICharInfoU5BU5D_t4214337045* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { UICharInfoU5BU5D_t4214337045* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.UILineInfo>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisUILineInfo_t4113875482_m1287814502_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisUILineInfo_t4113875482_m1287814502_gshared (Il2CppObject * __this /* static, unused */, UILineInfoU5BU5D_t2354741311* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisUILineInfo_t4113875482_m1287814502_MetadataUsageId); s_Il2CppMethodIntialized = true; } { UILineInfoU5BU5D_t2354741311* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { UILineInfoU5BU5D_t2354741311* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { UILineInfoU5BU5D_t2354741311* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { UILineInfoU5BU5D_t2354741311* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { UILineInfoU5BU5D_t2354741311* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.UIVertex>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisUIVertex_t4244065212_m4107285640_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisUIVertex_t4244065212_m4107285640_gshared (Il2CppObject * __this /* static, unused */, UIVertexU5BU5D_t1796391381* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisUIVertex_t4244065212_m4107285640_MetadataUsageId); s_Il2CppMethodIntialized = true; } { UIVertexU5BU5D_t1796391381* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { UIVertexU5BU5D_t1796391381* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { UIVertexU5BU5D_t1796391381* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { UIVertexU5BU5D_t1796391381* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { UIVertexU5BU5D_t1796391381* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector2>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisVector2_t4282066565_m2106303001_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector2_t4282066565_m2106303001_gshared (Il2CppObject * __this /* static, unused */, Vector2U5BU5D_t4024180168* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisVector2_t4282066565_m2106303001_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Vector2U5BU5D_t4024180168* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { Vector2U5BU5D_t4024180168* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Vector2U5BU5D_t4024180168* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { Vector2U5BU5D_t4024180168* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { Vector2U5BU5D_t4024180168* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector3>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisVector3_t4282066566_m2993806682_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector3_t4282066566_m2993806682_gshared (Il2CppObject * __this /* static, unused */, Vector3U5BU5D_t215400611* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisVector3_t4282066566_m2993806682_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Vector3U5BU5D_t215400611* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { Vector3U5BU5D_t215400611* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Vector3U5BU5D_t215400611* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { Vector3U5BU5D_t215400611* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { Vector3U5BU5D_t215400611* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<UnityEngine.Vector4>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisVector4_t4282066567_m3881310363_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisVector4_t4282066567_m3881310363_gshared (Il2CppObject * __this /* static, unused */, Vector4U5BU5D_t701588350* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisVector4_t4282066567_m3881310363_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Vector4U5BU5D_t701588350* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { Vector4U5BU5D_t701588350* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { Vector4U5BU5D_t701588350* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { Vector4U5BU5D_t701588350* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { Vector4U5BU5D_t701588350* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Array/Swapper System.Array::get_swapper<WMG_Data_Source/WMG_VariableTypes>(T[]) extern Il2CppClass* Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var; extern Il2CppClass* Swapper_t4166107989_il2cpp_TypeInfo_var; extern Il2CppClass* DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var; extern const MethodInfo* Array_int_swapper_m3033759158_MethodInfo_var; extern const MethodInfo* Array_double_swapper_m1951199390_MethodInfo_var; extern const MethodInfo* Array_slow_swapper_m1091278254_MethodInfo_var; extern const uint32_t Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763_MetadataUsageId; extern "C" Swapper_t4166107989 * Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763_gshared (Il2CppObject * __this /* static, unused */, WMG_VariableTypesU5BU5D_t877298455* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_get_swapper_TisWMG_VariableTypes_t4265297442_m1496741763_MetadataUsageId); s_Il2CppMethodIntialized = true; } { WMG_VariableTypesU5BU5D_t877298455* L_0 = ___array0; if (!((Int32U5BU5D_t3230847821*)IsInst(L_0, Int32U5BU5D_t3230847821_il2cpp_TypeInfo_var))) { goto IL_0018; } } { WMG_VariableTypesU5BU5D_t877298455* L_1 = ___array0; IntPtr_t L_2; L_2.set_m_value_0((void*)(void*)Array_int_swapper_m3033759158_MethodInfo_var); Swapper_t4166107989 * L_3 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_3, (Il2CppObject *)(Il2CppObject *)L_1, (IntPtr_t)L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { WMG_VariableTypesU5BU5D_t877298455* L_4 = ___array0; if (!((DoubleU5BU5D_t2145413704*)IsInst(L_4, DoubleU5BU5D_t2145413704_il2cpp_TypeInfo_var))) { goto IL_0030; } } { WMG_VariableTypesU5BU5D_t877298455* L_5 = ___array0; IntPtr_t L_6; L_6.set_m_value_0((void*)(void*)Array_double_swapper_m1951199390_MethodInfo_var); Swapper_t4166107989 * L_7 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_7, (Il2CppObject *)(Il2CppObject *)L_5, (IntPtr_t)L_6, /*hidden argument*/NULL); return L_7; } IL_0030: { WMG_VariableTypesU5BU5D_t877298455* L_8 = ___array0; IntPtr_t L_9; L_9.set_m_value_0((void*)(void*)Array_slow_swapper_m1091278254_MethodInfo_var); Swapper_t4166107989 * L_10 = (Swapper_t4166107989 *)il2cpp_codegen_object_new(Swapper_t4166107989_il2cpp_TypeInfo_var); Swapper__ctor_m1046757893(L_10, (Il2CppObject *)(Il2CppObject *)L_8, (IntPtr_t)L_9, /*hidden argument*/NULL); return L_10; } } // System.Boolean DG.Tweening.Tween::OnTweenCallback<System.Int32>(DG.Tweening.TweenCallback`1<T>,T) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral401165390; extern const uint32_t Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923_MetadataUsageId; extern "C" bool Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923_gshared (Il2CppObject * __this /* static, unused */, TweenCallback_1_t3678288188 * ___callback0, int32_t ___param1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tween_OnTweenCallback_TisInt32_t1153838500_m1432856923_MetadataUsageId); s_Il2CppMethodIntialized = true; } Exception_t3991598821 * V_0 = NULL; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_0 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_0) { goto IL_002a; } } IL_0007: try { // begin try (depth: 1) TweenCallback_1_t3678288188 * L_1 = ___callback0; int32_t L_2 = ___param1; NullCheck((TweenCallback_1_t3678288188 *)L_1); (( void (*) (TweenCallback_1_t3678288188 *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TweenCallback_1_t3678288188 *)L_1, (int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); goto IL_0031; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.Exception) V_0 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); Exception_t3991598821 * L_3 = V_0; NullCheck((Exception_t3991598821 *)L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_3); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m138640077(NULL /*static, unused*/, (String_t*)_stringLiteral401165390, (String_t*)L_4, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_5, /*hidden argument*/NULL); V_1 = (bool)0; goto IL_0033; } // end catch (depth: 1) IL_002a: { TweenCallback_1_t3678288188 * L_6 = ___callback0; int32_t L_7 = ___param1; NullCheck((TweenCallback_1_t3678288188 *)L_6); (( void (*) (TweenCallback_1_t3678288188 *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TweenCallback_1_t3678288188 *)L_6, (int32_t)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); } IL_0031: { return (bool)1; } IL_0033: { bool L_8 = V_1; return L_8; } } // System.Boolean DG.Tweening.Tween::OnTweenCallback<System.Object>(DG.Tweening.TweenCallback`1<T>,T) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral401165390; extern const uint32_t Tween_OnTweenCallback_TisIl2CppObject_m145841828_MetadataUsageId; extern "C" bool Tween_OnTweenCallback_TisIl2CppObject_m145841828_gshared (Il2CppObject * __this /* static, unused */, TweenCallback_1_t2400298763 * ___callback0, Il2CppObject * ___param1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tween_OnTweenCallback_TisIl2CppObject_m145841828_MetadataUsageId); s_Il2CppMethodIntialized = true; } Exception_t3991598821 * V_0 = NULL; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_0 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_0) { goto IL_002a; } } IL_0007: try { // begin try (depth: 1) TweenCallback_1_t2400298763 * L_1 = ___callback0; Il2CppObject * L_2 = ___param1; NullCheck((TweenCallback_1_t2400298763 *)L_1); (( void (*) (TweenCallback_1_t2400298763 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TweenCallback_1_t2400298763 *)L_1, (Il2CppObject *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); goto IL_0031; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0010; throw e; } CATCH_0010: { // begin catch(System.Exception) V_0 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); Exception_t3991598821 * L_3 = V_0; NullCheck((Exception_t3991598821 *)L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_3); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m138640077(NULL /*static, unused*/, (String_t*)_stringLiteral401165390, (String_t*)L_4, /*hidden argument*/NULL); Debugger_LogWarning_m2505295565(NULL /*static, unused*/, (Il2CppObject *)L_5, /*hidden argument*/NULL); V_1 = (bool)0; goto IL_0033; } // end catch (depth: 1) IL_002a: { TweenCallback_1_t2400298763 * L_6 = ___callback0; Il2CppObject * L_7 = ___param1; NullCheck((TweenCallback_1_t2400298763 *)L_6); (( void (*) (TweenCallback_1_t2400298763 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((TweenCallback_1_t2400298763 *)L_6, (Il2CppObject *)L_7, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); } IL_0031: { return (bool)1; } IL_0033: { bool L_8 = V_1; return L_8; } } // System.Boolean DG.Tweening.Tweener::DoStartup<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m286928356_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t67468338 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t67468338 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t67468338 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t67468338 * L_8 = ___t0; TweenerCore_3_t67468338 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t551274153 * L_10 = (ABSTweenPlugin_3_t551274153 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_11 = ___t0; TweenerCore_3_t67468338 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t27465137 * L_13 = (DOGetter_1_t27465137 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t27465137 *)L_13); Color2_t2672154097 L_14 = (( Color2_t2672154097 (*) (DOGetter_1_t27465137 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t27465137 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t551274153 *)L_10); Color2_t2672154097 L_15 = VirtFuncInvoker2< Color2_t2672154097 , TweenerCore_3_t67468338 *, Color2_t2672154097 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t551274153 *)L_10, (TweenerCore_3_t67468338 *)L_11, (Color2_t2672154097 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t67468338 * L_16 = ___t0; TweenerCore_3_t67468338 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t551274153 * L_18 = (ABSTweenPlugin_3_t551274153 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_19 = ___t0; TweenerCore_3_t67468338 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t27465137 * L_21 = (DOGetter_1_t27465137 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t27465137 *)L_21); Color2_t2672154097 L_22 = (( Color2_t2672154097 (*) (DOGetter_1_t27465137 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t27465137 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t551274153 *)L_18); Color2_t2672154097 L_23 = VirtFuncInvoker2< Color2_t2672154097 , TweenerCore_3_t67468338 *, Color2_t2672154097 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t551274153 *)L_18, (TweenerCore_3_t67468338 *)L_19, (Color2_t2672154097 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t67468338 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t67468338 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t551274153 * L_27 = (ABSTweenPlugin_3_t551274153 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t551274153 *)L_27); VirtActionInvoker1< TweenerCore_3_t67468338 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t551274153 *)L_27, (TweenerCore_3_t67468338 *)L_28); } IL_007d: { TweenerCore_3_t67468338 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t551274153 * L_30 = (ABSTweenPlugin_3_t551274153 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t551274153 *)L_30); VirtActionInvoker1< TweenerCore_3_t67468338 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t551274153 *)L_30, (TweenerCore_3_t67468338 *)L_31); TweenerCore_3_t67468338 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t67468338 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t67468338 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t67468338 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t67468338 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2961918782_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t1391333008 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t1391333008 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t1391333008 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t1391333008 * L_8 = ___t0; TweenerCore_3_t1391333008 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1875138823 * L_10 = (ABSTweenPlugin_3_t1875138823 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_11 = ___t0; TweenerCore_3_t1391333008 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1223537605 * L_13 = (DOGetter_1_t1223537605 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1223537605 *)L_13); double L_14 = (( double (*) (DOGetter_1_t1223537605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1223537605 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1875138823 *)L_10); double L_15 = VirtFuncInvoker2< double, TweenerCore_3_t1391333008 *, double >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1875138823 *)L_10, (TweenerCore_3_t1391333008 *)L_11, (double)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t1391333008 * L_16 = ___t0; TweenerCore_3_t1391333008 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1875138823 * L_18 = (ABSTweenPlugin_3_t1875138823 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_19 = ___t0; TweenerCore_3_t1391333008 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1223537605 * L_21 = (DOGetter_1_t1223537605 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1223537605 *)L_21); double L_22 = (( double (*) (DOGetter_1_t1223537605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1223537605 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1875138823 *)L_18); double L_23 = VirtFuncInvoker2< double, TweenerCore_3_t1391333008 *, double >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1875138823 *)L_18, (TweenerCore_3_t1391333008 *)L_19, (double)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t1391333008 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t1391333008 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1875138823 * L_27 = (ABSTweenPlugin_3_t1875138823 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1875138823 *)L_27); VirtActionInvoker1< TweenerCore_3_t1391333008 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1875138823 *)L_27, (TweenerCore_3_t1391333008 *)L_28); } IL_007d: { TweenerCore_3_t1391333008 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1875138823 * L_30 = (ABSTweenPlugin_3_t1875138823 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1875138823 *)L_30); VirtActionInvoker1< TweenerCore_3_t1391333008 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1875138823 *)L_30, (TweenerCore_3_t1391333008 *)L_31); TweenerCore_3_t1391333008 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1391333008 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1391333008 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t1391333008 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t1391333008 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m575085542_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t3986127068 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t3986127068 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t3986127068 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t3986127068 * L_8 = ___t0; TweenerCore_3_t3986127068 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t174965587 * L_10 = (ABSTweenPlugin_3_t174965587 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_11 = ___t0; TweenerCore_3_t3986127068 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t2804116836 * L_13 = (DOGetter_1_t2804116836 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t2804116836 *)L_13); int32_t L_14 = (( int32_t (*) (DOGetter_1_t2804116836 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116836 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t174965587 *)L_10); int32_t L_15 = VirtFuncInvoker2< int32_t, TweenerCore_3_t3986127068 *, int32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t174965587 *)L_10, (TweenerCore_3_t3986127068 *)L_11, (int32_t)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t3986127068 * L_16 = ___t0; TweenerCore_3_t3986127068 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t174965587 * L_18 = (ABSTweenPlugin_3_t174965587 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_19 = ___t0; TweenerCore_3_t3986127068 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t2804116836 * L_21 = (DOGetter_1_t2804116836 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t2804116836 *)L_21); int32_t L_22 = (( int32_t (*) (DOGetter_1_t2804116836 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116836 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t174965587 *)L_18); int32_t L_23 = VirtFuncInvoker2< int32_t, TweenerCore_3_t3986127068 *, int32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t174965587 *)L_18, (TweenerCore_3_t3986127068 *)L_19, (int32_t)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t3986127068 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t3986127068 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t174965587 * L_27 = (ABSTweenPlugin_3_t174965587 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t174965587 *)L_27); VirtActionInvoker1< TweenerCore_3_t3986127068 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t174965587 *)L_27, (TweenerCore_3_t3986127068 *)L_28); } IL_007d: { TweenerCore_3_t3986127068 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t174965587 * L_30 = (ABSTweenPlugin_3_t174965587 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t174965587 *)L_30); VirtActionInvoker1< TweenerCore_3_t3986127068 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t174965587 *)L_30, (TweenerCore_3_t3986127068 *)L_31); TweenerCore_3_t3986127068 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3986127068 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3986127068 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t3986127068 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t3986127068 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m552324486_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t2340078120 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t2340078120 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t2340078120 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t2340078120 * L_8 = ___t0; TweenerCore_3_t2340078120 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2823883935 * L_10 = (ABSTweenPlugin_3_t2823883935 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_11 = ___t0; TweenerCore_3_t2340078120 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t2804116931 * L_13 = (DOGetter_1_t2804116931 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t2804116931 *)L_13); int64_t L_14 = (( int64_t (*) (DOGetter_1_t2804116931 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116931 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2823883935 *)L_10); int64_t L_15 = VirtFuncInvoker2< int64_t, TweenerCore_3_t2340078120 *, int64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2823883935 *)L_10, (TweenerCore_3_t2340078120 *)L_11, (int64_t)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t2340078120 * L_16 = ___t0; TweenerCore_3_t2340078120 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t2823883935 * L_18 = (ABSTweenPlugin_3_t2823883935 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_19 = ___t0; TweenerCore_3_t2340078120 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t2804116931 * L_21 = (DOGetter_1_t2804116931 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t2804116931 *)L_21); int64_t L_22 = (( int64_t (*) (DOGetter_1_t2804116931 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t2804116931 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2823883935 *)L_18); int64_t L_23 = VirtFuncInvoker2< int64_t, TweenerCore_3_t2340078120 *, int64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2823883935 *)L_18, (TweenerCore_3_t2340078120 *)L_19, (int64_t)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t2340078120 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t2340078120 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t2823883935 * L_27 = (ABSTweenPlugin_3_t2823883935 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t2823883935 *)L_27); VirtActionInvoker1< TweenerCore_3_t2340078120 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2823883935 *)L_27, (TweenerCore_3_t2340078120 *)L_28); } IL_007d: { TweenerCore_3_t2340078120 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t2823883935 * L_30 = (ABSTweenPlugin_3_t2823883935 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t2823883935 *)L_30); VirtActionInvoker1< TweenerCore_3_t2340078120 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2823883935 *)L_30, (TweenerCore_3_t2340078120 *)L_31); TweenerCore_3_t2340078120 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2340078120 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2340078120 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t2340078120 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t2340078120 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1424710498_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t1047223528 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t1047223528 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t1047223528 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t1047223528 * L_8 = ___t0; TweenerCore_3_t1047223528 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1531029343 * L_10 = (ABSTweenPlugin_3_t1531029343 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_11 = ___t0; TweenerCore_3_t1047223528 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1526127411 * L_13 = (DOGetter_1_t1526127411 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_13); Il2CppObject * L_14 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1531029343 *)L_10); Il2CppObject * L_15 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t1047223528 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1531029343 *)L_10, (TweenerCore_3_t1047223528 *)L_11, (Il2CppObject *)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t1047223528 * L_16 = ___t0; TweenerCore_3_t1047223528 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1531029343 * L_18 = (ABSTweenPlugin_3_t1531029343 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_19 = ___t0; TweenerCore_3_t1047223528 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1526127411 * L_21 = (DOGetter_1_t1526127411 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_21); Il2CppObject * L_22 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1531029343 *)L_18); Il2CppObject * L_23 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t1047223528 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1531029343 *)L_18, (TweenerCore_3_t1047223528 *)L_19, (Il2CppObject *)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t1047223528 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t1047223528 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1531029343 * L_27 = (ABSTweenPlugin_3_t1531029343 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1531029343 *)L_27); VirtActionInvoker1< TweenerCore_3_t1047223528 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1531029343 *)L_27, (TweenerCore_3_t1047223528 *)L_28); } IL_007d: { TweenerCore_3_t1047223528 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1531029343 * L_30 = (ABSTweenPlugin_3_t1531029343 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1531029343 *)L_30); VirtActionInvoker1< TweenerCore_3_t1047223528 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1531029343 *)L_30, (TweenerCore_3_t1047223528 *)L_31); TweenerCore_3_t1047223528 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1047223528 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1047223528 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t1047223528 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t1047223528 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3507936946_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t775239064 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t775239064 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t775239064 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t775239064 * L_8 = ___t0; TweenerCore_3_t775239064 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1259044879 * L_10 = (ABSTweenPlugin_3_t1259044879 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_11 = ___t0; TweenerCore_3_t775239064 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1526127411 * L_13 = (DOGetter_1_t1526127411 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_13); Il2CppObject * L_14 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1259044879 *)L_10); Il2CppObject * L_15 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t775239064 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1259044879 *)L_10, (TweenerCore_3_t775239064 *)L_11, (Il2CppObject *)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t775239064 * L_16 = ___t0; TweenerCore_3_t775239064 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1259044879 * L_18 = (ABSTweenPlugin_3_t1259044879 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_19 = ___t0; TweenerCore_3_t775239064 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1526127411 * L_21 = (DOGetter_1_t1526127411 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1526127411 *)L_21); Il2CppObject * L_22 = (( Il2CppObject * (*) (DOGetter_1_t1526127411 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1526127411 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1259044879 *)L_18); Il2CppObject * L_23 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t775239064 *, Il2CppObject * >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1259044879 *)L_18, (TweenerCore_3_t775239064 *)L_19, (Il2CppObject *)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t775239064 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t775239064 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1259044879 * L_27 = (ABSTweenPlugin_3_t1259044879 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1259044879 *)L_27); VirtActionInvoker1< TweenerCore_3_t775239064 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1259044879 *)L_27, (TweenerCore_3_t775239064 *)L_28); } IL_007d: { TweenerCore_3_t775239064 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1259044879 * L_30 = (ABSTweenPlugin_3_t1259044879 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1259044879 *)L_30); VirtActionInvoker1< TweenerCore_3_t775239064 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1259044879 *)L_30, (TweenerCore_3_t775239064 *)L_31); TweenerCore_3_t775239064 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t775239064 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t775239064 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t775239064 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t775239064 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m2981782643_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t1558294869 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t1558294869 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t1558294869 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t1558294869 * L_8 = ___t0; TweenerCore_3_t1558294869 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2042100684 * L_10 = (ABSTweenPlugin_3_t2042100684 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_11 = ___t0; TweenerCore_3_t1558294869 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1647230012 * L_13 = (DOGetter_1_t1647230012 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1647230012 *)L_13); float L_14 = (( float (*) (DOGetter_1_t1647230012 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1647230012 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2042100684 *)L_10); float L_15 = VirtFuncInvoker2< float, TweenerCore_3_t1558294869 *, float >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2042100684 *)L_10, (TweenerCore_3_t1558294869 *)L_11, (float)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t1558294869 * L_16 = ___t0; TweenerCore_3_t1558294869 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t2042100684 * L_18 = (ABSTweenPlugin_3_t2042100684 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_19 = ___t0; TweenerCore_3_t1558294869 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1647230012 * L_21 = (DOGetter_1_t1647230012 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1647230012 *)L_21); float L_22 = (( float (*) (DOGetter_1_t1647230012 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1647230012 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2042100684 *)L_18); float L_23 = VirtFuncInvoker2< float, TweenerCore_3_t1558294869 *, float >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2042100684 *)L_18, (TweenerCore_3_t1558294869 *)L_19, (float)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t1558294869 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t1558294869 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t2042100684 * L_27 = (ABSTweenPlugin_3_t2042100684 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t2042100684 *)L_27); VirtActionInvoker1< TweenerCore_3_t1558294869 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2042100684 *)L_27, (TweenerCore_3_t1558294869 *)L_28); } IL_007d: { TweenerCore_3_t1558294869 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t2042100684 * L_30 = (ABSTweenPlugin_3_t2042100684 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t2042100684 *)L_30); VirtActionInvoker1< TweenerCore_3_t1558294869 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2042100684 *)L_30, (TweenerCore_3_t1558294869 *)L_31); TweenerCore_3_t1558294869 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1558294869 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1558294869 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t1558294869 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t1558294869 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m1028096071_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t4126622711 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t4126622711 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t4126622711 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t4126622711 * L_8 = ___t0; TweenerCore_3_t4126622711 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t315461230 * L_10 = (ABSTweenPlugin_3_t315461230 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_11 = ___t0; TweenerCore_3_t4126622711 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1674946317 * L_13 = (DOGetter_1_t1674946317 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1674946317 *)L_13); uint32_t L_14 = (( uint32_t (*) (DOGetter_1_t1674946317 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946317 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t315461230 *)L_10); uint32_t L_15 = VirtFuncInvoker2< uint32_t, TweenerCore_3_t4126622711 *, uint32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t315461230 *)L_10, (TweenerCore_3_t4126622711 *)L_11, (uint32_t)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t4126622711 * L_16 = ___t0; TweenerCore_3_t4126622711 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t315461230 * L_18 = (ABSTweenPlugin_3_t315461230 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_19 = ___t0; TweenerCore_3_t4126622711 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1674946317 * L_21 = (DOGetter_1_t1674946317 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1674946317 *)L_21); uint32_t L_22 = (( uint32_t (*) (DOGetter_1_t1674946317 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946317 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t315461230 *)L_18); uint32_t L_23 = VirtFuncInvoker2< uint32_t, TweenerCore_3_t4126622711 *, uint32_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t315461230 *)L_18, (TweenerCore_3_t4126622711 *)L_19, (uint32_t)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t4126622711 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t4126622711 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t315461230 * L_27 = (ABSTweenPlugin_3_t315461230 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t315461230 *)L_27); VirtActionInvoker1< TweenerCore_3_t4126622711 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t315461230 *)L_27, (TweenerCore_3_t4126622711 *)L_28); } IL_007d: { TweenerCore_3_t4126622711 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t315461230 * L_30 = (ABSTweenPlugin_3_t315461230 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t315461230 *)L_30); VirtActionInvoker1< TweenerCore_3_t4126622711 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t315461230 *)L_30, (TweenerCore_3_t4126622711 *)L_31); TweenerCore_3_t4126622711 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4126622711 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4126622711 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t4126622711 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t4126622711 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m670026608_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t2006159996 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t2006159996 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t2006159996 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t2006159996 * L_8 = ___t0; TweenerCore_3_t2006159996 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2489965811 * L_10 = (ABSTweenPlugin_3_t2489965811 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_11 = ___t0; TweenerCore_3_t2006159996 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1674946412 * L_13 = (DOGetter_1_t1674946412 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1674946412 *)L_13); uint64_t L_14 = (( uint64_t (*) (DOGetter_1_t1674946412 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946412 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2489965811 *)L_10); uint64_t L_15 = VirtFuncInvoker2< uint64_t, TweenerCore_3_t2006159996 *, uint64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2489965811 *)L_10, (TweenerCore_3_t2006159996 *)L_11, (uint64_t)L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t2006159996 * L_16 = ___t0; TweenerCore_3_t2006159996 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t2489965811 * L_18 = (ABSTweenPlugin_3_t2489965811 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_19 = ___t0; TweenerCore_3_t2006159996 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1674946412 * L_21 = (DOGetter_1_t1674946412 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1674946412 *)L_21); uint64_t L_22 = (( uint64_t (*) (DOGetter_1_t1674946412 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1674946412 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2489965811 *)L_18); uint64_t L_23 = VirtFuncInvoker2< uint64_t, TweenerCore_3_t2006159996 *, uint64_t >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2489965811 *)L_18, (TweenerCore_3_t2006159996 *)L_19, (uint64_t)L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t2006159996 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t2006159996 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t2489965811 * L_27 = (ABSTweenPlugin_3_t2489965811 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t2489965811 *)L_27); VirtActionInvoker1< TweenerCore_3_t2006159996 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2489965811 *)L_27, (TweenerCore_3_t2006159996 *)L_28); } IL_007d: { TweenerCore_3_t2006159996 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t2489965811 * L_30 = (ABSTweenPlugin_3_t2489965811 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t2489965811 *)L_30); VirtActionInvoker1< TweenerCore_3_t2006159996 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2489965811 *)L_30, (TweenerCore_3_t2006159996 *)L_31); TweenerCore_3_t2006159996 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2006159996 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2006159996 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t2006159996 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t2006159996 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1018382852_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t1967117138 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t1967117138 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t1967117138 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t1967117138 * L_8 = ___t0; TweenerCore_3_t1967117138 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2450922953 * L_10 = (ABSTweenPlugin_3_t2450922953 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_11 = ___t0; TweenerCore_3_t1967117138 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1549857945 * L_13 = (DOGetter_1_t1549857945 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1549857945 *)L_13); Color_t4194546905 L_14 = (( Color_t4194546905 (*) (DOGetter_1_t1549857945 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1549857945 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2450922953 *)L_10); Color_t4194546905 L_15 = VirtFuncInvoker2< Color_t4194546905 , TweenerCore_3_t1967117138 *, Color_t4194546905 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2450922953 *)L_10, (TweenerCore_3_t1967117138 *)L_11, (Color_t4194546905 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t1967117138 * L_16 = ___t0; TweenerCore_3_t1967117138 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t2450922953 * L_18 = (ABSTweenPlugin_3_t2450922953 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_19 = ___t0; TweenerCore_3_t1967117138 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1549857945 * L_21 = (DOGetter_1_t1549857945 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1549857945 *)L_21); Color_t4194546905 L_22 = (( Color_t4194546905 (*) (DOGetter_1_t1549857945 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1549857945 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2450922953 *)L_18); Color_t4194546905 L_23 = VirtFuncInvoker2< Color_t4194546905 , TweenerCore_3_t1967117138 *, Color_t4194546905 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2450922953 *)L_18, (TweenerCore_3_t1967117138 *)L_19, (Color_t4194546905 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t1967117138 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t1967117138 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t2450922953 * L_27 = (ABSTweenPlugin_3_t2450922953 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t2450922953 *)L_27); VirtActionInvoker1< TweenerCore_3_t1967117138 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2450922953 *)L_27, (TweenerCore_3_t1967117138 *)L_28); } IL_007d: { TweenerCore_3_t1967117138 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t2450922953 * L_30 = (ABSTweenPlugin_3_t2450922953 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t2450922953 *)L_30); VirtActionInvoker1< TweenerCore_3_t1967117138 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2450922953 *)L_30, (TweenerCore_3_t1967117138 *)L_31); TweenerCore_3_t1967117138 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t1967117138 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t1967117138 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t1967117138 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t1967117138 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m428177126_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t2280135028 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t2280135028 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t2280135028 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t2280135028 * L_8 = ___t0; TweenerCore_3_t2280135028 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t2763940843 * L_10 = (ABSTweenPlugin_3_t2763940843 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_11 = ___t0; TweenerCore_3_t2280135028 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t3203981218 * L_13 = (DOGetter_1_t3203981218 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_13); Quaternion_t1553702882 L_14 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2763940843 *)L_10); Quaternion_t1553702882 L_15 = VirtFuncInvoker2< Quaternion_t1553702882 , TweenerCore_3_t2280135028 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2763940843 *)L_10, (TweenerCore_3_t2280135028 *)L_11, (Quaternion_t1553702882 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t2280135028 * L_16 = ___t0; TweenerCore_3_t2280135028 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t2763940843 * L_18 = (ABSTweenPlugin_3_t2763940843 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_19 = ___t0; TweenerCore_3_t2280135028 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t3203981218 * L_21 = (DOGetter_1_t3203981218 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_21); Quaternion_t1553702882 L_22 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t2763940843 *)L_18); Quaternion_t1553702882 L_23 = VirtFuncInvoker2< Quaternion_t1553702882 , TweenerCore_3_t2280135028 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t2763940843 *)L_18, (TweenerCore_3_t2280135028 *)L_19, (Quaternion_t1553702882 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t2280135028 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t2280135028 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t2763940843 * L_27 = (ABSTweenPlugin_3_t2763940843 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t2763940843 *)L_27); VirtActionInvoker1< TweenerCore_3_t2280135028 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2763940843 *)L_27, (TweenerCore_3_t2280135028 *)L_28); } IL_007d: { TweenerCore_3_t2280135028 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t2763940843 * L_30 = (ABSTweenPlugin_3_t2763940843 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t2763940843 *)L_30); VirtActionInvoker1< TweenerCore_3_t2280135028 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t2763940843 *)L_30, (TweenerCore_3_t2280135028 *)L_31); TweenerCore_3_t2280135028 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t2280135028 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t2280135028 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t2280135028 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t2280135028 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m598477021_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t4267772355 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t4267772355 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t4267772355 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t4267772355 * L_8 = ___t0; TweenerCore_3_t4267772355 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t456610874 * L_10 = (ABSTweenPlugin_3_t456610874 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_11 = ___t0; TweenerCore_3_t4267772355 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t3203981218 * L_13 = (DOGetter_1_t3203981218 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_13); Quaternion_t1553702882 L_14 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t456610874 *)L_10); Vector3_t4282066566 L_15 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t4267772355 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t456610874 *)L_10, (TweenerCore_3_t4267772355 *)L_11, (Quaternion_t1553702882 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t4267772355 * L_16 = ___t0; TweenerCore_3_t4267772355 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t456610874 * L_18 = (ABSTweenPlugin_3_t456610874 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_19 = ___t0; TweenerCore_3_t4267772355 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t3203981218 * L_21 = (DOGetter_1_t3203981218 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t3203981218 *)L_21); Quaternion_t1553702882 L_22 = (( Quaternion_t1553702882 (*) (DOGetter_1_t3203981218 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t3203981218 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t456610874 *)L_18); Vector3_t4282066566 L_23 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t4267772355 *, Quaternion_t1553702882 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t456610874 *)L_18, (TweenerCore_3_t4267772355 *)L_19, (Quaternion_t1553702882 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t4267772355 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t4267772355 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t456610874 * L_27 = (ABSTweenPlugin_3_t456610874 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t456610874 *)L_27); VirtActionInvoker1< TweenerCore_3_t4267772355 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t456610874 *)L_27, (TweenerCore_3_t4267772355 *)L_28); } IL_007d: { TweenerCore_3_t4267772355 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t456610874 * L_30 = (ABSTweenPlugin_3_t456610874 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t456610874 *)L_30); VirtActionInvoker1< TweenerCore_3_t4267772355 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t456610874 *)L_30, (TweenerCore_3_t4267772355 *)L_31); TweenerCore_3_t4267772355 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t4267772355 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t4267772355 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t4267772355 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m3050336777_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t675430313 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t675430313 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t675430313 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t675430313 * L_8 = ___t0; TweenerCore_3_t675430313 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1159236128 * L_10 = (ABSTweenPlugin_3_t1159236128 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_11 = ___t0; TweenerCore_3_t675430313 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1597215656 * L_13 = (DOGetter_1_t1597215656 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1597215656 *)L_13); Rect_t4241904616 L_14 = (( Rect_t4241904616 (*) (DOGetter_1_t1597215656 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1597215656 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1159236128 *)L_10); Rect_t4241904616 L_15 = VirtFuncInvoker2< Rect_t4241904616 , TweenerCore_3_t675430313 *, Rect_t4241904616 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1159236128 *)L_10, (TweenerCore_3_t675430313 *)L_11, (Rect_t4241904616 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t675430313 * L_16 = ___t0; TweenerCore_3_t675430313 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1159236128 * L_18 = (ABSTweenPlugin_3_t1159236128 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_19 = ___t0; TweenerCore_3_t675430313 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1597215656 * L_21 = (DOGetter_1_t1597215656 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1597215656 *)L_21); Rect_t4241904616 L_22 = (( Rect_t4241904616 (*) (DOGetter_1_t1597215656 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1597215656 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1159236128 *)L_18); Rect_t4241904616 L_23 = VirtFuncInvoker2< Rect_t4241904616 , TweenerCore_3_t675430313 *, Rect_t4241904616 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1159236128 *)L_18, (TweenerCore_3_t675430313 *)L_19, (Rect_t4241904616 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t675430313 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t675430313 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1159236128 * L_27 = (ABSTweenPlugin_3_t1159236128 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1159236128 *)L_27); VirtActionInvoker1< TweenerCore_3_t675430313 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1159236128 *)L_27, (TweenerCore_3_t675430313 *)L_28); } IL_007d: { TweenerCore_3_t675430313 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1159236128 * L_30 = (ABSTweenPlugin_3_t1159236128 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1159236128 *)L_30); VirtActionInvoker1< TweenerCore_3_t675430313 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1159236128 *)L_30, (TweenerCore_3_t675430313 *)L_31); TweenerCore_3_t675430313 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t675430313 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t675430313 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t675430313 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t675430313 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3865272368_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t980437966 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t980437966 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t980437966 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t980437966 * L_8 = ___t0; TweenerCore_3_t980437966 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1464243781 * L_10 = (ABSTweenPlugin_3_t1464243781 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_11 = ___t0; TweenerCore_3_t980437966 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1637377605 * L_13 = (DOGetter_1_t1637377605 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1637377605 *)L_13); Vector2_t4282066565 L_14 = (( Vector2_t4282066565 (*) (DOGetter_1_t1637377605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377605 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1464243781 *)L_10); Vector2_t4282066565 L_15 = VirtFuncInvoker2< Vector2_t4282066565 , TweenerCore_3_t980437966 *, Vector2_t4282066565 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1464243781 *)L_10, (TweenerCore_3_t980437966 *)L_11, (Vector2_t4282066565 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t980437966 * L_16 = ___t0; TweenerCore_3_t980437966 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1464243781 * L_18 = (ABSTweenPlugin_3_t1464243781 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_19 = ___t0; TweenerCore_3_t980437966 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1637377605 * L_21 = (DOGetter_1_t1637377605 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1637377605 *)L_21); Vector2_t4282066565 L_22 = (( Vector2_t4282066565 (*) (DOGetter_1_t1637377605 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377605 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1464243781 *)L_18); Vector2_t4282066565 L_23 = VirtFuncInvoker2< Vector2_t4282066565 , TweenerCore_3_t980437966 *, Vector2_t4282066565 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1464243781 *)L_18, (TweenerCore_3_t980437966 *)L_19, (Vector2_t4282066565 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t980437966 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t980437966 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1464243781 * L_27 = (ABSTweenPlugin_3_t1464243781 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1464243781 *)L_27); VirtActionInvoker1< TweenerCore_3_t980437966 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1464243781 *)L_27, (TweenerCore_3_t980437966 *)L_28); } IL_007d: { TweenerCore_3_t980437966 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1464243781 * L_30 = (ABSTweenPlugin_3_t1464243781 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1464243781 *)L_30); VirtActionInvoker1< TweenerCore_3_t980437966 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1464243781 *)L_30, (TweenerCore_3_t980437966 *)L_31); TweenerCore_3_t980437966 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t980437966 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t980437966 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t980437966 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t980437966 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2063002891_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t66211615 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t66211615 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t66211615 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t66211615 * L_8 = ___t0; TweenerCore_3_t66211615 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t550017430 * L_10 = (ABSTweenPlugin_3_t550017430 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_11 = ___t0; TweenerCore_3_t66211615 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1637377606 * L_13 = (DOGetter_1_t1637377606 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_13); Vector3_t4282066566 L_14 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t550017430 *)L_10); Il2CppObject * L_15 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t66211615 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t550017430 *)L_10, (TweenerCore_3_t66211615 *)L_11, (Vector3_t4282066566 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t66211615 * L_16 = ___t0; TweenerCore_3_t66211615 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t550017430 * L_18 = (ABSTweenPlugin_3_t550017430 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_19 = ___t0; TweenerCore_3_t66211615 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1637377606 * L_21 = (DOGetter_1_t1637377606 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_21); Vector3_t4282066566 L_22 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t550017430 *)L_18); Il2CppObject * L_23 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t66211615 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t550017430 *)L_18, (TweenerCore_3_t66211615 *)L_19, (Vector3_t4282066566 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t66211615 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t66211615 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t550017430 * L_27 = (ABSTweenPlugin_3_t550017430 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t550017430 *)L_27); VirtActionInvoker1< TweenerCore_3_t66211615 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t550017430 *)L_27, (TweenerCore_3_t66211615 *)L_28); } IL_007d: { TweenerCore_3_t66211615 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t550017430 * L_30 = (ABSTweenPlugin_3_t550017430 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t550017430 *)L_30); VirtActionInvoker1< TweenerCore_3_t66211615 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t550017430 *)L_30, (TweenerCore_3_t66211615 *)L_31); TweenerCore_3_t66211615 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t66211615 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t66211615 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t66211615 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t66211615 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3360109775_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t3243674587 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t3243674587 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t3243674587 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t3243674587 * L_8 = ___t0; TweenerCore_3_t3243674587 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t3727480402 * L_10 = (ABSTweenPlugin_3_t3727480402 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_11 = ___t0; TweenerCore_3_t3243674587 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1637377606 * L_13 = (DOGetter_1_t1637377606 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_13); Vector3_t4282066566 L_14 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3727480402 *)L_10); Il2CppObject * L_15 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t3243674587 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3727480402 *)L_10, (TweenerCore_3_t3243674587 *)L_11, (Vector3_t4282066566 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t3243674587 * L_16 = ___t0; TweenerCore_3_t3243674587 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t3727480402 * L_18 = (ABSTweenPlugin_3_t3727480402 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_19 = ___t0; TweenerCore_3_t3243674587 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1637377606 * L_21 = (DOGetter_1_t1637377606 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_21); Vector3_t4282066566 L_22 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3727480402 *)L_18); Il2CppObject * L_23 = VirtFuncInvoker2< Il2CppObject *, TweenerCore_3_t3243674587 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3727480402 *)L_18, (TweenerCore_3_t3243674587 *)L_19, (Vector3_t4282066566 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t3243674587 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t3243674587 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t3727480402 * L_27 = (ABSTweenPlugin_3_t3727480402 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t3727480402 *)L_27); VirtActionInvoker1< TweenerCore_3_t3243674587 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3727480402 *)L_27, (TweenerCore_3_t3243674587 *)L_28); } IL_007d: { TweenerCore_3_t3243674587 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t3727480402 * L_30 = (ABSTweenPlugin_3_t3727480402 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t3727480402 *)L_30); VirtActionInvoker1< TweenerCore_3_t3243674587 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3727480402 *)L_30, (TweenerCore_3_t3243674587 *)L_31); TweenerCore_3_t3243674587 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3243674587 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3243674587 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t3243674587 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t3243674587 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1023101550_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t3133199874 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t3133199874 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t3133199874 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t3133199874 * L_8 = ___t0; TweenerCore_3_t3133199874 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t3617005689 * L_10 = (ABSTweenPlugin_3_t3617005689 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_11 = ___t0; TweenerCore_3_t3133199874 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1637377606 * L_13 = (DOGetter_1_t1637377606 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_13); Vector3_t4282066566 L_14 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3617005689 *)L_10); Vector3_t4282066566 L_15 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t3133199874 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3617005689 *)L_10, (TweenerCore_3_t3133199874 *)L_11, (Vector3_t4282066566 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t3133199874 * L_16 = ___t0; TweenerCore_3_t3133199874 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t3617005689 * L_18 = (ABSTweenPlugin_3_t3617005689 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_19 = ___t0; TweenerCore_3_t3133199874 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1637377606 * L_21 = (DOGetter_1_t1637377606 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1637377606 *)L_21); Vector3_t4282066566 L_22 = (( Vector3_t4282066566 (*) (DOGetter_1_t1637377606 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377606 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t3617005689 *)L_18); Vector3_t4282066566 L_23 = VirtFuncInvoker2< Vector3_t4282066566 , TweenerCore_3_t3133199874 *, Vector3_t4282066566 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t3617005689 *)L_18, (TweenerCore_3_t3133199874 *)L_19, (Vector3_t4282066566 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t3133199874 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t3133199874 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t3617005689 * L_27 = (ABSTweenPlugin_3_t3617005689 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t3617005689 *)L_27); VirtActionInvoker1< TweenerCore_3_t3133199874 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3617005689 *)L_27, (TweenerCore_3_t3133199874 *)L_28); } IL_007d: { TweenerCore_3_t3133199874 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t3617005689 * L_30 = (ABSTweenPlugin_3_t3617005689 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t3617005689 *)L_30); VirtActionInvoker1< TweenerCore_3_t3133199874 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t3617005689 *)L_30, (TweenerCore_3_t3133199874 *)L_31); TweenerCore_3_t3133199874 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t3133199874 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t3133199874 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t3133199874 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t3133199874 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DoStartup<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028_MetadataUsageId; extern "C" bool Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DoStartup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2475898028_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); ((Tween_t675658773 *)L_0)->set_startupDone_41((bool)1); TweenerCore_3_t990994486 * L_1 = ___t0; NullCheck(L_1); int32_t L_2 = (int32_t)((Tween_t675658773 *)L_1)->get_specialStartupMode_39(); if (!L_2) { goto IL_0019; } } { TweenerCore_3_t990994486 * L_3 = ___t0; bool L_4 = (( bool (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { TweenerCore_3_t990994486 * L_5 = ___t0; NullCheck(L_5); bool L_6 = (bool)((Tweener_t3057794306 *)L_5)->get_hasManuallySetStartValue_51(); if (L_6) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_7 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_useSafeMode_1(); if (!L_7) { goto IL_004c; } } IL_0028: try { // begin try (depth: 1) TweenerCore_3_t990994486 * L_8 = ___t0; TweenerCore_3_t990994486 * L_9 = ___t0; NullCheck(L_9); ABSTweenPlugin_3_t1474800301 * L_10 = (ABSTweenPlugin_3_t1474800301 *)L_9->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_11 = ___t0; TweenerCore_3_t990994486 * L_12 = ___t0; NullCheck(L_12); DOGetter_1_t1637377607 * L_13 = (DOGetter_1_t1637377607 *)L_12->get_getter_57(); NullCheck((DOGetter_1_t1637377607 *)L_13); Vector4_t4282066567 L_14 = (( Vector4_t4282066567 (*) (DOGetter_1_t1637377607 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377607 *)L_13, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1474800301 *)L_10); Vector4_t4282066567 L_15 = VirtFuncInvoker2< Vector4_t4282066567 , TweenerCore_3_t990994486 *, Vector4_t4282066567 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1474800301 *)L_10, (TweenerCore_3_t990994486 *)L_11, (Vector4_t4282066567 )L_14); NullCheck(L_8); L_8->set_startValue_53(L_15); goto IL_0069; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0047; throw e; } CATCH_0047: { // begin catch(System.Object) V_0 = (bool)0; goto IL_00a6; } // end catch (depth: 1) IL_004c: { TweenerCore_3_t990994486 * L_16 = ___t0; TweenerCore_3_t990994486 * L_17 = ___t0; NullCheck(L_17); ABSTweenPlugin_3_t1474800301 * L_18 = (ABSTweenPlugin_3_t1474800301 *)L_17->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_19 = ___t0; TweenerCore_3_t990994486 * L_20 = ___t0; NullCheck(L_20); DOGetter_1_t1637377607 * L_21 = (DOGetter_1_t1637377607 *)L_20->get_getter_57(); NullCheck((DOGetter_1_t1637377607 *)L_21); Vector4_t4282066567 L_22 = (( Vector4_t4282066567 (*) (DOGetter_1_t1637377607 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((DOGetter_1_t1637377607 *)L_21, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); NullCheck((ABSTweenPlugin_3_t1474800301 *)L_18); Vector4_t4282066567 L_23 = VirtFuncInvoker2< Vector4_t4282066567 , TweenerCore_3_t990994486 *, Vector4_t4282066567 >::Invoke(6 /* T2 DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::ConvertToStartValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,T1) */, (ABSTweenPlugin_3_t1474800301 *)L_18, (TweenerCore_3_t990994486 *)L_19, (Vector4_t4282066567 )L_22); NullCheck(L_16); L_16->set_startValue_53(L_23); } IL_0069: { TweenerCore_3_t990994486 * L_24 = ___t0; NullCheck(L_24); bool L_25 = (bool)((Tween_t675658773 *)L_24)->get_isRelative_27(); if (!L_25) { goto IL_007d; } } { TweenerCore_3_t990994486 * L_26 = ___t0; NullCheck(L_26); ABSTweenPlugin_3_t1474800301 * L_27 = (ABSTweenPlugin_3_t1474800301 *)L_26->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_28 = ___t0; NullCheck((ABSTweenPlugin_3_t1474800301 *)L_27); VirtActionInvoker1< TweenerCore_3_t990994486 * >::Invoke(7 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::SetRelativeEndValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1474800301 *)L_27, (TweenerCore_3_t990994486 *)L_28); } IL_007d: { TweenerCore_3_t990994486 * L_29 = ___t0; NullCheck(L_29); ABSTweenPlugin_3_t1474800301 * L_30 = (ABSTweenPlugin_3_t1474800301 *)L_29->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_31 = ___t0; NullCheck((ABSTweenPlugin_3_t1474800301 *)L_30); VirtActionInvoker1< TweenerCore_3_t990994486 * >::Invoke(8 /* System.Void DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::SetChangeValue(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) */, (ABSTweenPlugin_3_t1474800301 *)L_30, (TweenerCore_3_t990994486 *)L_31); TweenerCore_3_t990994486 * L_32 = ___t0; (( void (*) (Il2CppObject * /* static, unused */, TweenerCore_3_t990994486 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)->methodPointer)(NULL /*static, unused*/, (TweenerCore_3_t990994486 *)L_32, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 5)); TweenerCore_3_t990994486 * L_33 = ___t0; NullCheck(L_33); float L_34 = (float)((Tween_t675658773 *)L_33)->get_duration_23(); if ((!(((float)L_34) <= ((float)(0.0f))))) { goto IL_00a4; } } { TweenerCore_3_t990994486 * L_35 = ___t0; NullCheck(L_35); ((Tween_t675658773 *)L_35)->set_easeType_28(((int32_t)36)); } IL_00a4: { return (bool)1; } IL_00a6: { bool L_36 = V_0; return L_36; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1224637438_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t67468338 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t67468338 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t67468338 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t67468338 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m2701138660_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t1391333008 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t1391333008 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t1391333008 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t1391333008 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m1960287500_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t3986127068 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t3986127068 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t3986127068 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t3986127068 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1937526444_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t2340078120 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t2340078120 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t2340078120 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t2340078120 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m1163930376_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t1047223528 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t1047223528 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t1047223528 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t1047223528 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m3585043288_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t775239064 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t775239064 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t775239064 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t775239064 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3677006605_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t1558294869 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t1558294869 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t1558294869 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t1558294869 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m3821469293_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t4126622711 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t4126622711 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t4126622711 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t4126622711 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m409246486_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t2006159996 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t2006159996 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t2006159996 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t2006159996 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3718796958_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t1967117138 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t1967117138 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t1967117138 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t1967117138 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1988094220_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t2280135028 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t2280135028 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t2280135028 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t2280135028 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m2621505143_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t4267772355 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t4267772355 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t4267772355 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t4267772355 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1818639279_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t675430313 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t675430313 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t675430313 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t675430313 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m394273750_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t980437966 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t980437966 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t980437966 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t980437966 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m831305393_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t66211615 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t66211615 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t66211615 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t66211615 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m4184078453_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t3243674587 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t3243674587 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t3243674587 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t3243674587 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m1847070228_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t3133199874 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t3133199874 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t3133199874 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t3133199874 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::DOStartupSpecials<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern Il2CppClass* TweenerCore_3_t4267772355_il2cpp_TypeInfo_var; extern Il2CppClass* TweenerCore_3_t1410186219_il2cpp_TypeInfo_var; extern Il2CppClass* Il2CppObject_il2cpp_TypeInfo_var; extern const uint32_t Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706_MetadataUsageId; extern "C" bool Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_DOStartupSpecials_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m3299866706_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; bool V_1 = false; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); int32_t L_1 = (int32_t)((Tween_t675658773 *)L_0)->get_specialStartupMode_39(); V_0 = (int32_t)L_1; int32_t L_2 = V_0; if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0) { goto IL_0021; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1) { goto IL_0043; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2) { goto IL_0032; } if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3) { goto IL_0054; } } IL_001f: { goto IL_0065; } IL_0021: { TweenerCore_3_t990994486 * L_3 = ___t0; bool L_4 = SpecialPluginsUtils_SetLookAt_m4279815861(NULL /*static, unused*/, (TweenerCore_3_t4267772355 *)((TweenerCore_3_t4267772355 *)IsInst(L_3, TweenerCore_3_t4267772355_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_4) { goto IL_0065; } } IL_002e: { V_1 = (bool)0; goto IL_006e; } IL_0032: { TweenerCore_3_t990994486 * L_5 = ___t0; bool L_6 = SpecialPluginsUtils_SetPunch_m3939712118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_5, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_6) { goto IL_0065; } } IL_003f: { V_1 = (bool)0; goto IL_006e; } IL_0043: { TweenerCore_3_t990994486 * L_7 = ___t0; bool L_8 = SpecialPluginsUtils_SetShake_m2285193118(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_7, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_8) { goto IL_0065; } } IL_0050: { V_1 = (bool)0; goto IL_006e; } IL_0054: { TweenerCore_3_t990994486 * L_9 = ___t0; bool L_10 = SpecialPluginsUtils_SetCameraShakePosition_m4266266298(NULL /*static, unused*/, (TweenerCore_3_t1410186219 *)((TweenerCore_3_t1410186219 *)IsInst(L_9, TweenerCore_3_t1410186219_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_10) { goto IL_0065; } } IL_0061: { V_1 = (bool)0; goto IL_006e; } IL_0065: { V_1 = (bool)1; goto IL_006e; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Il2CppObject_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_0069; throw e; } CATCH_0069: { // begin catch(System.Object) V_1 = (bool)0; goto IL_006e; } // end catch (depth: 1) IL_006e: { bool L_11 = V_1; return L_11; } } // System.Boolean DG.Tweening.Tweener::Setup<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657_MetadataUsageId; extern "C" bool Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, DOGetter_1_t27465137 * ___getter1, DOSetter_1_t1064104965 * ___setter2, Color2_t2672154097 ___endValue3, float ___duration4, ABSTweenPlugin_3_t551274153 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m402859657_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t67468338 * G_B8_0 = NULL; TweenerCore_3_t67468338 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t67468338 * G_B9_1 = NULL; { ABSTweenPlugin_3_t551274153 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t67468338 * L_1 = ___t0; ABSTweenPlugin_3_t551274153 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t67468338 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t551274153 * L_4 = (ABSTweenPlugin_3_t551274153 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t67468338 * L_5 = ___t0; ABSTweenPlugin_3_t551274153 * L_6 = (( ABSTweenPlugin_3_t551274153 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t67468338 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t551274153 * L_8 = (ABSTweenPlugin_3_t551274153 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t67468338 * L_9 = ___t0; DOGetter_1_t27465137 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t67468338 * L_11 = ___t0; DOSetter_1_t1064104965 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t67468338 * L_13 = ___t0; Color2_t2672154097 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t67468338 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t67468338 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t67468338 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t67468338 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t67468338 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t67468338 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t67468338 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t67468338 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597_MetadataUsageId; extern "C" bool Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, DOGetter_1_t1223537605 * ___getter1, DOSetter_1_t2260177433 * ___setter2, double ___endValue3, float ___duration4, ABSTweenPlugin_3_t1875138823 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m1334386597_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1391333008 * G_B8_0 = NULL; TweenerCore_3_t1391333008 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t1391333008 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1875138823 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t1391333008 * L_1 = ___t0; ABSTweenPlugin_3_t1875138823 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t1391333008 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1875138823 * L_4 = (ABSTweenPlugin_3_t1875138823 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t1391333008 * L_5 = ___t0; ABSTweenPlugin_3_t1875138823 * L_6 = (( ABSTweenPlugin_3_t1875138823 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t1391333008 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1875138823 * L_8 = (ABSTweenPlugin_3_t1875138823 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t1391333008 * L_9 = ___t0; DOGetter_1_t1223537605 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t1391333008 * L_11 = ___t0; DOSetter_1_t2260177433 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t1391333008 * L_13 = ___t0; double L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t1391333008 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t1391333008 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t1391333008 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t1391333008 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t1391333008 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t1391333008 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t1391333008 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t1391333008 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421_MetadataUsageId; extern "C" bool Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, DOGetter_1_t2804116836 * ___getter1, DOSetter_1_t3840756664 * ___setter2, int32_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t174965587 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3980255421_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3986127068 * G_B8_0 = NULL; TweenerCore_3_t3986127068 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t3986127068 * G_B9_1 = NULL; { ABSTweenPlugin_3_t174965587 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t3986127068 * L_1 = ___t0; ABSTweenPlugin_3_t174965587 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t3986127068 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t174965587 * L_4 = (ABSTweenPlugin_3_t174965587 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t3986127068 * L_5 = ___t0; ABSTweenPlugin_3_t174965587 * L_6 = (( ABSTweenPlugin_3_t174965587 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t3986127068 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t174965587 * L_8 = (ABSTweenPlugin_3_t174965587 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t3986127068 * L_9 = ___t0; DOGetter_1_t2804116836 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t3986127068 * L_11 = ___t0; DOSetter_1_t3840756664 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t3986127068 * L_13 = ___t0; int32_t L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t3986127068 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t3986127068 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t3986127068 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t3986127068 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t3986127068 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t3986127068 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t3986127068 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t3986127068 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133_MetadataUsageId; extern "C" bool Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, DOGetter_1_t2804116931 * ___getter1, DOSetter_1_t3840756759 * ___setter2, int64_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t2823883935 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1470479133_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2340078120 * G_B8_0 = NULL; TweenerCore_3_t2340078120 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t2340078120 * G_B9_1 = NULL; { ABSTweenPlugin_3_t2823883935 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t2340078120 * L_1 = ___t0; ABSTweenPlugin_3_t2823883935 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t2340078120 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2823883935 * L_4 = (ABSTweenPlugin_3_t2823883935 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t2340078120 * L_5 = ___t0; ABSTweenPlugin_3_t2823883935 * L_6 = (( ABSTweenPlugin_3_t2823883935 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t2340078120 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t2823883935 * L_8 = (ABSTweenPlugin_3_t2823883935 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t2340078120 * L_9 = ___t0; DOGetter_1_t2804116931 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t2340078120 * L_11 = ___t0; DOSetter_1_t3840756759 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t2340078120 * L_13 = ___t0; int64_t L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t2340078120 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t2340078120 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t2340078120 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t2340078120 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t2340078120 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t2340078120 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t2340078120 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t2340078120 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649_MetadataUsageId; extern "C" bool Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, DOGetter_1_t1526127411 * ___getter1, DOSetter_1_t2562767239 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t1531029343 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m418939649_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1047223528 * G_B8_0 = NULL; TweenerCore_3_t1047223528 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t1047223528 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1531029343 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t1047223528 * L_1 = ___t0; ABSTweenPlugin_3_t1531029343 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t1047223528 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1531029343 * L_4 = (ABSTweenPlugin_3_t1531029343 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t1047223528 * L_5 = ___t0; ABSTweenPlugin_3_t1531029343 * L_6 = (( ABSTweenPlugin_3_t1531029343 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t1047223528 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1531029343 * L_8 = (ABSTweenPlugin_3_t1531029343 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t1047223528 * L_9 = ___t0; DOGetter_1_t1526127411 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t1047223528 * L_11 = ___t0; DOSetter_1_t2562767239 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t1047223528 * L_13 = ___t0; Il2CppObject * L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t1047223528 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t1047223528 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t1047223528 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t1047223528 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t1047223528 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t1047223528 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t1047223528 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t1047223528 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273_MetadataUsageId; extern "C" bool Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, DOGetter_1_t1526127411 * ___getter1, DOSetter_1_t2562767239 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t1259044879 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m2574260273_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t775239064 * G_B8_0 = NULL; TweenerCore_3_t775239064 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t775239064 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1259044879 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t775239064 * L_1 = ___t0; ABSTweenPlugin_3_t1259044879 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t775239064 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1259044879 * L_4 = (ABSTweenPlugin_3_t1259044879 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t775239064 * L_5 = ___t0; ABSTweenPlugin_3_t1259044879 * L_6 = (( ABSTweenPlugin_3_t1259044879 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t775239064 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1259044879 * L_8 = (ABSTweenPlugin_3_t1259044879 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t775239064 * L_9 = ___t0; DOGetter_1_t1526127411 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t775239064 * L_11 = ___t0; DOSetter_1_t2562767239 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t775239064 * L_13 = ___t0; Il2CppObject * L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t775239064 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t775239064 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t775239064 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t775239064 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t775239064 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t775239064 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t775239064 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t775239064 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442_MetadataUsageId; extern "C" bool Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, DOGetter_1_t1647230012 * ___getter1, DOSetter_1_t2683869840 * ___setter2, float ___endValue3, float ___duration4, ABSTweenPlugin_3_t2042100684 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3254564442_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1558294869 * G_B8_0 = NULL; TweenerCore_3_t1558294869 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t1558294869 * G_B9_1 = NULL; { ABSTweenPlugin_3_t2042100684 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t1558294869 * L_1 = ___t0; ABSTweenPlugin_3_t2042100684 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t1558294869 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2042100684 * L_4 = (ABSTweenPlugin_3_t2042100684 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t1558294869 * L_5 = ___t0; ABSTweenPlugin_3_t2042100684 * L_6 = (( ABSTweenPlugin_3_t2042100684 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t1558294869 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t2042100684 * L_8 = (ABSTweenPlugin_3_t2042100684 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t1558294869 * L_9 = ___t0; DOGetter_1_t1647230012 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t1558294869 * L_11 = ___t0; DOSetter_1_t2683869840 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t1558294869 * L_13 = ___t0; float L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t1558294869 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t1558294869 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t1558294869 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t1558294869 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t1558294869 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t1558294869 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t1558294869 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t1558294869 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932_MetadataUsageId; extern "C" bool Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, DOGetter_1_t1674946317 * ___getter1, DOSetter_1_t2711586145 * ___setter2, uint32_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t315461230 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m255647932_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t4126622711 * G_B8_0 = NULL; TweenerCore_3_t4126622711 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t4126622711 * G_B9_1 = NULL; { ABSTweenPlugin_3_t315461230 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t4126622711 * L_1 = ___t0; ABSTweenPlugin_3_t315461230 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t4126622711 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t315461230 * L_4 = (ABSTweenPlugin_3_t315461230 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t4126622711 * L_5 = ___t0; ABSTweenPlugin_3_t315461230 * L_6 = (( ABSTweenPlugin_3_t315461230 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t4126622711 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t315461230 * L_8 = (ABSTweenPlugin_3_t315461230 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t4126622711 * L_9 = ___t0; DOGetter_1_t1674946317 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t4126622711 * L_11 = ___t0; DOSetter_1_t2711586145 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t4126622711 * L_13 = ___t0; uint32_t L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t4126622711 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t4126622711 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t4126622711 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t4126622711 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t4126622711 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t4126622711 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t4126622711 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t4126622711 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795_MetadataUsageId; extern "C" bool Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, DOGetter_1_t1674946412 * ___getter1, DOSetter_1_t2711586240 * ___setter2, uint64_t ___endValue3, float ___duration4, ABSTweenPlugin_3_t2489965811 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1386943795_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2006159996 * G_B8_0 = NULL; TweenerCore_3_t2006159996 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t2006159996 * G_B9_1 = NULL; { ABSTweenPlugin_3_t2489965811 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t2006159996 * L_1 = ___t0; ABSTweenPlugin_3_t2489965811 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t2006159996 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2489965811 * L_4 = (ABSTweenPlugin_3_t2489965811 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t2006159996 * L_5 = ___t0; ABSTweenPlugin_3_t2489965811 * L_6 = (( ABSTweenPlugin_3_t2489965811 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t2006159996 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t2489965811 * L_8 = (ABSTweenPlugin_3_t2489965811 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t2006159996 * L_9 = ___t0; DOGetter_1_t1674946412 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t2006159996 * L_11 = ___t0; DOSetter_1_t2711586240 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t2006159996 * L_13 = ___t0; uint64_t L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t2006159996 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t2006159996 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t2006159996 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t2006159996 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t2006159996 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t2006159996 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t2006159996 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t2006159996 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897_MetadataUsageId; extern "C" bool Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, DOGetter_1_t1549857945 * ___getter1, DOSetter_1_t2586497773 * ___setter2, Color_t4194546905 ___endValue3, float ___duration4, ABSTweenPlugin_3_t2450922953 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m1982121897_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t1967117138 * G_B8_0 = NULL; TweenerCore_3_t1967117138 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t1967117138 * G_B9_1 = NULL; { ABSTweenPlugin_3_t2450922953 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t1967117138 * L_1 = ___t0; ABSTweenPlugin_3_t2450922953 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t1967117138 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2450922953 * L_4 = (ABSTweenPlugin_3_t2450922953 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t1967117138 * L_5 = ___t0; ABSTweenPlugin_3_t2450922953 * L_6 = (( ABSTweenPlugin_3_t2450922953 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t1967117138 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t2450922953 * L_8 = (ABSTweenPlugin_3_t2450922953 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t1967117138 * L_9 = ___t0; DOGetter_1_t1549857945 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t1967117138 * L_11 = ___t0; DOSetter_1_t2586497773 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t1967117138 * L_13 = ___t0; Color_t4194546905 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t1967117138 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t1967117138 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t1967117138 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t1967117138 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t1967117138 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t1967117138 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t1967117138 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t1967117138 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421_MetadataUsageId; extern "C" bool Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Quaternion_t1553702882 ___endValue3, float ___duration4, ABSTweenPlugin_3_t2763940843 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m4283855421_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t2280135028 * G_B8_0 = NULL; TweenerCore_3_t2280135028 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t2280135028 * G_B9_1 = NULL; { ABSTweenPlugin_3_t2763940843 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t2280135028 * L_1 = ___t0; ABSTweenPlugin_3_t2763940843 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t2280135028 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2763940843 * L_4 = (ABSTweenPlugin_3_t2763940843 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t2280135028 * L_5 = ___t0; ABSTweenPlugin_3_t2763940843 * L_6 = (( ABSTweenPlugin_3_t2763940843 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t2280135028 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t2763940843 * L_8 = (ABSTweenPlugin_3_t2763940843 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t2280135028 * L_9 = ___t0; DOGetter_1_t3203981218 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t2280135028 * L_11 = ___t0; DOSetter_1_t4240621046 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t2280135028 * L_13 = ___t0; Quaternion_t1553702882 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t2280135028 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t2280135028 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t2280135028 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t2280135028 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t2280135028 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t2280135028 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t2280135028 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t2280135028 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088_MetadataUsageId; extern "C" bool Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, DOGetter_1_t3203981218 * ___getter1, DOSetter_1_t4240621046 * ___setter2, Vector3_t4282066566 ___endValue3, float ___duration4, ABSTweenPlugin_3_t456610874 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m4163671088_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t4267772355 * G_B8_0 = NULL; TweenerCore_3_t4267772355 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t4267772355 * G_B9_1 = NULL; { ABSTweenPlugin_3_t456610874 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t4267772355 * L_1 = ___t0; ABSTweenPlugin_3_t456610874 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t4267772355 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t456610874 * L_4 = (ABSTweenPlugin_3_t456610874 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t4267772355 * L_5 = ___t0; ABSTweenPlugin_3_t456610874 * L_6 = (( ABSTweenPlugin_3_t456610874 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t4267772355 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t456610874 * L_8 = (ABSTweenPlugin_3_t456610874 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t4267772355 * L_9 = ___t0; DOGetter_1_t3203981218 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t4267772355 * L_11 = ___t0; DOSetter_1_t4240621046 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t4267772355 * L_13 = ___t0; Vector3_t4282066566 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t4267772355 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t4267772355 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t4267772355 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t4267772355 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t4267772355 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t4267772355 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t4267772355 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t4267772355 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858_MetadataUsageId; extern "C" bool Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, DOGetter_1_t1597215656 * ___getter1, DOSetter_1_t2633855484 * ___setter2, Rect_t4241904616 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1159236128 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m666164858_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t675430313 * G_B8_0 = NULL; TweenerCore_3_t675430313 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t675430313 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1159236128 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t675430313 * L_1 = ___t0; ABSTweenPlugin_3_t1159236128 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t675430313 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1159236128 * L_4 = (ABSTweenPlugin_3_t1159236128 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t675430313 * L_5 = ___t0; ABSTweenPlugin_3_t1159236128 * L_6 = (( ABSTweenPlugin_3_t1159236128 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t675430313 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1159236128 * L_8 = (ABSTweenPlugin_3_t1159236128 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t675430313 * L_9 = ___t0; DOGetter_1_t1597215656 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t675430313 * L_11 = ___t0; DOSetter_1_t2633855484 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t675430313 * L_13 = ___t0; Rect_t4241904616 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t675430313 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t675430313 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t675430313 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t675430313 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t675430313 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t675430313 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t675430313 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t675430313 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771_MetadataUsageId; extern "C" bool Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, DOGetter_1_t1637377605 * ___getter1, DOSetter_1_t2674017433 * ___setter2, Vector2_t4282066565 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1464243781 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m42758771_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t980437966 * G_B8_0 = NULL; TweenerCore_3_t980437966 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t980437966 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1464243781 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t980437966 * L_1 = ___t0; ABSTweenPlugin_3_t1464243781 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t980437966 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1464243781 * L_4 = (ABSTweenPlugin_3_t1464243781 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t980437966 * L_5 = ___t0; ABSTweenPlugin_3_t1464243781 * L_6 = (( ABSTweenPlugin_3_t1464243781 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t980437966 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1464243781 * L_8 = (ABSTweenPlugin_3_t1464243781 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t980437966 * L_9 = ___t0; DOGetter_1_t1637377605 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t980437966 * L_11 = ___t0; DOSetter_1_t2674017433 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t980437966 * L_13 = ___t0; Vector2_t4282066565 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t980437966 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t980437966 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t980437966 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t980437966 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t980437966 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t980437966 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t980437966 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t980437966 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752_MetadataUsageId; extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t550017430 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m876797752_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t66211615 * G_B8_0 = NULL; TweenerCore_3_t66211615 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t66211615 * G_B9_1 = NULL; { ABSTweenPlugin_3_t550017430 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t66211615 * L_1 = ___t0; ABSTweenPlugin_3_t550017430 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t66211615 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t550017430 * L_4 = (ABSTweenPlugin_3_t550017430 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t66211615 * L_5 = ___t0; ABSTweenPlugin_3_t550017430 * L_6 = (( ABSTweenPlugin_3_t550017430 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t66211615 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t550017430 * L_8 = (ABSTweenPlugin_3_t550017430 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t66211615 * L_9 = ___t0; DOGetter_1_t1637377606 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t66211615 * L_11 = ___t0; DOSetter_1_t2674017434 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t66211615 * L_13 = ___t0; Il2CppObject * L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t66211615 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t66211615 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t66211615 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t66211615 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t66211615 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t66211615 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t66211615 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t66211615 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236_MetadataUsageId; extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Il2CppObject * ___endValue3, float ___duration4, ABSTweenPlugin_3_t3727480402 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m2252725236_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3243674587 * G_B8_0 = NULL; TweenerCore_3_t3243674587 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t3243674587 * G_B9_1 = NULL; { ABSTweenPlugin_3_t3727480402 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t3243674587 * L_1 = ___t0; ABSTweenPlugin_3_t3727480402 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t3243674587 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t3727480402 * L_4 = (ABSTweenPlugin_3_t3727480402 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t3243674587 * L_5 = ___t0; ABSTweenPlugin_3_t3727480402 * L_6 = (( ABSTweenPlugin_3_t3727480402 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t3243674587 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t3727480402 * L_8 = (ABSTweenPlugin_3_t3727480402 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t3243674587 * L_9 = ___t0; DOGetter_1_t1637377606 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t3243674587 * L_11 = ___t0; DOSetter_1_t2674017434 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t3243674587 * L_13 = ___t0; Il2CppObject * L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t3243674587 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t3243674587 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t3243674587 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t3243674587 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t3243674587 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t3243674587 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t3243674587 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t3243674587 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093_MetadataUsageId; extern "C" bool Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, DOGetter_1_t1637377606 * ___getter1, DOSetter_1_t2674017434 * ___setter2, Vector3_t4282066566 ___endValue3, float ___duration4, ABSTweenPlugin_3_t3617005689 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3449087093_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t3133199874 * G_B8_0 = NULL; TweenerCore_3_t3133199874 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t3133199874 * G_B9_1 = NULL; { ABSTweenPlugin_3_t3617005689 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t3133199874 * L_1 = ___t0; ABSTweenPlugin_3_t3617005689 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t3133199874 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t3617005689 * L_4 = (ABSTweenPlugin_3_t3617005689 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t3133199874 * L_5 = ___t0; ABSTweenPlugin_3_t3617005689 * L_6 = (( ABSTweenPlugin_3_t3617005689 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t3133199874 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t3617005689 * L_8 = (ABSTweenPlugin_3_t3617005689 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t3133199874 * L_9 = ___t0; DOGetter_1_t1637377606 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t3133199874 * L_11 = ___t0; DOSetter_1_t2674017434 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t3133199874 * L_13 = ___t0; Vector3_t4282066566 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t3133199874 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t3133199874 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t3133199874 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t3133199874 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t3133199874 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t3133199874 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t3133199874 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t3133199874 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean DG.Tweening.Tweener::Setup<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,DG.Tweening.Core.DOGetter`1<T1>,DG.Tweening.Core.DOSetter`1<T1>,T2,System.Single,DG.Tweening.Plugins.Core.ABSTweenPlugin`3<T1,T2,TPlugOptions>) extern Il2CppClass* DOTween_t582298986_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral1977751412; extern const uint32_t Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119_MetadataUsageId; extern "C" bool Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, DOGetter_1_t1637377607 * ___getter1, DOSetter_1_t2674017435 * ___setter2, Vector4_t4282066567 ___endValue3, float ___duration4, ABSTweenPlugin_3_t1474800301 * ___plugin5, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Tweener_Setup_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2560448119_MetadataUsageId); s_Il2CppMethodIntialized = true; } TweenerCore_3_t990994486 * G_B8_0 = NULL; TweenerCore_3_t990994486 * G_B7_0 = NULL; int32_t G_B9_0 = 0; TweenerCore_3_t990994486 * G_B9_1 = NULL; { ABSTweenPlugin_3_t1474800301 * L_0 = ___plugin5; if (!L_0) { goto IL_000e; } } { TweenerCore_3_t990994486 * L_1 = ___t0; ABSTweenPlugin_3_t1474800301 * L_2 = ___plugin5; NullCheck(L_1); L_1->set_tweenPlugin_59(L_2); goto IL_0035; } IL_000e: { TweenerCore_3_t990994486 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1474800301 * L_4 = (ABSTweenPlugin_3_t1474800301 *)L_3->get_tweenPlugin_59(); if (L_4) { goto IL_0021; } } { TweenerCore_3_t990994486 * L_5 = ___t0; ABSTweenPlugin_3_t1474800301 * L_6 = (( ABSTweenPlugin_3_t1474800301 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); NullCheck(L_5); L_5->set_tweenPlugin_59(L_6); } IL_0021: { TweenerCore_3_t990994486 * L_7 = ___t0; NullCheck(L_7); ABSTweenPlugin_3_t1474800301 * L_8 = (ABSTweenPlugin_3_t1474800301 *)L_7->get_tweenPlugin_59(); if (L_8) { goto IL_0035; } } { Debugger_LogError_m1865249889(NULL /*static, unused*/, (Il2CppObject *)_stringLiteral1977751412, /*hidden argument*/NULL); return (bool)0; } IL_0035: { TweenerCore_3_t990994486 * L_9 = ___t0; DOGetter_1_t1637377607 * L_10 = ___getter1; NullCheck(L_9); L_9->set_getter_57(L_10); TweenerCore_3_t990994486 * L_11 = ___t0; DOSetter_1_t2674017435 * L_12 = ___setter2; NullCheck(L_11); L_11->set_setter_58(L_12); TweenerCore_3_t990994486 * L_13 = ___t0; Vector4_t4282066567 L_14 = ___endValue3; NullCheck(L_13); L_13->set_endValue_54(L_14); TweenerCore_3_t990994486 * L_15 = ___t0; float L_16 = ___duration4; NullCheck(L_15); ((Tween_t675658773 *)L_15)->set_duration_23(L_16); TweenerCore_3_t990994486 * L_17 = ___t0; IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); bool L_18 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoKill_10(); NullCheck(L_17); ((Tween_t675658773 *)L_17)->set_autoKill_22(L_18); TweenerCore_3_t990994486 * L_19 = ___t0; bool L_20 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultRecyclable_12(); NullCheck(L_19); ((Tween_t675658773 *)L_19)->set_isRecyclable_20(L_20); TweenerCore_3_t990994486 * L_21 = ___t0; int32_t L_22 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseType_13(); NullCheck(L_21); ((Tween_t675658773 *)L_21)->set_easeType_28(L_22); TweenerCore_3_t990994486 * L_23 = ___t0; float L_24 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEaseOvershootOrAmplitude_14(); NullCheck(L_23); ((Tween_t675658773 *)L_23)->set_easeOvershootOrAmplitude_30(L_24); TweenerCore_3_t990994486 * L_25 = ___t0; float L_26 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultEasePeriod_15(); NullCheck(L_25); ((Tween_t675658773 *)L_25)->set_easePeriod_31(L_26); TweenerCore_3_t990994486 * L_27 = ___t0; int32_t L_28 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultLoopType_11(); NullCheck(L_27); ((Tween_t675658773 *)L_27)->set_loopType_25(L_28); TweenerCore_3_t990994486 * L_29 = ___t0; int32_t L_30 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B7_0 = L_29; if ((((int32_t)L_30) == ((int32_t)3))) { G_B8_0 = L_29; goto IL_00a7; } } { IL2CPP_RUNTIME_CLASS_INIT(DOTween_t582298986_il2cpp_TypeInfo_var); int32_t L_31 = ((DOTween_t582298986_StaticFields*)DOTween_t582298986_il2cpp_TypeInfo_var->static_fields)->get_defaultAutoPlay_9(); G_B9_0 = ((((int32_t)L_31) == ((int32_t)2))? 1 : 0); G_B9_1 = G_B7_0; goto IL_00a8; } IL_00a7: { G_B9_0 = 1; G_B9_1 = G_B8_0; } IL_00a8: { NullCheck(G_B9_1); ((Tween_t675658773 *)G_B9_1)->set_isPlaying_46((bool)G_B9_0); return (bool)1; } } // System.Boolean System.Array::Exists<System.Object>(T[],System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral103668165; extern const uint32_t Array_Exists_TisIl2CppObject_m2935916183_MetadataUsageId; extern "C" bool Array_Exists_TisIl2CppObject_m2935916183_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_Exists_TisIl2CppObject_m2935916183_MetadataUsageId); s_Il2CppMethodIntialized = true; } Il2CppObject * V_0 = NULL; ObjectU5BU5D_t1108656482* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Predicate_1_t3781873254 * L_2 = ___match1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t3573189601 * L_3 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_3, (String_t*)_stringLiteral103668165, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { ObjectU5BU5D_t1108656482* L_4 = ___array0; V_1 = (ObjectU5BU5D_t1108656482*)L_4; V_2 = (int32_t)0; goto IL_0045; } IL_002b: { ObjectU5BU5D_t1108656482* L_5 = V_1; int32_t L_6 = V_2; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Il2CppObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_0 = (Il2CppObject *)L_8; Predicate_1_t3781873254 * L_9 = ___match1; Il2CppObject * L_10 = V_0; NullCheck((Predicate_1_t3781873254 *)L_9); bool L_11 = (( bool (*) (Predicate_1_t3781873254 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3781873254 *)L_9, (Il2CppObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (!L_11) { goto IL_0041; } } { return (bool)1; } IL_0041: { int32_t L_12 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_0045: { int32_t L_13 = V_2; ObjectU5BU5D_t1108656482* L_14 = V_1; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_14)->max_length))))))) { goto IL_002b; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/Contacts>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContacts_t352143704_m107345601_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Contacts_t352143704 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Contacts_t352143704 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Contacts_t352143704 L_7 = V_2; Contacts_t352143704 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/detailsProperty>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisdetailsProperty_t1057943986_m1232483079_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; detailsProperty_t1057943986 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (detailsProperty_t1057943986 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { detailsProperty_t1057943986 L_7 = V_2; detailsProperty_t1057943986 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/DeviceDetailedInformation>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t4234054081_m323098646_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceDetailedInformation_t4234054081 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceDetailedInformation_t4234054081 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DeviceDetailedInformation_t4234054081 L_7 = V_2; DeviceDetailedInformation_t4234054081 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<AllSingleton/surveyProperty>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TissurveyProperty_t884569204_m2566298717_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; surveyProperty_t884569204 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (surveyProperty_t884569204 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { surveyProperty_t884569204 L_7 = V_2; surveyProperty_t884569204 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDeviceDetailedInformation_t3668321760_m575326261_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceDetailedInformation_t3668321760 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceDetailedInformation_t3668321760 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DeviceDetailedInformation_t3668321760 L_7 = V_2; DeviceDetailedInformation_t3668321760 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDeviceProperties_t2492701999_m1985073560_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceProperties_t2492701999 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceProperties_t2492701999 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DeviceProperties_t2492701999 L_7 = V_2; DeviceProperties_t2492701999 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TispeopleOrderPatrol_t4292956421_m1699024602_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; peopleOrderPatrol_t4292956421 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (peopleOrderPatrol_t4292956421 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { peopleOrderPatrol_t4292956421 L_7 = V_2; peopleOrderPatrol_t4292956421 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TispeoplePatrol_t2522972577_m2161308170_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; peoplePatrol_t2522972577 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (peoplePatrol_t2522972577 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { peoplePatrol_t2522972577 L_7 = V_2; peoplePatrol_t2522972577 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisStaffInformatino_t2939901716_m554701053_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StaffInformatino_t2939901716 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (StaffInformatino_t2939901716 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { StaffInformatino_t2939901716 L_7 = V_2; StaffInformatino_t2939901716 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisControlPoint_t3116362155_m3257946173_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ControlPoint_t3116362155 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ControlPoint_t3116362155 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ControlPoint_t3116362155 L_7 = V_2; ControlPoint_t3116362155 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<HighlightingSystem.Highlighter/Mode>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMode_t2711727618_m4017050859_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<HighlightingSystem.HighlighterRenderer/Data>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisData_t3265512710_m99893231_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Data_t3265512710 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Data_t3265512710 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Data_t3265512710 L_7 = V_2; Data_t3265512710 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.ArrayMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisArrayMetadata_t4058342910_m786720194_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArrayMetadata_t4058342910 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ArrayMetadata_t4058342910 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ArrayMetadata_t4058342910 L_7 = V_2; ArrayMetadata_t4058342910 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.ObjectMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisObjectMetadata_t2009294498_m173153746_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ObjectMetadata_t2009294498 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ObjectMetadata_t2009294498 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ObjectMetadata_t2009294498 L_7 = V_2; ObjectMetadata_t2009294498 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<LitJson.PropertyMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPropertyMetadata_t4066634616_m912837160_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PropertyMetadata_t4066634616 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (PropertyMetadata_t4066634616 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { PropertyMetadata_t4066634616 L_7 = V_2; PropertyMetadata_t4066634616 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTableRange_t3372848153_m1263716974_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TableRange_t3372848153 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TableRange_t3372848153 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { TableRange_t3372848153 L_7 = V_2; TableRange_t3372848153 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisClientCertificateType_t3167042548_m4240864350_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Security.Uri/UriScheme>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUriScheme_t3372318283_m1407705780_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UriScheme_t3372318283 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UriScheme_t3372318283 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { UriScheme_t3372318283 L_7 = V_2; UriScheme_t3372318283 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<Mono.Xml2.XmlTextReader/TagName>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTagName_t2016006645_m4172745822_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TagName_t2016006645 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TagName_t2016006645 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { TagName_t2016006645 L_7 = V_2; TagName_t2016006645 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<PresetSelector/Preset>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPreset_t2393284144_m791224217_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Preset_t2393284144 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Preset_t2393284144 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Preset_t2393284144 L_7 = V_2; Preset_t2393284144 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.ArraySegment`1<System.Byte>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern const MethodInfo* ArraySegment_1_Equals_m357209176_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisArraySegment_1_t2188033608_m2759624190_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArraySegment_1_t2188033608 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ArraySegment_1_t2188033608 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ArraySegment_1_t2188033608 L_7 = V_2; ArraySegment_1_t2188033608 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = ArraySegment_1_Equals_m357209176((ArraySegment_1_t2188033608 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/ArraySegment_1_Equals_m357209176_MethodInfo_var); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Boolean>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisBoolean_t476798718_m3410186174_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (bool*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { bool L_7 = V_2; bool L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Boolean_Equals_m1178456600((bool*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Byte>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisByte_t2862609660_m1898566608_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint8_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { uint8_t L_7 = V_2; uint8_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Byte_Equals_m4077775008((uint8_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Char>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisChar_t2862622538_m906768158_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Il2CppChar*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Il2CppChar L_7 = V_2; Il2CppChar L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Char_Equals_m158269074((Il2CppChar*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.DictionaryEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDictionaryEntry_t1751606614_m2630325145_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DictionaryEntry_t1751606614 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DictionaryEntry_t1751606614 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DictionaryEntry_t1751606614 L_7 = V_2; DictionaryEntry_t1751606614 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLink_t2122599155_m273630558_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Link_t2122599155 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Link_t2122599155 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Link_t2122599155 L_7 = V_2; Link_t2122599155 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1049882445_m2996164918_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1049882445 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1049882445 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t1049882445 L_7 = V_2; KeyValuePair_2_t1049882445 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4066860316_m2778662775_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4066860316 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4066860316 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t4066860316 L_7 = V_2; KeyValuePair_2_t4066860316 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3980314737_m2331848814_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3980314737 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3980314737 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t3980314737 L_7 = V_2; KeyValuePair_2_t3980314737 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1832195516_m3791790935_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1832195516 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1832195516 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t1832195516 L_7 = V_2; KeyValuePair_2_t1832195516 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t4078114400_m2511903725_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4078114400 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4078114400 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t4078114400 L_7 = V_2; KeyValuePair_2_t4078114400 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1840487222_m1938570647_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1840487222 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1840487222 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t1840487222 L_7 = V_2; KeyValuePair_2_t1840487222 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t2545618620_m1747221121_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2545618620 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2545618620 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t2545618620 L_7 = V_2; KeyValuePair_2_t2545618620 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3222658402_m628122331_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3222658402 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3222658402 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t3222658402 L_7 = V_2; KeyValuePair_2_t3222658402 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t1944668977_m2383786610_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1944668977 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1944668977 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t1944668977 L_7 = V_2; KeyValuePair_2_t1944668977 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyValuePair_2_t3310123289_m2693783044_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3310123289 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3310123289 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { KeyValuePair_2_t3310123289 L_7 = V_2; KeyValuePair_2_t3310123289 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Generic.Link>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLink_t2063667470_m4079257842_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Link_t2063667470 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Link_t2063667470 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Link_t2063667470 L_7 = V_2; Link_t2063667470 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.Hashtable/Slot>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSlot_t2260530181_m3865375726_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t2260530181 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Slot_t2260530181 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Slot_t2260530181 L_7 = V_2; Slot_t2260530181 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Collections.SortedList/Slot>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSlot_t2072023290_m3817928143_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t2072023290 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Slot_t2072023290 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Slot_t2072023290 L_7 = V_2; Slot_t2072023290 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.DateTime>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDateTime_t4283661327_m22041699_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTime_t4283661327 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DateTime_t4283661327 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DateTime_t4283661327 L_7 = V_2; DateTime_t4283661327 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = DateTime_Equals_m13666989((DateTime_t4283661327 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Decimal>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDecimal_t1954350631_m3865786983_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Decimal_t1954350631 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Decimal_t1954350631 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Decimal_t1954350631 L_7 = V_2; Decimal_t1954350631 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Decimal_Equals_m3414174927((Decimal_t1954350631 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Double>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDouble_t3868226565_m115979225_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; double V_2 = 0.0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (double*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { double L_7 = V_2; double L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Double_Equals_m1597124279((double*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int16>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt16_t1153838442_m4062143914_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int16_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int16_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int16_t L_7 = V_2; int16_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int16_Equals_m3652534636((int16_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt32_t1153838500_m4115708132_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int32_Equals_m4061110258((int32_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Int64>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisInt64_t1153838595_m4203442627_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int64_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int64_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int64_t L_7 = V_2; int64_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Int64_Equals_m1990436019((int64_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.IntPtr>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisIntPtr_t_m643897735_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IntPtr_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (IntPtr_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { IntPtr_t L_7 = V_2; IntPtr_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = IntPtr_Equals_m3488505417((IntPtr_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Object>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisIl2CppObject_m404059207_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppObject * V_2 = NULL; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Il2CppObject **)(&V_2)); Il2CppObject * L_5 = ___item0; if (L_5) { goto IL_004d; } } { Il2CppObject * L_6 = V_2; if (L_6) { goto IL_004b; } } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Il2CppObject * L_7 = V_2; NullCheck((Il2CppObject *)(*(&___item0))); bool L_8 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)(*(&___item0)), (Il2CppObject *)L_7); if (!L_8) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_9 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_9+(int32_t)1)); } IL_006b: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeNamedArgument>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCustomAttributeNamedArgument_t3059612989_m6598724_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeNamedArgument_t3059612989 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (CustomAttributeNamedArgument_t3059612989 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { CustomAttributeNamedArgument_t3059612989 L_7 = V_2; CustomAttributeNamedArgument_t3059612989 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = CustomAttributeNamedArgument_Equals_m109042642((CustomAttributeNamedArgument_t3059612989 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.CustomAttributeTypedArgument>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisCustomAttributeTypedArgument_t3301293422_m396292085_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeTypedArgument_t3301293422 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (CustomAttributeTypedArgument_t3301293422 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { CustomAttributeTypedArgument_t3301293422 L_7 = V_2; CustomAttributeTypedArgument_t3301293422 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = CustomAttributeTypedArgument_Equals_m464286849((CustomAttributeTypedArgument_t3301293422 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLabelData_t3207823784_m634481661_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelData_t3207823784 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (LabelData_t3207823784 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { LabelData_t3207823784 L_7 = V_2; LabelData_t3207823784 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisLabelFixup_t660379442_m4101122459_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelFixup_t660379442 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (LabelFixup_t660379442 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { LabelFixup_t660379442 L_7 = V_2; LabelFixup_t660379442 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.Emit.ILTokenInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisILTokenInfo_t1354080954_m913618530_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ILTokenInfo_t1354080954 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ILTokenInfo_t1354080954 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ILTokenInfo_t1354080954 L_7 = V_2; ILTokenInfo_t1354080954 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Reflection.ParameterModifier>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisParameterModifier_t741930026_m2145533893_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParameterModifier_t741930026 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ParameterModifier_t741930026 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ParameterModifier_t741930026 L_7 = V_2; ParameterModifier_t741930026 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceReader/ResourceCacheItem>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisResourceCacheItem_t2113902833_m725888730_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceCacheItem_t2113902833 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ResourceCacheItem_t2113902833 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ResourceCacheItem_t2113902833 L_7 = V_2; ResourceCacheItem_t2113902833 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Resources.ResourceReader/ResourceInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisResourceInfo_t4013605874_m2692380999_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceInfo_t4013605874 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ResourceInfo_t4013605874 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ResourceInfo_t4013605874 L_7 = V_2; ResourceInfo_t4013605874 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTypeTag_t2420703430_m2745790074_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint8_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { uint8_t L_7 = V_2; uint8_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.SByte>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSByte_t1161769777_m1602367473_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int8_t V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int8_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int8_t L_7 = V_2; int8_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = SByte_Equals_m1310501829((int8_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisX509ChainStatus_t766901931_m2027238301_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; X509ChainStatus_t766901931 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (X509ChainStatus_t766901931 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { X509ChainStatus_t766901931 L_7 = V_2; X509ChainStatus_t766901931 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Single>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisSingle_t4291918972_m250849488_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; float V_2 = 0.0f; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (float*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { float L_7 = V_2; float L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Single_Equals_m2650902624((float*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Text.RegularExpressions.Mark>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisMark_t3811539797_m348452931_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Mark_t3811539797 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Mark_t3811539797 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Mark_t3811539797 L_7 = V_2; Mark_t3811539797 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.TimeSpan>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTimeSpan_t413522987_m1811760767_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TimeSpan_t413522987 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TimeSpan_t413522987 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { TimeSpan_t413522987 L_7 = V_2; TimeSpan_t413522987 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = TimeSpan_Equals_m2969422609((TimeSpan_t413522987 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt16>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt16_t24667923_m3076878311_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint16_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { uint16_t L_7 = V_2; uint16_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt16_Equals_m857648105((uint16_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt32_t24667981_m3130442529_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { uint32_t L_7 = V_2; uint32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt32_Equals_m1266223727((uint32_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.UInt64>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUInt64_t24668076_m3218177024_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint64_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint64_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { uint64_t L_7 = V_2; uint64_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = UInt64_Equals_m3490516784((uint64_t*)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Uri/UriScheme>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUriScheme_t1290668975_m1000946820_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UriScheme_t1290668975 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UriScheme_t1290668975 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { UriScheme_t1290668975 L_7 = V_2; UriScheme_t1290668975 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNamespaceManager/NsDecl>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisNsDecl_t3658211563_m2549840084_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NsDecl_t3658211563 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (NsDecl_t3658211563 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { NsDecl_t3658211563 L_7 = V_2; NsDecl_t3658211563 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<System.Xml.XmlNamespaceManager/NsScope>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisNsScope_t1749213747_m3414222728_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NsScope_t1749213747 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (NsScope_t1749213747 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { NsScope_t1749213747 L_7 = V_2; NsScope_t1749213747 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<TypewriterEffect/FadeEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisFadeEntry_t2858472101_m1840062458_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; FadeEntry_t2858472101 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (FadeEntry_t2858472101 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { FadeEntry_t2858472101 L_7 = V_2; FadeEntry_t2858472101 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UICamera/DepthEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisDepthEntry_t1145614469_m4271731182_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DepthEntry_t1145614469 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DepthEntry_t1145614469 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { DepthEntry_t1145614469 L_7 = V_2; DepthEntry_t1145614469 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.AnimatorStateInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisAnimatorStateInfo_t323110318_m4211923018_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; AnimatorStateInfo_t323110318 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (AnimatorStateInfo_t323110318 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { AnimatorStateInfo_t323110318 L_7 = V_2; AnimatorStateInfo_t323110318 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Bounds>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisBounds_t2711641849_m3894846081_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Bounds_t2711641849 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Bounds_t2711641849 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Bounds_t2711641849 L_7 = V_2; Bounds_t2711641849 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Bounds_Equals_m2517451939((Bounds_t2711641849 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisColor_t4194546905_m207472885_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color_t4194546905 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Color_t4194546905 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Color_t4194546905 L_7 = V_2; Color_t4194546905 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Color_Equals_m3016668205((Color_t4194546905 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Color32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisColor32_t598853688_m1506607700_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color32_t598853688 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Color32_t598853688 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Color32_t598853688 L_7 = V_2; Color32_t598853688 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContactPoint_t243083348_m2517544412_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ContactPoint_t243083348 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ContactPoint_t243083348 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ContactPoint_t243083348 L_7 = V_2; ContactPoint_t243083348 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ContactPoint2D>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContactPoint2D_t4288432358_m975247342_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ContactPoint2D_t4288432358 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ContactPoint2D_t4288432358 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { ContactPoint2D_t4288432358 L_7 = V_2; ContactPoint2D_t4288432358 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.EventSystems.RaycastResult>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastResult_t3762661364_m3612374478_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastResult_t3762661364 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastResult_t3762661364 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { RaycastResult_t3762661364 L_7 = V_2; RaycastResult_t3762661364 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Experimental.Director.Playable>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPlayable_t70832698_m4011265398_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Playable_t70832698 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Playable_t70832698 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Playable_t70832698 L_7 = V_2; Playable_t70832698 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Playable_Equals_m1149042830((Playable_t70832698 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.KeyCode>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyCode_t3128317986_m3667103038_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Keyframe>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisKeyframe_t4079056114_m1711265402_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Keyframe_t4079056114 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Keyframe_t4079056114 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Keyframe_t4079056114 L_7 = V_2; Keyframe_t4079056114 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.ParticleSystem/Particle>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisParticle_t405273609_m4269885298_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Particle_t405273609 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Particle_t405273609 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Particle_t405273609 L_7 = V_2; Particle_t405273609 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastHit_t4003175726_m4098007862_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit_t4003175726 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastHit_t4003175726 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { RaycastHit_t4003175726 L_7 = V_2; RaycastHit_t4003175726 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.RaycastHit2D>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRaycastHit2D_t1374744384_m3677167304_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit2D_t1374744384 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastHit2D_t1374744384 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { RaycastHit2D_t1374744384 L_7 = V_2; RaycastHit2D_t1374744384 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisRenderTargetIdentifier_t1322160672_m1259250590_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RenderTargetIdentifier_t1322160672 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RenderTargetIdentifier_t1322160672 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { RenderTargetIdentifier_t1322160672 L_7 = V_2; RenderTargetIdentifier_t1322160672 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SendMouseEvents/HitInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisHitInfo_t3209134097_m1118799738_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HitInfo_t3209134097 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (HitInfo_t3209134097 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { HitInfo_t3209134097 L_7 = V_2; HitInfo_t3209134097 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGcAchievementData_t3481375915_m4073133661_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcAchievementData_t3481375915 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (GcAchievementData_t3481375915 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { GcAchievementData_t3481375915 L_7 = V_2; GcAchievementData_t3481375915 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisGcScoreData_t2181296590_m2527642240_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcScoreData_t2181296590 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (GcScoreData_t2181296590 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { GcScoreData_t2181296590 L_7 = V_2; GcScoreData_t2181296590 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Touch>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisTouch_t4210255029_m2885298897_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Touch_t4210255029 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Touch_t4210255029 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Touch_t4210255029 L_7 = V_2; Touch_t4210255029 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UI.InputField/ContentType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisContentType_t2662964855_m2906099808_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UICharInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUICharInfo_t65807484_m1413665668_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UICharInfo_t65807484 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UICharInfo_t65807484 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { UICharInfo_t65807484 L_7 = V_2; UICharInfo_t65807484 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UILineInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUILineInfo_t4113875482_m245854754_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UILineInfo_t4113875482 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UILineInfo_t4113875482 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { UILineInfo_t4113875482 L_7 = V_2; UILineInfo_t4113875482 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.UIVertex>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisUIVertex_t4244065212_m1343830084_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UIVertex_t4244065212 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UIVertex_t4244065212 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { UIVertex_t4244065212 L_7 = V_2; UIVertex_t4244065212 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector2>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector2_t4282066565_m2041868833_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector2_t4282066565 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector2_t4282066565 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Vector2_t4282066565 L_7 = V_2; Vector2_t4282066565 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector2_Equals_m3404198849((Vector2_t4282066565 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector3>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector3_t4282066566_m2042792354_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector3_t4282066566 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector3_t4282066566 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Vector3_t4282066566 L_7 = V_2; Vector3_t4282066566 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector3_Equals_m3337192096((Vector3_t4282066566 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.Vector4>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVector4_t4282066567_m2043715875_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector4_t4282066567 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector4_t4282066567 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Vector4_t4282066567 L_7 = V_2; Vector4_t4282066567 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); bool L_10 = Vector4_Equals_m3270185343((Vector4_t4282066567 *)(&___item0), (Il2CppObject *)L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_006b: { int32_t L_12 = V_1; int32_t L_13 = V_0; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityEngine.VR.VRDeviceType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisVRDeviceType_t4084270792_m2349323504_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisQualitySettings_t2308822883_m3407007820_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; QualitySettings_t2308822883 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (QualitySettings_t2308822883 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { QualitySettings_t2308822883 L_7 = V_2; QualitySettings_t2308822883 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisPreset_t8910124_m133767809_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Preset_t8910124 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Preset_t8910124 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { Preset_t8910124 L_7 = V_2; Preset_t8910124 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisQualitySettings_t2868270621_m1585966086_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; QualitySettings_t2868270621 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (QualitySettings_t2868270621 *)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { QualitySettings_t2868270621 L_7 = V_2; QualitySettings_t2868270621 L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Contains<WMG_Data_Source/WMG_VariableTypes>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Contains_TisWMG_VariableTypes_t4265297442_m4093833099_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_006b; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_004d; } { goto IL_004b; } { return (bool)1; } IL_004b: { return (bool)0; } IL_004d: { int32_t L_7 = V_2; int32_t L_8 = L_7; Il2CppObject * L_9 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_8); Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___item0)); NullCheck((Il2CppObject *)L_10); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_10, (Il2CppObject *)L_9); if (!L_11) { goto IL_0067; } } { return (bool)1; } IL_0067: { int32_t L_12 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_006b: { int32_t L_13 = V_1; int32_t L_14 = V_0; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_002a; } } { return (bool)0; } } // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/Contacts>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContacts_t352143704_m650263206_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/detailsProperty>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisdetailsProperty_t1057943986_m616936322_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/DeviceDetailedInformation>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t4234054081_m991132369_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<AllSingleton/surveyProperty>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TissurveyProperty_t884569204_m2546442370_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDeviceDetailedInformation_t3668321760_m1447140528_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDeviceProperties_t2492701999_m777123517_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TispeopleOrderPatrol_t4292956421_m2907278933_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TispeoplePatrol_t2522972577_m588607919_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisStaffInformatino_t2939901716_m3641718306_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisControlPoint_t3116362155_m159172600_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<HighlightingSystem.Highlighter/Mode>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMode_t2711727618_m216032272_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<HighlightingSystem.HighlighterRenderer/Data>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisData_t3265512710_m2462734868_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.ArrayMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisArrayMetadata_t4058342910_m1329637799_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.ObjectMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisObjectMetadata_t2009294498_m4118697613_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<LitJson.PropertyMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPropertyMetadata_t4066634616_m124370979_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTableRange_t3372848153_m2754959145_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisClientCertificateType_t3167042548_m3553504153_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Security.Uri/UriScheme>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUriScheme_t3372318283_m1387849433_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<Mono.Xml2.XmlTextReader/TagName>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTagName_t2016006645_m1634694659_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<PresetSelector/Preset>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPreset_t2393284144_m1334141822_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.ArraySegment`1<System.Byte>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisArraySegment_1_t2188033608_m281706041_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Boolean>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisBoolean_t476798718_m793080697_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Byte>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisByte_t2862609660_m2030682613_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Char>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisChar_t2862622538_m1038884163_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.DictionaryEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDictionaryEntry_t1751606614_m152406996_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLink_t2122599155_m3133247321_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1049882445_m2035942065_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4066860316_m3076525404_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3980314737_m2706866579_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1832195516_m776531730_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t4078114400_m3528148882_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1840487222_m3592590332_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t2545618620_m230398758_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3222658402_m925984960_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t1944668977_m3027593517_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyValuePair_2_t3310123289_m3068800809_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Generic.Link>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLink_t2063667470_m1541206679_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.Hashtable/Slot>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSlot_t2260530181_m44664915_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Collections.SortedList/Slot>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSlot_t2072023290_m1340009994_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.DateTime>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDateTime_t4283661327_m496150536_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Decimal>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDecimal_t1954350631_m1248681506_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Double>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDouble_t3868226565_m2525408446_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int16>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt16_t1153838442_m3862772773_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt32_t1153838500_m3916336991_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Int64>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisInt64_t1153838595_m4004071486_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.IntPtr>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisIntPtr_t_m3053326956_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Object>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisIl2CppObject_m2813488428_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeNamedArgument>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCustomAttributeNamedArgument_t3059612989_m1202792447_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.CustomAttributeTypedArgument>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisCustomAttributeTypedArgument_t3301293422_m1592485808_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLabelData_t3207823784_m868128376_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisLabelFixup_t660379442_m2754236032_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.Emit.ILTokenInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisILTokenInfo_t1354080954_m2730667677_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Reflection.ParameterModifier>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisParameterModifier_t741930026_m2639482602_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceReader/ResourceCacheItem>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisResourceCacheItem_t2113902833_m1189435711_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Resources.ResourceReader/ResourceInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisResourceInfo_t4013605874_m2926027714_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTypeTag_t2420703430_m4237032245_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.SByte>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSByte_t1161769777_m1402996332_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisX509ChainStatus_t766901931_m3283676802_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Single>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisSingle_t4291918972_m2660278709_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Text.RegularExpressions.Mark>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisMark_t3811539797_m842401640_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.TimeSpan>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTimeSpan_t413522987_m2285869604_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt16>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt16_t24667923_m1191340236_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt32_t24667981_m1244904454_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.UInt64>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUInt64_t24668076_m1332638949_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Uri/UriScheme>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUriScheme_t1290668975_m879912959_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNamespaceManager/NsDecl>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisNsDecl_t3658211563_m493179577_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<System.Xml.XmlNamespaceManager/NsScope>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisNsScope_t1749213747_m4082256451_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<TypewriterEffect/FadeEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisFadeEntry_t2858472101_m38306613_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UICamera/DepthEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisDepthEntry_t1145614469_m3297995539_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.AnimatorStateInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisAnimatorStateInfo_t323110318_m2309842735_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Bounds>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisBounds_t2711641849_m1923772604_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisColor_t4194546905_m559531866_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Color32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisColor32_t598853688_m532872057_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContactPoint_t243083348_m1729078231_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ContactPoint2D>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContactPoint2D_t4288432358_m3468458793_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.EventSystems.RaycastResult>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastResult_t3762661364_m4280408201_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Experimental.Director.Playable>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPlayable_t70832698_m900897457_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.KeyCode>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyCode_t3128317986_m2693367395_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Keyframe>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisKeyframe_t4079056114_m1590231541_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.ParticleSystem/Particle>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisParticle_t405273609_m468866711_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastHit_t4003175726_m3748584433_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.RaycastHit2D>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRaycastHit2D_t1374744384_m2888701123_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisRenderTargetIdentifier_t1322160672_m1492897305_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SendMouseEvents/HitInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisHitInfo_t3209134097_m1612748447_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGcAchievementData_t3481375915_m2637783128_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisGcScoreData_t2181296590_m4012696763_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Touch>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisTouch_t4210255029_m3237357878_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UI.InputField/ContentType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisContentType_t2662964855_m849439301_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UICharInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUICharInfo_t65807484_m1064242239_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UILineInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUILineInfo_t4113875482_m4191398621_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.UIVertex>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisUIVertex_t4244065212_m1222796223_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector2>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector2_t4282066565_m1068133190_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector3>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector3_t4282066566_m1069056711_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.Vector4>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVector4_t4282066567_m1069980232_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityEngine.VR.VRDeviceType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisVRDeviceType_t4084270792_m2329467157_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisQualitySettings_t2308822883_m908366001_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisPreset_t8910124_m2919667580_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisQualitySettings_t2868270621_m39772523_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::InternalArray__ICollection_Remove<WMG_Data_Source/WMG_VariableTypes>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288_MetadataUsageId; extern "C" bool Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Remove_TisWMG_VariableTypes_t4265297442_m273122288_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Boolean System.Array::TrueForAll<System.Object>(T[],System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral103668165; extern const uint32_t Array_TrueForAll_TisIl2CppObject_m1820975745_MetadataUsageId; extern "C" bool Array_TrueForAll_TisIl2CppObject_m1820975745_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_TrueForAll_TisIl2CppObject_m1820975745_MetadataUsageId); s_Il2CppMethodIntialized = true; } Il2CppObject * V_0 = NULL; ObjectU5BU5D_t1108656482* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Predicate_1_t3781873254 * L_2 = ___match1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t3573189601 * L_3 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_3, (String_t*)_stringLiteral103668165, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { ObjectU5BU5D_t1108656482* L_4 = ___array0; V_1 = (ObjectU5BU5D_t1108656482*)L_4; V_2 = (int32_t)0; goto IL_0045; } IL_002b: { ObjectU5BU5D_t1108656482* L_5 = V_1; int32_t L_6 = V_2; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Il2CppObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_0 = (Il2CppObject *)L_8; Predicate_1_t3781873254 * L_9 = ___match1; Il2CppObject * L_10 = V_0; NullCheck((Predicate_1_t3781873254 *)L_9); bool L_11 = (( bool (*) (Predicate_1_t3781873254 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3781873254 *)L_9, (Il2CppObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (L_11) { goto IL_0041; } } { return (bool)0; } IL_0041: { int32_t L_12 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_12+(int32_t)1)); } IL_0045: { int32_t L_13 = V_2; ObjectU5BU5D_t1108656482* L_14 = V_1; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_14)->max_length))))))) { goto IL_002b; } } { return (bool)1; } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::CanHandleEvent<System.Object>(UnityEngine.GameObject) extern Il2CppClass* ExecuteEvents_t2704060668_il2cpp_TypeInfo_var; extern const MethodInfo* ObjectPool_1_Get_m3366600709_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m3147836881_MethodInfo_var; extern const MethodInfo* ObjectPool_1_Release_m3828095081_MethodInfo_var; extern const uint32_t ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177_MetadataUsageId; extern "C" bool ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___go0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (ExecuteEvents_CanHandleEvent_TisIl2CppObject_m2627025177_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t2498711176 * V_0 = NULL; int32_t V_1 = 0; { IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t2704060668_il2cpp_TypeInfo_var); ObjectPool_1_t2298299301 * L_0 = ((ExecuteEvents_t2704060668_StaticFields*)ExecuteEvents_t2704060668_il2cpp_TypeInfo_var->static_fields)->get_s_HandlerListPool_17(); NullCheck((ObjectPool_1_t2298299301 *)L_0); List_1_t2498711176 * L_1 = ObjectPool_1_Get_m3366600709((ObjectPool_1_t2298299301 *)L_0, /*hidden argument*/ObjectPool_1_Get_m3366600709_MethodInfo_var); V_0 = (List_1_t2498711176 *)L_1; GameObject_t3674682005 * L_2 = ___go0; List_1_t2498711176 * L_3 = V_0; (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (GameObject_t3674682005 *)L_2, (Il2CppObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); List_1_t2498711176 * L_4 = V_0; NullCheck((List_1_t2498711176 *)L_4); int32_t L_5 = List_1_get_Count_m3147836881((List_1_t2498711176 *)L_4, /*hidden argument*/List_1_get_Count_m3147836881_MethodInfo_var); V_1 = (int32_t)L_5; ObjectPool_1_t2298299301 * L_6 = ((ExecuteEvents_t2704060668_StaticFields*)ExecuteEvents_t2704060668_il2cpp_TypeInfo_var->static_fields)->get_s_HandlerListPool_17(); List_1_t2498711176 * L_7 = V_0; NullCheck((ObjectPool_1_t2298299301 *)L_6); ObjectPool_1_Release_m3828095081((ObjectPool_1_t2298299301 *)L_6, (List_1_t2498711176 *)L_7, /*hidden argument*/ObjectPool_1_Release_m3828095081_MethodInfo_var); int32_t L_8 = V_1; return (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::Execute<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData,UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<T>) extern Il2CppClass* ExecuteEvents_t2704060668_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debug_t4195163081_il2cpp_TypeInfo_var; extern const MethodInfo* ObjectPool_1_Get_m3366600709_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m278721665_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m3147836881_MethodInfo_var; extern const MethodInfo* ObjectPool_1_Release_m3828095081_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral1079375338; extern const uint32_t ExecuteEvents_Execute_TisIl2CppObject_m1533897725_MetadataUsageId; extern "C" bool ExecuteEvents_Execute_TisIl2CppObject_m1533897725_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___target0, BaseEventData_t2054899105 * ___eventData1, EventFunction_1_t864200549 * ___functor2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (ExecuteEvents_Execute_TisIl2CppObject_m1533897725_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t2498711176 * V_0 = NULL; int32_t V_1 = 0; Il2CppObject * V_2 = NULL; Exception_t3991598821 * V_3 = NULL; Il2CppObject * V_4 = NULL; Exception_t3991598821 * V_5 = NULL; int32_t V_6 = 0; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t2704060668_il2cpp_TypeInfo_var); ObjectPool_1_t2298299301 * L_0 = ((ExecuteEvents_t2704060668_StaticFields*)ExecuteEvents_t2704060668_il2cpp_TypeInfo_var->static_fields)->get_s_HandlerListPool_17(); NullCheck((ObjectPool_1_t2298299301 *)L_0); List_1_t2498711176 * L_1 = ObjectPool_1_Get_m3366600709((ObjectPool_1_t2298299301 *)L_0, /*hidden argument*/ObjectPool_1_Get_m3366600709_MethodInfo_var); V_0 = (List_1_t2498711176 *)L_1; GameObject_t3674682005 * L_2 = ___target0; List_1_t2498711176 * L_3 = V_0; (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (GameObject_t3674682005 *)L_2, (Il2CppObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (int32_t)0; goto IL_008e; } IL_0019: try { // begin try (depth: 1) List_1_t2498711176 * L_4 = V_0; int32_t L_5 = V_1; NullCheck((List_1_t2498711176 *)L_4); Il2CppObject * L_6 = List_1_get_Item_m278721665((List_1_t2498711176 *)L_4, (int32_t)L_5, /*hidden argument*/List_1_get_Item_m278721665_MethodInfo_var); V_2 = (Il2CppObject *)((Il2CppObject *)Castclass(L_6, IL2CPP_RGCTX_DATA(method->rgctx_data, 1))); goto IL_006f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_002b; throw e; } CATCH_002b: { // begin catch(System.Exception) { V_3 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); List_1_t2498711176 * L_7 = V_0; int32_t L_8 = V_1; NullCheck((List_1_t2498711176 *)L_7); Il2CppObject * L_9 = List_1_get_Item_m278721665((List_1_t2498711176 *)L_7, (int32_t)L_8, /*hidden argument*/List_1_get_Item_m278721665_MethodInfo_var); V_4 = (Il2CppObject *)L_9; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_10 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 2)), /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_10); Il2CppObject * L_12 = V_4; NullCheck((Il2CppObject *)L_12); Type_t * L_13 = Object_GetType_m2022236990((Il2CppObject *)L_12, /*hidden argument*/NULL); NullCheck((MemberInfo_t *)L_13); String_t* L_14 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_13); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_15 = String_Format_m2398979370(NULL /*static, unused*/, (String_t*)_stringLiteral1079375338, (Il2CppObject *)L_11, (Il2CppObject *)L_14, /*hidden argument*/NULL); Exception_t3991598821 * L_16 = V_3; Exception_t3991598821 * L_17 = (Exception_t3991598821 *)il2cpp_codegen_object_new(Exception_t3991598821_il2cpp_TypeInfo_var); Exception__ctor_m1328171222(L_17, (String_t*)L_15, (Exception_t3991598821 *)L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_LogException_m248970745(NULL /*static, unused*/, (Exception_t3991598821 *)L_17, /*hidden argument*/NULL); goto IL_008a; } IL_006a: { ; // IL_006a: leave IL_006f } } // end catch (depth: 1) IL_006f: try { // begin try (depth: 1) EventFunction_1_t864200549 * L_18 = ___functor2; Il2CppObject * L_19 = V_2; BaseEventData_t2054899105 * L_20 = ___eventData1; NullCheck((EventFunction_1_t864200549 *)L_18); (( void (*) (EventFunction_1_t864200549 *, Il2CppObject *, BaseEventData_t2054899105 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((EventFunction_1_t864200549 *)L_18, (Il2CppObject *)L_19, (BaseEventData_t2054899105 *)L_20, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); goto IL_008a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_007c; throw e; } CATCH_007c: { // begin catch(System.Exception) V_5 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); Exception_t3991598821 * L_21 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_LogException_m248970745(NULL /*static, unused*/, (Exception_t3991598821 *)L_21, /*hidden argument*/NULL); goto IL_008a; } // end catch (depth: 1) IL_008a: { int32_t L_22 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_22+(int32_t)1)); } IL_008e: { int32_t L_23 = V_1; List_1_t2498711176 * L_24 = V_0; NullCheck((List_1_t2498711176 *)L_24); int32_t L_25 = List_1_get_Count_m3147836881((List_1_t2498711176 *)L_24, /*hidden argument*/List_1_get_Count_m3147836881_MethodInfo_var); if ((((int32_t)L_23) < ((int32_t)L_25))) { goto IL_0019; } } { List_1_t2498711176 * L_26 = V_0; NullCheck((List_1_t2498711176 *)L_26); int32_t L_27 = List_1_get_Count_m3147836881((List_1_t2498711176 *)L_26, /*hidden argument*/List_1_get_Count_m3147836881_MethodInfo_var); V_6 = (int32_t)L_27; IL2CPP_RUNTIME_CLASS_INIT(ExecuteEvents_t2704060668_il2cpp_TypeInfo_var); ObjectPool_1_t2298299301 * L_28 = ((ExecuteEvents_t2704060668_StaticFields*)ExecuteEvents_t2704060668_il2cpp_TypeInfo_var->static_fields)->get_s_HandlerListPool_17(); List_1_t2498711176 * L_29 = V_0; NullCheck((ObjectPool_1_t2298299301 *)L_28); ObjectPool_1_Release_m3828095081((ObjectPool_1_t2298299301 *)L_28, (List_1_t2498711176 *)L_29, /*hidden argument*/ObjectPool_1_Release_m3828095081_MethodInfo_var); int32_t L_30 = V_6; return (bool)((((int32_t)L_30) > ((int32_t)0))? 1 : 0); } } // System.Boolean UnityEngine.EventSystems.ExecuteEvents::ShouldSendToComponent<System.Object>(UnityEngine.Component) extern Il2CppClass* Behaviour_t200106419_il2cpp_TypeInfo_var; extern Il2CppClass* Object_t3071478659_il2cpp_TypeInfo_var; extern const uint32_t ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620_MetadataUsageId; extern "C" bool ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620_gshared (Il2CppObject * __this /* static, unused */, Component_t3501516275 * ___component0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (ExecuteEvents_ShouldSendToComponent_TisIl2CppObject_m2647702620_MetadataUsageId); s_Il2CppMethodIntialized = true; } bool V_0 = false; Behaviour_t200106419 * V_1 = NULL; { Component_t3501516275 * L_0 = ___component0; V_0 = (bool)((!(((Il2CppObject*)(Il2CppObject *)((Il2CppObject *)IsInst(L_0, IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))) <= ((Il2CppObject*)(Il2CppObject *)NULL)))? 1 : 0); bool L_1 = V_0; if (L_1) { goto IL_0012; } } { return (bool)0; } IL_0012: { Component_t3501516275 * L_2 = ___component0; V_1 = (Behaviour_t200106419 *)((Behaviour_t200106419 *)IsInst(L_2, Behaviour_t200106419_il2cpp_TypeInfo_var)); Behaviour_t200106419 * L_3 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Object_t3071478659_il2cpp_TypeInfo_var); bool L_4 = Object_op_Inequality_m1296218211(NULL /*static, unused*/, (Object_t3071478659 *)L_3, (Object_t3071478659 *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_002c; } } { Behaviour_t200106419 * L_5 = V_1; NullCheck((Behaviour_t200106419 *)L_5); bool L_6 = Behaviour_get_isActiveAndEnabled_m210167461((Behaviour_t200106419 *)L_5, /*hidden argument*/NULL); return L_6; } IL_002c: { return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetClass<System.Object>(T&,T) extern "C" bool SetPropertyUtility_SetClass_TisIl2CppObject_m3004757678_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject ** ___currentValue0, Il2CppObject * ___newValue1, const MethodInfo* method) { { Il2CppObject ** L_0 = ___currentValue0; if ((*(Il2CppObject **)L_0)) { goto IL_001b; } } { Il2CppObject * L_1 = ___newValue1; if (!L_1) { goto IL_0042; } } IL_001b: { Il2CppObject ** L_2 = ___currentValue0; if (!(*(Il2CppObject **)L_2)) { goto IL_0044; } } { Il2CppObject ** L_3 = ___currentValue0; Il2CppObject * L_4 = ___newValue1; NullCheck((Il2CppObject *)(*L_3)); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)(*L_3), (Il2CppObject *)L_4); if (!L_5) { goto IL_0044; } } IL_0042: { return (bool)0; } IL_0044: { Il2CppObject ** L_6 = ___currentValue0; Il2CppObject * L_7 = ___newValue1; (*(Il2CppObject **)L_6) = L_7; Il2CppCodeGenWriteBarrier((Il2CppObject **)L_6, L_7); return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<System.Object>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisIl2CppObject_m685297595_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject ** ___currentValue0, Il2CppObject * ___newValue1, const MethodInfo* method) { { Il2CppObject ** L_0 = ___currentValue0; Il2CppObject * L_1 = ___newValue1; NullCheck((Il2CppObject*)(*L_0)); bool L_2 = InterfaceFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.IEquatable`1<System.Object>::Equals(!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (Il2CppObject*)(*L_0), (Il2CppObject *)L_1); if (!L_2) { goto IL_0014; } } { return (bool)0; } IL_0014: { Il2CppObject ** L_3 = ___currentValue0; Il2CppObject * L_4 = ___newValue1; (*(Il2CppObject **)L_3) = L_4; Il2CppCodeGenWriteBarrier((Il2CppObject **)L_3, L_4); return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.ColorBlock>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisColorBlock_t508458230_m3999144268_gshared (Il2CppObject * __this /* static, unused */, ColorBlock_t508458230 * ___currentValue0, ColorBlock_t508458230 ___newValue1, const MethodInfo* method) { { ColorBlock_t508458230 * L_0 = ___currentValue0; ColorBlock_t508458230 L_1 = ___newValue1; bool L_2 = ColorBlock_Equals_m3761062129((ColorBlock_t508458230 *)L_0, (ColorBlock_t508458230 )L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0014; } } { return (bool)0; } IL_0014: { ColorBlock_t508458230 * L_3 = ___currentValue0; ColorBlock_t508458230 L_4 = ___newValue1; (*(ColorBlock_t508458230 *)L_3) = L_4; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.Navigation>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisNavigation_t1108456480_m3717372898_gshared (Il2CppObject * __this /* static, unused */, Navigation_t1108456480 * ___currentValue0, Navigation_t1108456480 ___newValue1, const MethodInfo* method) { { Navigation_t1108456480 * L_0 = ___currentValue0; Navigation_t1108456480 L_1 = ___newValue1; bool L_2 = Navigation_Equals_m3278735261((Navigation_t1108456480 *)L_0, (Navigation_t1108456480 )L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0014; } } { return (bool)0; } IL_0014: { Navigation_t1108456480 * L_3 = ___currentValue0; Navigation_t1108456480 L_4 = ___newValue1; (*(Navigation_t1108456480 *)L_3) = L_4; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetEquatableStruct<UnityEngine.UI.SpriteState>(T&,T) extern "C" bool SetPropertyUtility_SetEquatableStruct_TisSpriteState_t2895308594_m1850844776_gshared (Il2CppObject * __this /* static, unused */, SpriteState_t2895308594 * ___currentValue0, SpriteState_t2895308594 ___newValue1, const MethodInfo* method) { { SpriteState_t2895308594 * L_0 = ___currentValue0; SpriteState_t2895308594 L_1 = ___newValue1; bool L_2 = SpriteState_Equals_m895455353((SpriteState_t2895308594 *)L_0, (SpriteState_t2895308594 )L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0014; } } { return (bool)0; } IL_0014: { SpriteState_t2895308594 * L_3 = ___currentValue0; SpriteState_t2895308594 L_4 = ___newValue1; (*(SpriteState_t2895308594 *)L_3) = L_4; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Boolean>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisBoolean_t476798718_m1242031768_gshared (Il2CppObject * __this /* static, unused */, bool* ___currentValue0, bool ___newValue1, const MethodInfo* method) { { bool* L_0 = ___currentValue0; bool L_1 = ___newValue1; bool L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Boolean_Equals_m1178456600((bool*)L_0, (Il2CppObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { bool* L_5 = ___currentValue0; bool L_6 = ___newValue1; (*(bool*)L_5) = L_6; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Char>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisChar_t2862622538_m1002094612_gshared (Il2CppObject * __this /* static, unused */, Il2CppChar* ___currentValue0, Il2CppChar ___newValue1, const MethodInfo* method) { { Il2CppChar* L_0 = ___currentValue0; Il2CppChar L_1 = ___newValue1; Il2CppChar L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Char_Equals_m158269074((Il2CppChar*)L_0, (Il2CppObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { Il2CppChar* L_5 = ___currentValue0; Il2CppChar L_6 = ___newValue1; (*(Il2CppChar*)L_5) = L_6; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Int32>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisInt32_t1153838500_m3219417906_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Int32_Equals_m4061110258((int32_t*)L_0, (Il2CppObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_5 = ___currentValue0; int32_t L_6 = ___newValue1; (*(int32_t*)L_5) = L_6; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<System.Single>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisSingle_t4291918972_m1643007650_gshared (Il2CppObject * __this /* static, unused */, float* ___currentValue0, float ___newValue1, const MethodInfo* method) { { float* L_0 = ___currentValue0; float L_1 = ___newValue1; float L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); bool L_4 = Single_Equals_m2650902624((float*)L_0, (Il2CppObject *)L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_0019; } } { return (bool)0; } IL_0019: { float* L_5 = ___currentValue0; float L_6 = ___newValue1; (*(float*)L_5) = L_6; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.TouchScreenKeyboardType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisTouchScreenKeyboardType_t2604324130_m1392536308_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.AspectRatioFitter/AspectMode>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisAspectMode_t2149445162_m800854655_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.ContentSizeFitter/FitMode>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisFitMode_t909765868_m3401974325_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/FillMethod>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisFillMethod_t2255824731_m1922094766_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Image/Type>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisType_t3063828369_m3981732792_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/CharacterValidation>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisCharacterValidation_t737650598_m3080620675_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/ContentType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisContentType_t2662964855_m3459087122_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/InputType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisInputType_t1602890312_m2495306657_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.InputField/LineType>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisLineType_t2016592042_m1761448119_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Scrollbar/Direction>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisDirection_t522766867_m1391770542_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Selectable/Transition>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisTransition_t1922345195_m697175766_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean UnityEngine.UI.SetPropertyUtility::SetStruct<UnityEngine.UI.Slider/Direction>(T&,T) extern "C" bool SetPropertyUtility_SetStruct_TisDirection_t94975348_m2722180853_gshared (Il2CppObject * __this /* static, unused */, int32_t* ___currentValue0, int32_t ___newValue1, const MethodInfo* method) { { int32_t* L_0 = ___currentValue0; int32_t L_1 = ___newValue1; int32_t L_2 = L_1; Il2CppObject * L_3 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_2); Il2CppObject * L_4 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), L_0); NullCheck((ValueType_t1744280289 *)L_4); bool L_5 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.ValueType::Equals(System.Object) */, (ValueType_t1744280289 *)L_4, (Il2CppObject *)L_3); if (!L_5) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t* L_6 = ___currentValue0; int32_t L_7 = ___newValue1; (*(int32_t*)L_6) = L_7; return (bool)1; } } // System.Boolean WMG_Data_Source::removeDataProviderFromList<System.Object>(T) extern const MethodInfo* List_1_Remove_m2747911208_MethodInfo_var; extern const uint32_t WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366_MetadataUsageId; extern "C" bool WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366_gshared (WMG_Data_Source_t1473700674 * __this, Il2CppObject * ___dataProvider0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (WMG_Data_Source_removeDataProviderFromList_TisIl2CppObject_m1579048366_MetadataUsageId); s_Il2CppMethodIntialized = true; } { List_1_t1244034627 * L_0 = (List_1_t1244034627 *)__this->get_dataProviders_3(); Il2CppObject * L_1 = ___dataProvider0; NullCheck((List_1_t1244034627 *)L_0); bool L_2 = List_1_Remove_m2747911208((List_1_t1244034627 *)L_0, (Il2CppObject *)L_1, /*hidden argument*/List_1_Remove_m2747911208_MethodInfo_var); return L_2; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::CreateDistinctIterator<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEqualityComparer`1<TSource>) extern "C" Il2CppObject* Enumerable_CreateDistinctIterator_TisIl2CppObject_m3793020512_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Il2CppObject* ___comparer1, const MethodInfo* method) { U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * V_0 = NULL; { U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_0 = (U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 *)L_0; U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_1 = V_0; Il2CppObject* L_2 = ___comparer1; NullCheck(L_1); L_1->set_comparer_0(L_2); U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_3 = V_0; Il2CppObject* L_4 = ___source0; NullCheck(L_3); L_3->set_source_2(L_4); U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_5 = V_0; Il2CppObject* L_6 = ___comparer1; NullCheck(L_5); L_5->set_U3CU24U3Ecomparer_7(L_6); U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_7 = V_0; Il2CppObject* L_8 = ___source0; NullCheck(L_7); L_7->set_U3CU24U3Esource_8(L_8); U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_9 = V_0; U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 * L_10 = (U3CCreateDistinctIteratorU3Ec__Iterator3_1_t2807642535 *)L_9; NullCheck(L_10); L_10->set_U24PC_5(((int32_t)-2)); return L_10; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::CreateWhereIterator<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" Il2CppObject* Enumerable_CreateWhereIterator_TisIl2CppObject_m2204352327_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t785513668 * ___predicate1, const MethodInfo* method) { U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * V_0 = NULL; { U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_0 = (U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 *)L_0; U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_1 = V_0; Il2CppObject* L_2 = ___source0; NullCheck(L_1); L_1->set_source_0(L_2); U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_3 = V_0; Func_2_t785513668 * L_4 = ___predicate1; NullCheck(L_3); L_3->set_predicate_3(L_4); U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_5 = V_0; Il2CppObject* L_6 = ___source0; NullCheck(L_5); L_5->set_U3CU24U3Esource_6(L_6); U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_7 = V_0; Func_2_t785513668 * L_8 = ___predicate1; NullCheck(L_7); L_7->set_U3CU24U3Epredicate_7(L_8); U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_9 = V_0; U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 * L_10 = (U3CCreateWhereIteratorU3Ec__Iterator1D_1_t3981097764 *)L_9; NullCheck(L_10); L_10->set_U24PC_4(((int32_t)-2)); return L_10; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Distinct<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" Il2CppObject* Enumerable_Distinct_TisIl2CppObject_m204074613_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Il2CppObject* L_1 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_1; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Distinct<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Collections.Generic.IEqualityComparer`1<TSource>) extern "C" Il2CppObject* Enumerable_Distinct_TisIl2CppObject_m4180032182_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Il2CppObject* ___comparer1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Check_Source_m228347543(NULL /*static, unused*/, (Il2CppObject *)L_0, /*hidden argument*/NULL); Il2CppObject* L_1 = ___comparer1; if (L_1) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3278653252 * L_2 = (( EqualityComparer_1_t3278653252 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ___comparer1 = (Il2CppObject*)L_2; } IL_0013: { Il2CppObject* L_3 = ___source0; Il2CppObject* L_4 = ___comparer1; Il2CppObject* L_5 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_3, (Il2CppObject*)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); return L_5; } } // System.Collections.Generic.IEnumerable`1<TSource> System.Linq.Enumerable::Where<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.Boolean>) extern "C" Il2CppObject* Enumerable_Where_TisIl2CppObject_m3480373697_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t785513668 * ___predicate1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t785513668 * L_1 = ___predicate1; Check_SourceAndPredicate_m2252398949(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t785513668 * L_3 = ___predicate1; Il2CppObject* L_4 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t785513668 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_2, (Func_2_t785513668 *)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_4; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/Contacts>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContacts_t352143704_m2487862572_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3429453676 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m483242205(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3429453676 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/detailsProperty>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisdetailsProperty_t1057943986_m3959762792_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4135253958 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4041156675(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4135253958 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/DeviceDetailedInformation>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t4234054081_m2452333369_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3016396757 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4281017234(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3016396757 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<AllSingleton/surveyProperty>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TissurveyProperty_t884569204_m2542193872_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3961879176 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1968857977(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3961879176 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceDetailedInformation_t3668321760_m1422211194_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2450664436 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m783076849(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2450664436 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/DeviceProperties>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDeviceProperties_t2492701999_m52045621_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1275044675 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m456380404(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1275044675 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/peopleOrderPatrol>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TispeopleOrderPatrol_t4292956421_m3008285237_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3075299097 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m891086166(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3075299097 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/peoplePatrol>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TispeoplePatrol_t2522972577_m1130160131_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1305315253 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m513036262(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1305315253 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<ConsoleApplication.LocalProcessing/StaffInformatino>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisStaffInformatino_t2939901716_m3885229872_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1722244392 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3837321241(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1722244392 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<DG.Tweening.Plugins.Core.PathCore.ControlPoint>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisControlPoint_t3116362155_m349358386_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1898704831 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1530523641(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1898704831 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<HighlightingSystem.Highlighter/Mode>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMode_t2711727618_m747023234_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1494070294 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2205918343(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1494070294 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<HighlightingSystem.HighlighterRenderer/Data>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisData_t3265512710_m807284990_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2047855386 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m955885195(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2047855386 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.ArrayMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisArrayMetadata_t4058342910_m4172345867_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2840685586 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m265863582(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2840685586 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.ObjectMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisObjectMetadata_t2009294498_m3591895037_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t791637174 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2761970254(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t791637174 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<LitJson.PropertyMetadata>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPropertyMetadata_t4066634616_m107966631_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2848977292 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1490796836(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2848977292 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Globalization.Unicode.CodePointIndexer/TableRange>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTableRange_t3372848153_m52511713_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2155190829 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2510835690(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2155190829 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisClientCertificateType_t3167042548_m4216830833_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1949385224 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4155127258(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1949385224 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Security.Uri/UriScheme>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t3372318283_m1119346585_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2154660959 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m833446416(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2154660959 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<Mono.Xml2.XmlTextReader/TagName>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTagName_t2016006645_m1267886383_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t798349321 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3894762810(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t798349321 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<PresetSelector/Preset>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t2393284144_m1955733844_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1175626820 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3789116341(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1175626820 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.ArraySegment`1<System.Byte>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisArraySegment_1_t2188033608_m193853649_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t970376284 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1191579514(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t970376284 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Boolean>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBoolean_t476798718_m2364889489_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3554108690 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3904876858(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3554108690 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Byte>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisByte_t2862609660_m446732541_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1644952336 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2342462508(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1644952336 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Char>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisChar_t2862622538_m830381039_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1644965214 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3601500154(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1644965214 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.DictionaryEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDictionaryEntry_t1751606614_m2267892694_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t533949290 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m263261269(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t533949290 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.HashSet`1/Link<System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2122599155_m2846012081_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t904941831 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2684410586(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t904941831 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1049882445_m3020603993_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4127192417 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2135273650(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4127192417 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4066860316_m814975926_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2849202992 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m664150035(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2849202992 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3980314737_m1932401055_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2762657413 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1801626954(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2762657413 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1832195516_m1811490520_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t614538192 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2230431891(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t614538192 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t4078114400_m1875669440_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2860457076 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m459777801(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2860457076 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1840487222_m628892438_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t622829898 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3538978355(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t622829898 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t2545618620_m3126136748_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1327961296 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2662086813(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1327961296 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3222658402_m1161245650_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2005001078 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2624907895(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2005001078 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t1944668977_m3304409437_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t727011653 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2957909742(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t727011653 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyValuePair_2_t3310123289_m2221171017_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2092465965 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2790873440(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2092465965 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Generic.Link>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLink_t2063667470_m2650343963_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t846010146 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1865178318(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t846010146 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.Hashtable/Slot>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2260530181_m3412983775_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1042872857 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1735201994(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1042872857 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Collections.SortedList/Slot>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSlot_t2072023290_m2167655136_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t854365966 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m831950091(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t854365966 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.DateTime>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDateTime_t4283661327_m2013907594_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3066004003 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3756518911(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3066004003 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Decimal>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDecimal_t1954350631_m994112968_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t736693307 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2868618147(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t736693307 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Double>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDouble_t3868226565_m1091003412_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2650569241 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m923076597(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2650569241 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int16>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt16_t1153838442_m3352698469_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4231148414 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1585494054(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4231148414 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt32_t1153838500_m3354426347_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4231148472 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m767389920(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4231148472 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Int64>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisInt64_t1153838595_m3357256492_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4231148567 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3055898623(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4231148567 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.IntPtr>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisIntPtr_t_m1800769702_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2792744647 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m152804899(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2792744647 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Object>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisIl2CppObject_m407559654_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2953159047 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2616641763(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2953159047 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeNamedArgument>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeNamedArgument_t3059612989_m1075760203_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1841955665 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2025782336(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1841955665 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.CustomAttributeTypedArgument>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisCustomAttributeTypedArgument_t3301293422_m2612351610_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2083636098 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m374673841(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2083636098 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelData_t3207823784_m2363194802_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1990166460 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m238137273(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1990166460 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILGenerator/LabelFixup>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisLabelFixup_t660379442_m2374808082_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3737689414 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4080636215(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3737689414 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.Emit.ILTokenInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisILTokenInfo_t1354080954_m1935420397_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t136423630 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2480959198(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t136423630 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Reflection.ParameterModifier>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParameterModifier_t741930026_m1795030376_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3819239998 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2078231777(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3819239998 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceReader/ResourceCacheItem>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisResourceCacheItem_t2113902833_m4247583091_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t896245509 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2772733110(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t896245509 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Resources.ResourceReader/ResourceInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisResourceInfo_t4013605874_m2845220648_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2795948550 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2865872515(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2795948550 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Runtime.Serialization.Formatters.Binary.TypeTag>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTypeTag_t2420703430_m2594172501_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1203046106 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2400880886(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1203046106 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.SByte>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSByte_t1161769777_m3411898174_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4239079749 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1925586605(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4239079749 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Security.Cryptography.X509Certificates.X509ChainStatus>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisX509ChainStatus_t766901931_m2152964560_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3844211903 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3415441081(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3844211903 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Single>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisSingle_t4291918972_m402617405_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3074261648 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2203995436(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3074261648 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Text.RegularExpressions.Mark>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisMark_t3811539797_m1321418026_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2593882473 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m207626719(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2593882473 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.TimeSpan>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTimeSpan_t413522987_m824714478_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3490832959 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m111087899(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3490832959 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt16>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt16_t24667923_m1463610950_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3101977895 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1037769859(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3101977895 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt32_t24667981_m1465338828_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3101977953 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m219665725(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3101977953 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.UInt64>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUInt64_t24668076_m1468168973_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3101978048 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2508174428(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3101978048 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Uri/UriScheme>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUriScheme_t1290668975_m1636451147_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t73011651 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2879257728(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t73011651 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNamespaceManager/NsDecl>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNsDecl_t3658211563_m1153201849_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2440554239 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2145162288(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2440554239 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<System.Xml.XmlNamespaceManager/NsScope>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisNsScope_t1749213747_m335289735_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t531556423 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3201546884(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t531556423 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<TypewriterEffect/FadeEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisFadeEntry_t2858472101_m1256009813_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1640814777 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1560867446(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1640814777 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UICamera/DepthEntry>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisDepthEntry_t1145614469_m2848759839_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t4222924441 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1378027210(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t4222924441 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.AnimatorStateInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisAnimatorStateInfo_t323110318_m1258401667_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3400420290 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4100780582(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3400420290 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Bounds>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisBounds_t2711641849_m1589625326_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1493984525 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m4055748925(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1493984525 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor_t4194546905_m1537715192_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2976889581 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1839379985(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2976889581 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Color32>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisColor32_t598853688_m265710329_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3676163660 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2826013104(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3676163660 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint_t243083348_m2237941363_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3320393320 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2847645656(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3320393320 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ContactPoint2D>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContactPoint2D_t4288432358_m3167775201_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3070775034 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2104644970(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3070775034 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.EventSystems.RaycastResult>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastResult_t3762661364_m2558439041_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2545004040 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3551691594(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2545004040 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Experimental.Director.Playable>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPlayable_t70832698_m119578969_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3148142670 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1529633010(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3148142670 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.KeyCode>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyCode_t3128317986_m335403727_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1910660662 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2586242586(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1910660662 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Keyframe>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisKeyframe_t4079056114_m966627989_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2861398790 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2728019190(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2861398790 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.ParticleSystem/Particle>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisParticle_t405273609_m62442523_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3482583581 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3582894926(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3482583581 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit_t4003175726_m2333029913_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2785518402 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3454518962(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2785518402 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.RaycastHit2D>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRaycastHit2D_t1374744384_m58591239_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t157087060 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1194339780(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t157087060 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Rendering.RenderTargetIdentifier>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisRenderTargetIdentifier_t1322160672_m859327985_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t104503348 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m827760922(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t104503348 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SendMouseEvents/HitInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisHitInfo_t3209134097_m1346267923_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1991476773 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2952786262(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1991476773 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcAchievementData_t3481375915_m3799860690_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2263718591 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3202091545(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2263718591 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisGcScoreData_t2181296590_m2043159055_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t963639266 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m909397884(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t963639266 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Touch>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisTouch_t4210255029_m1347002012_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2992597705 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m733272301(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2992597705 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UI.InputField/ContentType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisContentType_t2662964855_m4212735405_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1445307531 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m101605564(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1445307531 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UICharInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUICharInfo_t65807484_m4047553547_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3143117456 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3391471488(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3143117456 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UILineInfo>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUILineInfo_t4113875482_m1654577581_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2896218158 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1258762910(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2896218158 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.UIVertex>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisUIVertex_t4244065212_m3310079883_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3026407888 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1877903424(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3026407888 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector2>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector2_t4282066565_m3331018124_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3064409241 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3463151677(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3064409241 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector3>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector3_t4282066566_m3331047915_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3064409242 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m412948862(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3064409242 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.Vector4>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVector4_t4282066567_m3331077706_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3064409243 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1657713343(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3064409243 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityEngine.VR.VRDeviceType>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisVRDeviceType_t4084270792_m4059215325_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t2866613468 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m2221129036(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t2866613468 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2308822883_m2920195009_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1091165559 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m3039630760(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1091165559 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.FXAA/Preset>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisPreset_t8910124_m1427727918_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3086220096 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m774579517(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3086220096 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisQualitySettings_t2868270621_m2104559559_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t1650613297 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m688137954(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t1650613297 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.IEnumerator`1<T> System.Array::InternalArray__IEnumerable_GetEnumerator<WMG_Data_Source/WMG_VariableTypes>() extern "C" Il2CppObject* Array_InternalArray__IEnumerable_GetEnumerator_TisWMG_VariableTypes_t4265297442_m1619238050_gshared (Il2CppArray * __this, const MethodInfo* method) { { InternalEnumerator_1_t3047640118 L_0; memset(&L_0, 0, sizeof(L_0)); InternalEnumerator_1__ctor_m1461732135(&L_0, (Il2CppArray *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); InternalEnumerator_1_t3047640118 L_1 = L_0; Il2CppObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_1); return (Il2CppObject*)L_2; } } // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<System.Object>() extern Il2CppClass* Enumerator_t1263707397_il2cpp_TypeInfo_var; extern Il2CppClass* IDisposable_t1423340799_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debug_t4195163081_il2cpp_TypeInfo_var; extern const MethodInfo* List_1_GetEnumerator_m2326457258_MethodInfo_var; extern const MethodInfo* Enumerator_get_Current_m4198990746_MethodInfo_var; extern const MethodInfo* Enumerator_MoveNext_m844464217_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m3285151025_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m1082760512_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m1988752856_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m935595982_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral803400064; extern Il2CppCodeGenString* _stringLiteral3745723463; extern const uint32_t WMG_Data_Source_getData_TisIl2CppObject_m2978252902_MetadataUsageId; extern "C" List_1_t1244034627 * WMG_Data_Source_getData_TisIl2CppObject_m2978252902_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (WMG_Data_Source_getData_TisIl2CppObject_m2978252902_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t1244034627 * V_0 = NULL; Il2CppObject * V_1 = NULL; Enumerator_t1263707397 V_2; memset(&V_2, 0, sizeof(V_2)); List_1_t1244034627 * V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; int32_t V_6 = 0; Exception_t3991598821 * V_7 = NULL; List_1_t1244034627 * V_8 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { int32_t L_0 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_006f; } } { List_1_t1244034627 * L_1 = (List_1_t1244034627 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1244034627 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (List_1_t1244034627 *)L_1; List_1_t1244034627 * L_2 = (List_1_t1244034627 *)__this->get_dataProviders_3(); NullCheck((List_1_t1244034627 *)L_2); Enumerator_t1263707397 L_3 = List_1_GetEnumerator_m2326457258((List_1_t1244034627 *)L_2, /*hidden argument*/List_1_GetEnumerator_m2326457258_MethodInfo_var); V_2 = (Enumerator_t1263707397 )L_3; } IL_001e: try { // begin try (depth: 1) { goto IL_0050; } IL_0023: { Il2CppObject * L_4 = Enumerator_get_Current_m4198990746((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m4198990746_MethodInfo_var); V_1 = (Il2CppObject *)L_4; List_1_t1244034627 * L_5 = V_0; Il2CppObject * L_6 = V_1; String_t* L_7 = (String_t*)__this->get_variableName_8(); int32_t L_8 = (int32_t)__this->get_variableType_6(); String_t* L_9 = (String_t*)__this->get_varName1_10(); String_t* L_10 = (String_t*)__this->get_varName2_12(); NullCheck((WMG_Data_Source_t1473700674 *)__this); Il2CppObject * L_11 = (( Il2CppObject * (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_6, (String_t*)L_7, (int32_t)L_8, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1244034627 *)L_5); (( void (*) (List_1_t1244034627 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1244034627 *)L_5, (Il2CppObject *)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); } IL_0050: { bool L_12 = Enumerator_MoveNext_m844464217((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m844464217_MethodInfo_var); if (L_12) { goto IL_0023; } } IL_005c: { IL2CPP_LEAVE(0x6D, FINALLY_0061); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t3991598821 *)e.ex; goto FINALLY_0061; } FINALLY_0061: { // begin finally (depth: 1) Enumerator_t1263707397 L_13 = V_2; Enumerator_t1263707397 L_14 = L_13; Il2CppObject * L_15 = Box(Enumerator_t1263707397_il2cpp_TypeInfo_var, &L_14); NullCheck((Il2CppObject *)L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1423340799_il2cpp_TypeInfo_var, (Il2CppObject *)L_15); IL2CPP_END_FINALLY(97) } // end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_JUMP_TBL(0x6D, IL_006d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t3991598821 *) } IL_006d: { List_1_t1244034627 * L_16 = V_0; return L_16; } IL_006f: { int32_t L_17 = (int32_t)__this->get_dataSourceType_2(); if (L_17) { goto IL_011d; } } { List_1_t1244034627 * L_18 = (List_1_t1244034627 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1244034627 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_3 = (List_1_t1244034627 *)L_18; V_4 = (int32_t)0; goto IL_0109; } IL_0088: { List_1_t1375417109 * L_19 = (List_1_t1375417109 *)__this->get_variableNames_7(); int32_t L_20 = V_4; NullCheck((List_1_t1375417109 *)L_19); String_t* L_21 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_19, (int32_t)L_20, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); V_5 = (String_t*)L_21; V_6 = (int32_t)0; int32_t L_22 = V_4; List_1_t1338515698 * L_23 = (List_1_t1338515698 *)__this->get_variableTypes_5(); NullCheck((List_1_t1338515698 *)L_23); int32_t L_24 = List_1_get_Count_m1082760512((List_1_t1338515698 *)L_23, /*hidden argument*/List_1_get_Count_m1082760512_MethodInfo_var); if ((((int32_t)L_22) >= ((int32_t)L_24))) { goto IL_00bb; } } { List_1_t1338515698 * L_25 = (List_1_t1338515698 *)__this->get_variableTypes_5(); int32_t L_26 = V_4; NullCheck((List_1_t1338515698 *)L_25); int32_t L_27 = List_1_get_Item_m1988752856((List_1_t1338515698 *)L_25, (int32_t)L_26, /*hidden argument*/List_1_get_Item_m1988752856_MethodInfo_var); V_6 = (int32_t)L_27; } IL_00bb: { int32_t L_28 = V_4; List_1_t1375417109 * L_29 = (List_1_t1375417109 *)__this->get_varNames1_9(); NullCheck((List_1_t1375417109 *)L_29); int32_t L_30 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_29, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_28) < ((int32_t)L_30))) { goto IL_00d3; } } { NullCheck((WMG_Data_Source_t1473700674 *)__this); WMG_Data_Source_parseStrings_m1769574442((WMG_Data_Source_t1473700674 *)__this, /*hidden argument*/NULL); } IL_00d3: { List_1_t1244034627 * L_31 = V_3; Il2CppObject * L_32 = (Il2CppObject *)__this->get_dataProvider_4(); String_t* L_33 = V_5; int32_t L_34 = V_6; List_1_t1375417109 * L_35 = (List_1_t1375417109 *)__this->get_varNames1_9(); int32_t L_36 = V_4; NullCheck((List_1_t1375417109 *)L_35); String_t* L_37 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_35, (int32_t)L_36, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); List_1_t1375417109 * L_38 = (List_1_t1375417109 *)__this->get_varNames2_11(); int32_t L_39 = V_4; NullCheck((List_1_t1375417109 *)L_38); String_t* L_40 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_38, (int32_t)L_39, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); NullCheck((WMG_Data_Source_t1473700674 *)__this); Il2CppObject * L_41 = (( Il2CppObject * (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_32, (String_t*)L_33, (int32_t)L_34, (String_t*)L_37, (String_t*)L_40, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1244034627 *)L_31); (( void (*) (List_1_t1244034627 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1244034627 *)L_31, (Il2CppObject *)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)((int32_t)L_42+(int32_t)1)); } IL_0109: { int32_t L_43 = V_4; List_1_t1375417109 * L_44 = (List_1_t1375417109 *)__this->get_variableNames_7(); NullCheck((List_1_t1375417109 *)L_44); int32_t L_45 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_44, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_43) < ((int32_t)L_45))) { goto IL_0088; } } { List_1_t1244034627 * L_46 = V_3; return L_46; } IL_011d: { int32_t L_47 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_47) == ((uint32_t)2)))) { goto IL_018f; } } IL_0129: try { // begin try (depth: 1) { Il2CppObject * L_48 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((Il2CppObject *)L_48); Type_t * L_49 = Object_GetType_m2022236990((Il2CppObject *)L_48, /*hidden argument*/NULL); String_t* L_50 = (String_t*)__this->get_variableName_8(); FieldInfo_t * L_51 = WMG_Reflection_GetField_m2042609184(NULL /*static, unused*/, (Type_t *)L_49, (String_t*)L_50, /*hidden argument*/NULL); Il2CppObject * L_52 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((FieldInfo_t *)L_51); Il2CppObject * L_53 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, (FieldInfo_t *)L_51, (Il2CppObject *)L_52); V_8 = (List_1_t1244034627 *)((List_1_t1244034627 *)Castclass(L_53, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); goto IL_0195; } IL_0156: { ; // IL_0156: leave IL_018f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_015b; throw e; } CATCH_015b: { // begin catch(System.Exception) { V_7 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_54 = (String_t*)__this->get_variableName_8(); Exception_t3991598821 * L_55 = V_7; NullCheck((Exception_t3991598821 *)L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_57 = String_Concat_m2933632197(NULL /*static, unused*/, (String_t*)_stringLiteral803400064, (String_t*)L_54, (String_t*)_stringLiteral3745723463, (String_t*)L_56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_Log_m1731103628(NULL /*static, unused*/, (Il2CppObject *)L_57, /*hidden argument*/NULL); List_1_t1244034627 * L_58 = (List_1_t1244034627 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1244034627 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_8 = (List_1_t1244034627 *)L_58; goto IL_0195; } IL_018a: { ; // IL_018a: leave IL_018f } } // end catch (depth: 1) IL_018f: { List_1_t1244034627 * L_59 = (List_1_t1244034627 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1244034627 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_59, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_59; } IL_0195: { List_1_t1244034627 * L_60 = V_8; return L_60; } } // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<System.Single>() extern Il2CppClass* Enumerator_t1263707397_il2cpp_TypeInfo_var; extern Il2CppClass* IDisposable_t1423340799_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debug_t4195163081_il2cpp_TypeInfo_var; extern const MethodInfo* List_1_GetEnumerator_m2326457258_MethodInfo_var; extern const MethodInfo* Enumerator_get_Current_m4198990746_MethodInfo_var; extern const MethodInfo* Enumerator_MoveNext_m844464217_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m3285151025_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m1082760512_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m1988752856_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m935595982_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral803400064; extern Il2CppCodeGenString* _stringLiteral3745723463; extern const uint32_t WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653_MetadataUsageId; extern "C" List_1_t1365137228 * WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (WMG_Data_Source_getData_TisSingle_t4291918972_m2973310653_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t1365137228 * V_0 = NULL; Il2CppObject * V_1 = NULL; Enumerator_t1263707397 V_2; memset(&V_2, 0, sizeof(V_2)); List_1_t1365137228 * V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; int32_t V_6 = 0; Exception_t3991598821 * V_7 = NULL; List_1_t1365137228 * V_8 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { int32_t L_0 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_006f; } } { List_1_t1365137228 * L_1 = (List_1_t1365137228 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1365137228 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (List_1_t1365137228 *)L_1; List_1_t1244034627 * L_2 = (List_1_t1244034627 *)__this->get_dataProviders_3(); NullCheck((List_1_t1244034627 *)L_2); Enumerator_t1263707397 L_3 = List_1_GetEnumerator_m2326457258((List_1_t1244034627 *)L_2, /*hidden argument*/List_1_GetEnumerator_m2326457258_MethodInfo_var); V_2 = (Enumerator_t1263707397 )L_3; } IL_001e: try { // begin try (depth: 1) { goto IL_0050; } IL_0023: { Il2CppObject * L_4 = Enumerator_get_Current_m4198990746((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m4198990746_MethodInfo_var); V_1 = (Il2CppObject *)L_4; List_1_t1365137228 * L_5 = V_0; Il2CppObject * L_6 = V_1; String_t* L_7 = (String_t*)__this->get_variableName_8(); int32_t L_8 = (int32_t)__this->get_variableType_6(); String_t* L_9 = (String_t*)__this->get_varName1_10(); String_t* L_10 = (String_t*)__this->get_varName2_12(); NullCheck((WMG_Data_Source_t1473700674 *)__this); float L_11 = (( float (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_6, (String_t*)L_7, (int32_t)L_8, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1365137228 *)L_5); (( void (*) (List_1_t1365137228 *, float, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1365137228 *)L_5, (float)L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); } IL_0050: { bool L_12 = Enumerator_MoveNext_m844464217((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m844464217_MethodInfo_var); if (L_12) { goto IL_0023; } } IL_005c: { IL2CPP_LEAVE(0x6D, FINALLY_0061); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t3991598821 *)e.ex; goto FINALLY_0061; } FINALLY_0061: { // begin finally (depth: 1) Enumerator_t1263707397 L_13 = V_2; Enumerator_t1263707397 L_14 = L_13; Il2CppObject * L_15 = Box(Enumerator_t1263707397_il2cpp_TypeInfo_var, &L_14); NullCheck((Il2CppObject *)L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1423340799_il2cpp_TypeInfo_var, (Il2CppObject *)L_15); IL2CPP_END_FINALLY(97) } // end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_JUMP_TBL(0x6D, IL_006d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t3991598821 *) } IL_006d: { List_1_t1365137228 * L_16 = V_0; return L_16; } IL_006f: { int32_t L_17 = (int32_t)__this->get_dataSourceType_2(); if (L_17) { goto IL_011d; } } { List_1_t1365137228 * L_18 = (List_1_t1365137228 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1365137228 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_3 = (List_1_t1365137228 *)L_18; V_4 = (int32_t)0; goto IL_0109; } IL_0088: { List_1_t1375417109 * L_19 = (List_1_t1375417109 *)__this->get_variableNames_7(); int32_t L_20 = V_4; NullCheck((List_1_t1375417109 *)L_19); String_t* L_21 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_19, (int32_t)L_20, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); V_5 = (String_t*)L_21; V_6 = (int32_t)0; int32_t L_22 = V_4; List_1_t1338515698 * L_23 = (List_1_t1338515698 *)__this->get_variableTypes_5(); NullCheck((List_1_t1338515698 *)L_23); int32_t L_24 = List_1_get_Count_m1082760512((List_1_t1338515698 *)L_23, /*hidden argument*/List_1_get_Count_m1082760512_MethodInfo_var); if ((((int32_t)L_22) >= ((int32_t)L_24))) { goto IL_00bb; } } { List_1_t1338515698 * L_25 = (List_1_t1338515698 *)__this->get_variableTypes_5(); int32_t L_26 = V_4; NullCheck((List_1_t1338515698 *)L_25); int32_t L_27 = List_1_get_Item_m1988752856((List_1_t1338515698 *)L_25, (int32_t)L_26, /*hidden argument*/List_1_get_Item_m1988752856_MethodInfo_var); V_6 = (int32_t)L_27; } IL_00bb: { int32_t L_28 = V_4; List_1_t1375417109 * L_29 = (List_1_t1375417109 *)__this->get_varNames1_9(); NullCheck((List_1_t1375417109 *)L_29); int32_t L_30 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_29, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_28) < ((int32_t)L_30))) { goto IL_00d3; } } { NullCheck((WMG_Data_Source_t1473700674 *)__this); WMG_Data_Source_parseStrings_m1769574442((WMG_Data_Source_t1473700674 *)__this, /*hidden argument*/NULL); } IL_00d3: { List_1_t1365137228 * L_31 = V_3; Il2CppObject * L_32 = (Il2CppObject *)__this->get_dataProvider_4(); String_t* L_33 = V_5; int32_t L_34 = V_6; List_1_t1375417109 * L_35 = (List_1_t1375417109 *)__this->get_varNames1_9(); int32_t L_36 = V_4; NullCheck((List_1_t1375417109 *)L_35); String_t* L_37 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_35, (int32_t)L_36, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); List_1_t1375417109 * L_38 = (List_1_t1375417109 *)__this->get_varNames2_11(); int32_t L_39 = V_4; NullCheck((List_1_t1375417109 *)L_38); String_t* L_40 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_38, (int32_t)L_39, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); NullCheck((WMG_Data_Source_t1473700674 *)__this); float L_41 = (( float (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_32, (String_t*)L_33, (int32_t)L_34, (String_t*)L_37, (String_t*)L_40, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1365137228 *)L_31); (( void (*) (List_1_t1365137228 *, float, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1365137228 *)L_31, (float)L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)((int32_t)L_42+(int32_t)1)); } IL_0109: { int32_t L_43 = V_4; List_1_t1375417109 * L_44 = (List_1_t1375417109 *)__this->get_variableNames_7(); NullCheck((List_1_t1375417109 *)L_44); int32_t L_45 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_44, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_43) < ((int32_t)L_45))) { goto IL_0088; } } { List_1_t1365137228 * L_46 = V_3; return L_46; } IL_011d: { int32_t L_47 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_47) == ((uint32_t)2)))) { goto IL_018f; } } IL_0129: try { // begin try (depth: 1) { Il2CppObject * L_48 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((Il2CppObject *)L_48); Type_t * L_49 = Object_GetType_m2022236990((Il2CppObject *)L_48, /*hidden argument*/NULL); String_t* L_50 = (String_t*)__this->get_variableName_8(); FieldInfo_t * L_51 = WMG_Reflection_GetField_m2042609184(NULL /*static, unused*/, (Type_t *)L_49, (String_t*)L_50, /*hidden argument*/NULL); Il2CppObject * L_52 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((FieldInfo_t *)L_51); Il2CppObject * L_53 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, (FieldInfo_t *)L_51, (Il2CppObject *)L_52); V_8 = (List_1_t1365137228 *)((List_1_t1365137228 *)Castclass(L_53, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); goto IL_0195; } IL_0156: { ; // IL_0156: leave IL_018f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_015b; throw e; } CATCH_015b: { // begin catch(System.Exception) { V_7 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_54 = (String_t*)__this->get_variableName_8(); Exception_t3991598821 * L_55 = V_7; NullCheck((Exception_t3991598821 *)L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_57 = String_Concat_m2933632197(NULL /*static, unused*/, (String_t*)_stringLiteral803400064, (String_t*)L_54, (String_t*)_stringLiteral3745723463, (String_t*)L_56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_Log_m1731103628(NULL /*static, unused*/, (Il2CppObject *)L_57, /*hidden argument*/NULL); List_1_t1365137228 * L_58 = (List_1_t1365137228 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1365137228 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_8 = (List_1_t1365137228 *)L_58; goto IL_0195; } IL_018a: { ; // IL_018a: leave IL_018f } } // end catch (depth: 1) IL_018f: { List_1_t1365137228 * L_59 = (List_1_t1365137228 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1365137228 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_59, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_59; } IL_0195: { List_1_t1365137228 * L_60 = V_8; return L_60; } } // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<UnityEngine.Color>() extern Il2CppClass* Enumerator_t1263707397_il2cpp_TypeInfo_var; extern Il2CppClass* IDisposable_t1423340799_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debug_t4195163081_il2cpp_TypeInfo_var; extern const MethodInfo* List_1_GetEnumerator_m2326457258_MethodInfo_var; extern const MethodInfo* Enumerator_get_Current_m4198990746_MethodInfo_var; extern const MethodInfo* Enumerator_MoveNext_m844464217_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m3285151025_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m1082760512_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m1988752856_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m935595982_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral803400064; extern Il2CppCodeGenString* _stringLiteral3745723463; extern const uint32_t WMG_Data_Source_getData_TisColor_t4194546905_m319297144_MetadataUsageId; extern "C" List_1_t1267765161 * WMG_Data_Source_getData_TisColor_t4194546905_m319297144_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (WMG_Data_Source_getData_TisColor_t4194546905_m319297144_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t1267765161 * V_0 = NULL; Il2CppObject * V_1 = NULL; Enumerator_t1263707397 V_2; memset(&V_2, 0, sizeof(V_2)); List_1_t1267765161 * V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; int32_t V_6 = 0; Exception_t3991598821 * V_7 = NULL; List_1_t1267765161 * V_8 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { int32_t L_0 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_006f; } } { List_1_t1267765161 * L_1 = (List_1_t1267765161 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1267765161 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (List_1_t1267765161 *)L_1; List_1_t1244034627 * L_2 = (List_1_t1244034627 *)__this->get_dataProviders_3(); NullCheck((List_1_t1244034627 *)L_2); Enumerator_t1263707397 L_3 = List_1_GetEnumerator_m2326457258((List_1_t1244034627 *)L_2, /*hidden argument*/List_1_GetEnumerator_m2326457258_MethodInfo_var); V_2 = (Enumerator_t1263707397 )L_3; } IL_001e: try { // begin try (depth: 1) { goto IL_0050; } IL_0023: { Il2CppObject * L_4 = Enumerator_get_Current_m4198990746((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m4198990746_MethodInfo_var); V_1 = (Il2CppObject *)L_4; List_1_t1267765161 * L_5 = V_0; Il2CppObject * L_6 = V_1; String_t* L_7 = (String_t*)__this->get_variableName_8(); int32_t L_8 = (int32_t)__this->get_variableType_6(); String_t* L_9 = (String_t*)__this->get_varName1_10(); String_t* L_10 = (String_t*)__this->get_varName2_12(); NullCheck((WMG_Data_Source_t1473700674 *)__this); Color_t4194546905 L_11 = (( Color_t4194546905 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_6, (String_t*)L_7, (int32_t)L_8, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1267765161 *)L_5); (( void (*) (List_1_t1267765161 *, Color_t4194546905 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1267765161 *)L_5, (Color_t4194546905 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); } IL_0050: { bool L_12 = Enumerator_MoveNext_m844464217((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m844464217_MethodInfo_var); if (L_12) { goto IL_0023; } } IL_005c: { IL2CPP_LEAVE(0x6D, FINALLY_0061); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t3991598821 *)e.ex; goto FINALLY_0061; } FINALLY_0061: { // begin finally (depth: 1) Enumerator_t1263707397 L_13 = V_2; Enumerator_t1263707397 L_14 = L_13; Il2CppObject * L_15 = Box(Enumerator_t1263707397_il2cpp_TypeInfo_var, &L_14); NullCheck((Il2CppObject *)L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1423340799_il2cpp_TypeInfo_var, (Il2CppObject *)L_15); IL2CPP_END_FINALLY(97) } // end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_JUMP_TBL(0x6D, IL_006d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t3991598821 *) } IL_006d: { List_1_t1267765161 * L_16 = V_0; return L_16; } IL_006f: { int32_t L_17 = (int32_t)__this->get_dataSourceType_2(); if (L_17) { goto IL_011d; } } { List_1_t1267765161 * L_18 = (List_1_t1267765161 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1267765161 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_3 = (List_1_t1267765161 *)L_18; V_4 = (int32_t)0; goto IL_0109; } IL_0088: { List_1_t1375417109 * L_19 = (List_1_t1375417109 *)__this->get_variableNames_7(); int32_t L_20 = V_4; NullCheck((List_1_t1375417109 *)L_19); String_t* L_21 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_19, (int32_t)L_20, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); V_5 = (String_t*)L_21; V_6 = (int32_t)0; int32_t L_22 = V_4; List_1_t1338515698 * L_23 = (List_1_t1338515698 *)__this->get_variableTypes_5(); NullCheck((List_1_t1338515698 *)L_23); int32_t L_24 = List_1_get_Count_m1082760512((List_1_t1338515698 *)L_23, /*hidden argument*/List_1_get_Count_m1082760512_MethodInfo_var); if ((((int32_t)L_22) >= ((int32_t)L_24))) { goto IL_00bb; } } { List_1_t1338515698 * L_25 = (List_1_t1338515698 *)__this->get_variableTypes_5(); int32_t L_26 = V_4; NullCheck((List_1_t1338515698 *)L_25); int32_t L_27 = List_1_get_Item_m1988752856((List_1_t1338515698 *)L_25, (int32_t)L_26, /*hidden argument*/List_1_get_Item_m1988752856_MethodInfo_var); V_6 = (int32_t)L_27; } IL_00bb: { int32_t L_28 = V_4; List_1_t1375417109 * L_29 = (List_1_t1375417109 *)__this->get_varNames1_9(); NullCheck((List_1_t1375417109 *)L_29); int32_t L_30 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_29, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_28) < ((int32_t)L_30))) { goto IL_00d3; } } { NullCheck((WMG_Data_Source_t1473700674 *)__this); WMG_Data_Source_parseStrings_m1769574442((WMG_Data_Source_t1473700674 *)__this, /*hidden argument*/NULL); } IL_00d3: { List_1_t1267765161 * L_31 = V_3; Il2CppObject * L_32 = (Il2CppObject *)__this->get_dataProvider_4(); String_t* L_33 = V_5; int32_t L_34 = V_6; List_1_t1375417109 * L_35 = (List_1_t1375417109 *)__this->get_varNames1_9(); int32_t L_36 = V_4; NullCheck((List_1_t1375417109 *)L_35); String_t* L_37 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_35, (int32_t)L_36, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); List_1_t1375417109 * L_38 = (List_1_t1375417109 *)__this->get_varNames2_11(); int32_t L_39 = V_4; NullCheck((List_1_t1375417109 *)L_38); String_t* L_40 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_38, (int32_t)L_39, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); NullCheck((WMG_Data_Source_t1473700674 *)__this); Color_t4194546905 L_41 = (( Color_t4194546905 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_32, (String_t*)L_33, (int32_t)L_34, (String_t*)L_37, (String_t*)L_40, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1267765161 *)L_31); (( void (*) (List_1_t1267765161 *, Color_t4194546905 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1267765161 *)L_31, (Color_t4194546905 )L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)((int32_t)L_42+(int32_t)1)); } IL_0109: { int32_t L_43 = V_4; List_1_t1375417109 * L_44 = (List_1_t1375417109 *)__this->get_variableNames_7(); NullCheck((List_1_t1375417109 *)L_44); int32_t L_45 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_44, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_43) < ((int32_t)L_45))) { goto IL_0088; } } { List_1_t1267765161 * L_46 = V_3; return L_46; } IL_011d: { int32_t L_47 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_47) == ((uint32_t)2)))) { goto IL_018f; } } IL_0129: try { // begin try (depth: 1) { Il2CppObject * L_48 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((Il2CppObject *)L_48); Type_t * L_49 = Object_GetType_m2022236990((Il2CppObject *)L_48, /*hidden argument*/NULL); String_t* L_50 = (String_t*)__this->get_variableName_8(); FieldInfo_t * L_51 = WMG_Reflection_GetField_m2042609184(NULL /*static, unused*/, (Type_t *)L_49, (String_t*)L_50, /*hidden argument*/NULL); Il2CppObject * L_52 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((FieldInfo_t *)L_51); Il2CppObject * L_53 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, (FieldInfo_t *)L_51, (Il2CppObject *)L_52); V_8 = (List_1_t1267765161 *)((List_1_t1267765161 *)Castclass(L_53, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); goto IL_0195; } IL_0156: { ; // IL_0156: leave IL_018f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_015b; throw e; } CATCH_015b: { // begin catch(System.Exception) { V_7 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_54 = (String_t*)__this->get_variableName_8(); Exception_t3991598821 * L_55 = V_7; NullCheck((Exception_t3991598821 *)L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_57 = String_Concat_m2933632197(NULL /*static, unused*/, (String_t*)_stringLiteral803400064, (String_t*)L_54, (String_t*)_stringLiteral3745723463, (String_t*)L_56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_Log_m1731103628(NULL /*static, unused*/, (Il2CppObject *)L_57, /*hidden argument*/NULL); List_1_t1267765161 * L_58 = (List_1_t1267765161 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1267765161 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_8 = (List_1_t1267765161 *)L_58; goto IL_0195; } IL_018a: { ; // IL_018a: leave IL_018f } } // end catch (depth: 1) IL_018f: { List_1_t1267765161 * L_59 = (List_1_t1267765161 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1267765161 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_59, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_59; } IL_0195: { List_1_t1267765161 * L_60 = V_8; return L_60; } } // System.Collections.Generic.List`1<T> WMG_Data_Source::getData<UnityEngine.Vector2>() extern Il2CppClass* Enumerator_t1263707397_il2cpp_TypeInfo_var; extern Il2CppClass* IDisposable_t1423340799_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* Debug_t4195163081_il2cpp_TypeInfo_var; extern const MethodInfo* List_1_GetEnumerator_m2326457258_MethodInfo_var; extern const MethodInfo* Enumerator_get_Current_m4198990746_MethodInfo_var; extern const MethodInfo* Enumerator_MoveNext_m844464217_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m3285151025_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m1082760512_MethodInfo_var; extern const MethodInfo* List_1_get_Item_m1988752856_MethodInfo_var; extern const MethodInfo* List_1_get_Count_m935595982_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral803400064; extern Il2CppCodeGenString* _stringLiteral3745723463; extern const uint32_t WMG_Data_Source_getData_TisVector2_t4282066565_m662378508_MetadataUsageId; extern "C" List_1_t1355284821 * WMG_Data_Source_getData_TisVector2_t4282066565_m662378508_gshared (WMG_Data_Source_t1473700674 * __this, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (WMG_Data_Source_getData_TisVector2_t4282066565_m662378508_MetadataUsageId); s_Il2CppMethodIntialized = true; } List_1_t1355284821 * V_0 = NULL; Il2CppObject * V_1 = NULL; Enumerator_t1263707397 V_2; memset(&V_2, 0, sizeof(V_2)); List_1_t1355284821 * V_3 = NULL; int32_t V_4 = 0; String_t* V_5 = NULL; int32_t V_6 = 0; Exception_t3991598821 * V_7 = NULL; List_1_t1355284821 * V_8 = NULL; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { int32_t L_0 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_006f; } } { List_1_t1355284821 * L_1 = (List_1_t1355284821 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1355284821 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_0 = (List_1_t1355284821 *)L_1; List_1_t1244034627 * L_2 = (List_1_t1244034627 *)__this->get_dataProviders_3(); NullCheck((List_1_t1244034627 *)L_2); Enumerator_t1263707397 L_3 = List_1_GetEnumerator_m2326457258((List_1_t1244034627 *)L_2, /*hidden argument*/List_1_GetEnumerator_m2326457258_MethodInfo_var); V_2 = (Enumerator_t1263707397 )L_3; } IL_001e: try { // begin try (depth: 1) { goto IL_0050; } IL_0023: { Il2CppObject * L_4 = Enumerator_get_Current_m4198990746((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_get_Current_m4198990746_MethodInfo_var); V_1 = (Il2CppObject *)L_4; List_1_t1355284821 * L_5 = V_0; Il2CppObject * L_6 = V_1; String_t* L_7 = (String_t*)__this->get_variableName_8(); int32_t L_8 = (int32_t)__this->get_variableType_6(); String_t* L_9 = (String_t*)__this->get_varName1_10(); String_t* L_10 = (String_t*)__this->get_varName2_12(); NullCheck((WMG_Data_Source_t1473700674 *)__this); Vector2_t4282066565 L_11 = (( Vector2_t4282066565 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_6, (String_t*)L_7, (int32_t)L_8, (String_t*)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1355284821 *)L_5); (( void (*) (List_1_t1355284821 *, Vector2_t4282066565 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1355284821 *)L_5, (Vector2_t4282066565 )L_11, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); } IL_0050: { bool L_12 = Enumerator_MoveNext_m844464217((Enumerator_t1263707397 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m844464217_MethodInfo_var); if (L_12) { goto IL_0023; } } IL_005c: { IL2CPP_LEAVE(0x6D, FINALLY_0061); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t3991598821 *)e.ex; goto FINALLY_0061; } FINALLY_0061: { // begin finally (depth: 1) Enumerator_t1263707397 L_13 = V_2; Enumerator_t1263707397 L_14 = L_13; Il2CppObject * L_15 = Box(Enumerator_t1263707397_il2cpp_TypeInfo_var, &L_14); NullCheck((Il2CppObject *)L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t1423340799_il2cpp_TypeInfo_var, (Il2CppObject *)L_15); IL2CPP_END_FINALLY(97) } // end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_JUMP_TBL(0x6D, IL_006d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t3991598821 *) } IL_006d: { List_1_t1355284821 * L_16 = V_0; return L_16; } IL_006f: { int32_t L_17 = (int32_t)__this->get_dataSourceType_2(); if (L_17) { goto IL_011d; } } { List_1_t1355284821 * L_18 = (List_1_t1355284821 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1355284821 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_18, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_3 = (List_1_t1355284821 *)L_18; V_4 = (int32_t)0; goto IL_0109; } IL_0088: { List_1_t1375417109 * L_19 = (List_1_t1375417109 *)__this->get_variableNames_7(); int32_t L_20 = V_4; NullCheck((List_1_t1375417109 *)L_19); String_t* L_21 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_19, (int32_t)L_20, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); V_5 = (String_t*)L_21; V_6 = (int32_t)0; int32_t L_22 = V_4; List_1_t1338515698 * L_23 = (List_1_t1338515698 *)__this->get_variableTypes_5(); NullCheck((List_1_t1338515698 *)L_23); int32_t L_24 = List_1_get_Count_m1082760512((List_1_t1338515698 *)L_23, /*hidden argument*/List_1_get_Count_m1082760512_MethodInfo_var); if ((((int32_t)L_22) >= ((int32_t)L_24))) { goto IL_00bb; } } { List_1_t1338515698 * L_25 = (List_1_t1338515698 *)__this->get_variableTypes_5(); int32_t L_26 = V_4; NullCheck((List_1_t1338515698 *)L_25); int32_t L_27 = List_1_get_Item_m1988752856((List_1_t1338515698 *)L_25, (int32_t)L_26, /*hidden argument*/List_1_get_Item_m1988752856_MethodInfo_var); V_6 = (int32_t)L_27; } IL_00bb: { int32_t L_28 = V_4; List_1_t1375417109 * L_29 = (List_1_t1375417109 *)__this->get_varNames1_9(); NullCheck((List_1_t1375417109 *)L_29); int32_t L_30 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_29, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_28) < ((int32_t)L_30))) { goto IL_00d3; } } { NullCheck((WMG_Data_Source_t1473700674 *)__this); WMG_Data_Source_parseStrings_m1769574442((WMG_Data_Source_t1473700674 *)__this, /*hidden argument*/NULL); } IL_00d3: { List_1_t1355284821 * L_31 = V_3; Il2CppObject * L_32 = (Il2CppObject *)__this->get_dataProvider_4(); String_t* L_33 = V_5; int32_t L_34 = V_6; List_1_t1375417109 * L_35 = (List_1_t1375417109 *)__this->get_varNames1_9(); int32_t L_36 = V_4; NullCheck((List_1_t1375417109 *)L_35); String_t* L_37 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_35, (int32_t)L_36, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); List_1_t1375417109 * L_38 = (List_1_t1375417109 *)__this->get_varNames2_11(); int32_t L_39 = V_4; NullCheck((List_1_t1375417109 *)L_38); String_t* L_40 = List_1_get_Item_m3285151025((List_1_t1375417109 *)L_38, (int32_t)L_39, /*hidden argument*/List_1_get_Item_m3285151025_MethodInfo_var); NullCheck((WMG_Data_Source_t1473700674 *)__this); Vector2_t4282066565 L_41 = (( Vector2_t4282066565 (*) (WMG_Data_Source_t1473700674 *, Il2CppObject *, String_t*, int32_t, String_t*, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((WMG_Data_Source_t1473700674 *)__this, (Il2CppObject *)L_32, (String_t*)L_33, (int32_t)L_34, (String_t*)L_37, (String_t*)L_40, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); NullCheck((List_1_t1355284821 *)L_31); (( void (*) (List_1_t1355284821 *, Vector2_t4282066565 , const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)((List_1_t1355284821 *)L_31, (Vector2_t4282066565 )L_41, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); int32_t L_42 = V_4; V_4 = (int32_t)((int32_t)((int32_t)L_42+(int32_t)1)); } IL_0109: { int32_t L_43 = V_4; List_1_t1375417109 * L_44 = (List_1_t1375417109 *)__this->get_variableNames_7(); NullCheck((List_1_t1375417109 *)L_44); int32_t L_45 = List_1_get_Count_m935595982((List_1_t1375417109 *)L_44, /*hidden argument*/List_1_get_Count_m935595982_MethodInfo_var); if ((((int32_t)L_43) < ((int32_t)L_45))) { goto IL_0088; } } { List_1_t1355284821 * L_46 = V_3; return L_46; } IL_011d: { int32_t L_47 = (int32_t)__this->get_dataSourceType_2(); if ((!(((uint32_t)L_47) == ((uint32_t)2)))) { goto IL_018f; } } IL_0129: try { // begin try (depth: 1) { Il2CppObject * L_48 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((Il2CppObject *)L_48); Type_t * L_49 = Object_GetType_m2022236990((Il2CppObject *)L_48, /*hidden argument*/NULL); String_t* L_50 = (String_t*)__this->get_variableName_8(); FieldInfo_t * L_51 = WMG_Reflection_GetField_m2042609184(NULL /*static, unused*/, (Type_t *)L_49, (String_t*)L_50, /*hidden argument*/NULL); Il2CppObject * L_52 = (Il2CppObject *)__this->get_dataProvider_4(); NullCheck((FieldInfo_t *)L_51); Il2CppObject * L_53 = VirtFuncInvoker1< Il2CppObject *, Il2CppObject * >::Invoke(18 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, (FieldInfo_t *)L_51, (Il2CppObject *)L_52); V_8 = (List_1_t1355284821 *)((List_1_t1355284821 *)Castclass(L_53, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))); goto IL_0195; } IL_0156: { ; // IL_0156: leave IL_018f } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_015b; throw e; } CATCH_015b: { // begin catch(System.Exception) { V_7 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_54 = (String_t*)__this->get_variableName_8(); Exception_t3991598821 * L_55 = V_7; NullCheck((Exception_t3991598821 *)L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Exception::get_Message() */, (Exception_t3991598821 *)L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_57 = String_Concat_m2933632197(NULL /*static, unused*/, (String_t*)_stringLiteral803400064, (String_t*)L_54, (String_t*)_stringLiteral3745723463, (String_t*)L_56, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t4195163081_il2cpp_TypeInfo_var); Debug_Log_m1731103628(NULL /*static, unused*/, (Il2CppObject *)L_57, /*hidden argument*/NULL); List_1_t1355284821 * L_58 = (List_1_t1355284821 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1355284821 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_58, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_8 = (List_1_t1355284821 *)L_58; goto IL_0195; } IL_018a: { ; // IL_018a: leave IL_018f } } // end catch (depth: 1) IL_018f: { List_1_t1355284821 * L_59 = (List_1_t1355284821 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1355284821 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_59, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_59; } IL_0195: { List_1_t1355284821 * L_60 = V_8; return L_60; } } // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<AllSingleton/Contacts>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t1720329256 * Enumerable_ToList_TisContacts_t352143704_m54472673_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Check_Source_m228347543(NULL /*static, unused*/, (Il2CppObject *)L_0, /*hidden argument*/NULL); Il2CppObject* L_1 = ___source0; List_1_t1720329256 * L_2 = (List_1_t1720329256 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1720329256 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Il2CppObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<ConsoleApplication.LocalProcessing/DeviceProperties>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t3860887551 * Enumerable_ToList_TisDeviceProperties_t2492701999_m566635768_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Check_Source_m228347543(NULL /*static, unused*/, (Il2CppObject *)L_0, /*hidden argument*/NULL); Il2CppObject* L_1 = ___source0; List_1_t3860887551 * L_2 = (List_1_t3860887551 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t3860887551 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Il2CppObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<ConsoleApplication.LocalProcessing/StaffInformatino>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t13119972 * Enumerable_ToList_TisStaffInformatino_t2939901716_m3100551389_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Check_Source_m228347543(NULL /*static, unused*/, (Il2CppObject *)L_0, /*hidden argument*/NULL); Il2CppObject* L_1 = ___source0; List_1_t13119972 * L_2 = (List_1_t13119972 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t13119972 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Il2CppObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Collections.Generic.List`1<TSource> System.Linq.Enumerable::ToList<System.Object>(System.Collections.Generic.IEnumerable`1<TSource>) extern "C" List_1_t1244034627 * Enumerable_ToList_TisIl2CppObject_m1075343207_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Check_Source_m228347543(NULL /*static, unused*/, (Il2CppObject *)L_0, /*hidden argument*/NULL); Il2CppObject* L_1 = ___source0; List_1_t1244034627 * L_2 = (List_1_t1244034627 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (List_1_t1244034627 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Il2CppObject*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Object>(T[]) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_AsReadOnly_TisIl2CppObject_m3222156752_MetadataUsageId; extern "C" ReadOnlyCollection_1_t1432926611 * Array_AsReadOnly_TisIl2CppObject_m3222156752_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_AsReadOnly_TisIl2CppObject_m3222156752_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; ArrayReadOnlyList_1_t1756209413 * L_3 = (ArrayReadOnlyList_1_t1756209413 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (ArrayReadOnlyList_1_t1756209413 *, ObjectU5BU5D_t1108656482*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (ObjectU5BU5D_t1108656482*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); ReadOnlyCollection_1_t1432926611 * L_4 = (ReadOnlyCollection_1_t1432926611 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); (( void (*) (ReadOnlyCollection_1_t1432926611 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)(L_4, (Il2CppObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); return L_4; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeNamedArgument>(T[]) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287_MetadataUsageId; extern "C" ReadOnlyCollection_1_t321723229 * Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_AsReadOnly_TisCustomAttributeNamedArgument_t3059612989_m2166024287_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_2 = ___array0; ArrayReadOnlyList_1_t645006031 * L_3 = (ArrayReadOnlyList_1_t645006031 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (ArrayReadOnlyList_1_t645006031 *, CustomAttributeNamedArgumentU5BU5D_t1983528240*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (CustomAttributeNamedArgumentU5BU5D_t1983528240*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); ReadOnlyCollection_1_t321723229 * L_4 = (ReadOnlyCollection_1_t321723229 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); (( void (*) (ReadOnlyCollection_1_t321723229 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)(L_4, (Il2CppObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); return L_4; } } // System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Array::AsReadOnly<System.Reflection.CustomAttributeTypedArgument>(T[]) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640_MetadataUsageId; extern "C" ReadOnlyCollection_1_t563403662 * Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_AsReadOnly_TisCustomAttributeTypedArgument_t3301293422_m3973834640_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_2 = ___array0; ArrayReadOnlyList_1_t886686464 * L_3 = (ArrayReadOnlyList_1_t886686464 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (ArrayReadOnlyList_1_t886686464 *, CustomAttributeTypedArgumentU5BU5D_t2088020251*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_3, (CustomAttributeTypedArgumentU5BU5D_t2088020251*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); ReadOnlyCollection_1_t563403662 * L_4 = (ReadOnlyCollection_1_t563403662 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 2)); (( void (*) (ReadOnlyCollection_1_t563403662 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)->methodPointer)(L_4, (Il2CppObject*)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 3)); return L_4; } } // System.Int32 System.Array::BinarySearch<System.Int32>(T[],System.Int32,System.Int32,T) extern "C" int32_t Array_BinarySearch_TisInt32_t1153838500_m3080908590_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___index1, int32_t ___length2, int32_t ___value3, const MethodInfo* method) { { Int32U5BU5D_t3230847821* L_0 = ___array0; int32_t L_1 = ___index1; int32_t L_2 = ___length2; int32_t L_3 = ___value3; int32_t L_4 = (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, int32_t, int32_t, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Int32U5BU5D_t3230847821*)L_0, (int32_t)L_1, (int32_t)L_2, (int32_t)L_3, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_4; } } // System.Int32 System.Array::BinarySearch<System.Int32>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral3337022062; extern Il2CppCodeGenString* _stringLiteral3188603622; extern Il2CppCodeGenString* _stringLiteral2582657682; extern Il2CppCodeGenString* _stringLiteral3523250828; extern Il2CppCodeGenString* _stringLiteral2632557775; extern const uint32_t Array_BinarySearch_TisInt32_t1153838500_m2244288238_MetadataUsageId; extern "C" int32_t Array_BinarySearch_TisInt32_t1153838500_m2244288238_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___index1, int32_t ___length2, int32_t ___value3, Il2CppObject* ___comparer4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_TisInt32_t1153838500_m2244288238_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; Exception_t3991598821 * V_4 = NULL; int32_t V_5 = 0; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Int32U5BU5D_t3230847821* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___index1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3337022062, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_4 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_4, (String_t*)_stringLiteral100346066, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___length2; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0049; } } { String_t* L_6 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_7 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_7, (String_t*)_stringLiteral3188603622, (String_t*)L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0049: { int32_t L_8 = ___index1; Int32U5BU5D_t3230847821* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___length2; if ((((int32_t)L_8) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))-(int32_t)L_10))))) { goto IL_0064; } } { String_t* L_11 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3523250828, /*hidden argument*/NULL); ArgumentException_t928607144 * L_12 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_12, (String_t*)L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0064: { Il2CppObject* L_13 = ___comparer4; if (L_13) { goto IL_0072; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); Comparer_1_t3405591787 * L_14 = (( Comparer_1_t3405591787 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ___comparer4 = (Il2CppObject*)L_14; } IL_0072: { int32_t L_15 = ___index1; V_0 = (int32_t)L_15; int32_t L_16 = ___index1; int32_t L_17 = ___length2; V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_16+(int32_t)L_17))-(int32_t)1)); V_2 = (int32_t)0; } IL_007c: try { // begin try (depth: 1) { goto IL_00bb; } IL_0081: { int32_t L_18 = V_0; int32_t L_19 = V_1; int32_t L_20 = V_0; V_3 = (int32_t)((int32_t)((int32_t)L_18+(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19-(int32_t)L_20))/(int32_t)2)))); Il2CppObject* L_21 = ___comparer4; int32_t L_22 = ___value3; Int32U5BU5D_t3230847821* L_23 = ___array0; int32_t L_24 = V_3; NullCheck(L_23); IL2CPP_ARRAY_BOUNDS_CHECK(L_23, L_24); int32_t L_25 = L_24; int32_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); NullCheck((Il2CppObject*)L_21); int32_t L_27 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)L_21, (int32_t)L_22, (int32_t)L_26); V_2 = (int32_t)L_27; int32_t L_28 = V_2; if (L_28) { goto IL_00a7; } } IL_009f: { int32_t L_29 = V_3; V_5 = (int32_t)L_29; goto IL_00e3; } IL_00a7: { int32_t L_30 = V_2; if ((((int32_t)L_30) >= ((int32_t)0))) { goto IL_00b7; } } IL_00ae: { int32_t L_31 = V_3; V_1 = (int32_t)((int32_t)((int32_t)L_31-(int32_t)1)); goto IL_00bb; } IL_00b7: { int32_t L_32 = V_3; V_0 = (int32_t)((int32_t)((int32_t)L_32+(int32_t)1)); } IL_00bb: { int32_t L_33 = V_0; int32_t L_34 = V_1; if ((((int32_t)L_33) <= ((int32_t)L_34))) { goto IL_0081; } } IL_00c2: { goto IL_00e0; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00c7; throw e; } CATCH_00c7: { // begin catch(System.Exception) { V_4 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_35 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2632557775, /*hidden argument*/NULL); Exception_t3991598821 * L_36 = V_4; InvalidOperationException_t1589641621 * L_37 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2119621158(L_37, (String_t*)L_35, (Exception_t3991598821 *)L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37); } IL_00db: { goto IL_00e0; } } // end catch (depth: 1) IL_00e0: { int32_t L_38 = V_0; return ((~L_38)); } IL_00e3: { int32_t L_39 = V_5; return L_39; } } // System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T) extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m4130291207_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___index1, int32_t ___length2, Il2CppObject * ___value3, const MethodInfo* method) { { ObjectU5BU5D_t1108656482* L_0 = ___array0; int32_t L_1 = ___index1; int32_t L_2 = ___length2; Il2CppObject * L_3 = ___value3; int32_t L_4 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Il2CppObject *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_0, (int32_t)L_1, (int32_t)L_2, (Il2CppObject *)L_3, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_4; } } // System.Int32 System.Array::BinarySearch<System.Object>(T[],System.Int32,System.Int32,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* Exception_t3991598821_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral3337022062; extern Il2CppCodeGenString* _stringLiteral3188603622; extern Il2CppCodeGenString* _stringLiteral2582657682; extern Il2CppCodeGenString* _stringLiteral3523250828; extern Il2CppCodeGenString* _stringLiteral2632557775; extern const uint32_t Array_BinarySearch_TisIl2CppObject_m1470814565_MetadataUsageId; extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m1470814565_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___index1, int32_t ___length2, Il2CppObject * ___value3, Il2CppObject* ___comparer4, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_TisIl2CppObject_m1470814565_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; Exception_t3991598821 * V_4 = NULL; int32_t V_5 = 0; Exception_t3991598821 * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t3991598821 * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___index1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3337022062, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_4 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_4, (String_t*)_stringLiteral100346066, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___length2; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0049; } } { String_t* L_6 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_7 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_7, (String_t*)_stringLiteral3188603622, (String_t*)L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7); } IL_0049: { int32_t L_8 = ___index1; ObjectU5BU5D_t1108656482* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___length2; if ((((int32_t)L_8) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_9)->max_length))))-(int32_t)L_10))))) { goto IL_0064; } } { String_t* L_11 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3523250828, /*hidden argument*/NULL); ArgumentException_t928607144 * L_12 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_12, (String_t*)L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12); } IL_0064: { Il2CppObject* L_13 = ___comparer4; if (L_13) { goto IL_0072; } } { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); Comparer_1_t2127602362 * L_14 = (( Comparer_1_t2127602362 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); ___comparer4 = (Il2CppObject*)L_14; } IL_0072: { int32_t L_15 = ___index1; V_0 = (int32_t)L_15; int32_t L_16 = ___index1; int32_t L_17 = ___length2; V_1 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_16+(int32_t)L_17))-(int32_t)1)); V_2 = (int32_t)0; } IL_007c: try { // begin try (depth: 1) { goto IL_00bb; } IL_0081: { int32_t L_18 = V_0; int32_t L_19 = V_1; int32_t L_20 = V_0; V_3 = (int32_t)((int32_t)((int32_t)L_18+(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_19-(int32_t)L_20))/(int32_t)2)))); Il2CppObject* L_21 = ___comparer4; Il2CppObject * L_22 = ___value3; ObjectU5BU5D_t1108656482* L_23 = ___array0; int32_t L_24 = V_3; NullCheck(L_23); IL2CPP_ARRAY_BOUNDS_CHECK(L_23, L_24); int32_t L_25 = L_24; Il2CppObject * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); NullCheck((Il2CppObject*)L_21); int32_t L_27 = InterfaceFuncInvoker2< int32_t, Il2CppObject *, Il2CppObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)L_21, (Il2CppObject *)L_22, (Il2CppObject *)L_26); V_2 = (int32_t)L_27; int32_t L_28 = V_2; if (L_28) { goto IL_00a7; } } IL_009f: { int32_t L_29 = V_3; V_5 = (int32_t)L_29; goto IL_00e3; } IL_00a7: { int32_t L_30 = V_2; if ((((int32_t)L_30) >= ((int32_t)0))) { goto IL_00b7; } } IL_00ae: { int32_t L_31 = V_3; V_1 = (int32_t)((int32_t)((int32_t)L_31-(int32_t)1)); goto IL_00bb; } IL_00b7: { int32_t L_32 = V_3; V_0 = (int32_t)((int32_t)((int32_t)L_32+(int32_t)1)); } IL_00bb: { int32_t L_33 = V_0; int32_t L_34 = V_1; if ((((int32_t)L_33) <= ((int32_t)L_34))) { goto IL_0081; } } IL_00c2: { goto IL_00e0; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t3991598821 *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t3991598821_il2cpp_TypeInfo_var, e.ex->object.klass)) goto CATCH_00c7; throw e; } CATCH_00c7: { // begin catch(System.Exception) { V_4 = (Exception_t3991598821 *)((Exception_t3991598821 *)__exception_local); String_t* L_35 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2632557775, /*hidden argument*/NULL); Exception_t3991598821 * L_36 = V_4; InvalidOperationException_t1589641621 * L_37 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m2119621158(L_37, (String_t*)L_35, (Exception_t3991598821 *)L_36, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37); } IL_00db: { goto IL_00e0; } } // end catch (depth: 1) IL_00e0: { int32_t L_38 = V_0; return ((~L_38)); } IL_00e3: { int32_t L_39 = V_5; return L_39; } } // System.Int32 System.Array::BinarySearch<System.Object>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_BinarySearch_TisIl2CppObject_m1721333095_MetadataUsageId; extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m1721333095_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_TisIl2CppObject_m1721333095_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; ObjectU5BU5D_t1108656482* L_3 = ___array0; NullCheck(L_3); Il2CppObject * L_4 = ___value1; int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Il2CppObject *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length)))), (Il2CppObject *)L_4, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::BinarySearch<System.Object>(T[],T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_BinarySearch_TisIl2CppObject_m2867452101_MetadataUsageId; extern "C" int32_t Array_BinarySearch_TisIl2CppObject_m2867452101_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_TisIl2CppObject_m2867452101_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; ObjectU5BU5D_t1108656482* L_3 = ___array0; NullCheck(L_3); Il2CppObject * L_4 = ___value1; Il2CppObject* L_5 = ___comparer2; int32_t L_6 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Il2CppObject *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length)))), (Il2CppObject *)L_4, (Il2CppObject*)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_6; } } // System.Int32 System.Array::compare<AllSingleton/Contacts>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisContacts_t352143704_m1381065071_MetadataUsageId; extern "C" int32_t Array_compare_TisContacts_t352143704_m1381065071_gshared (Il2CppObject * __this /* static, unused */, Contacts_t352143704 ___value10, Contacts_t352143704 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisContacts_t352143704_m1381065071_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Contacts_t352143704 L_2 = ___value10; Contacts_t352143704 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Contacts_t352143704 , Contacts_t352143704 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<AllSingleton/Contacts>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Contacts_t352143704 )L_2, (Contacts_t352143704 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Contacts_t352143704 L_8 = ___value10; Contacts_t352143704 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Contacts_t352143704 L_11 = ___value10; Contacts_t352143704 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Contacts_t352143704 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Contacts_t352143704 >::Invoke(0 /* System.Int32 System.IComparable`1<AllSingleton/Contacts>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Contacts_t352143704 )L_14); return L_15; } IL_005c: { Contacts_t352143704 L_16 = ___value10; Contacts_t352143704 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Contacts_t352143704 L_19 = ___value10; Contacts_t352143704 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Contacts_t352143704 L_22 = ___value21; Contacts_t352143704 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<AllSingleton/detailsProperty>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisdetailsProperty_t1057943986_m3900447941_MetadataUsageId; extern "C" int32_t Array_compare_TisdetailsProperty_t1057943986_m3900447941_gshared (Il2CppObject * __this /* static, unused */, detailsProperty_t1057943986 ___value10, detailsProperty_t1057943986 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisdetailsProperty_t1057943986_m3900447941_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; detailsProperty_t1057943986 L_2 = ___value10; detailsProperty_t1057943986 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, detailsProperty_t1057943986 , detailsProperty_t1057943986 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<AllSingleton/detailsProperty>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (detailsProperty_t1057943986 )L_2, (detailsProperty_t1057943986 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { detailsProperty_t1057943986 L_8 = ___value10; detailsProperty_t1057943986 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { detailsProperty_t1057943986 L_11 = ___value10; detailsProperty_t1057943986 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); detailsProperty_t1057943986 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, detailsProperty_t1057943986 >::Invoke(0 /* System.Int32 System.IComparable`1<AllSingleton/detailsProperty>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (detailsProperty_t1057943986 )L_14); return L_15; } IL_005c: { detailsProperty_t1057943986 L_16 = ___value10; detailsProperty_t1057943986 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { detailsProperty_t1057943986 L_19 = ___value10; detailsProperty_t1057943986 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); detailsProperty_t1057943986 L_22 = ___value21; detailsProperty_t1057943986 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<AllSingleton/DeviceDetailedInformation>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548_MetadataUsageId; extern "C" int32_t Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformation_t4234054081 ___value10, DeviceDetailedInformation_t4234054081 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisDeviceDetailedInformation_t4234054081_m1637342548_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; DeviceDetailedInformation_t4234054081 L_2 = ___value10; DeviceDetailedInformation_t4234054081 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, DeviceDetailedInformation_t4234054081 , DeviceDetailedInformation_t4234054081 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<AllSingleton/DeviceDetailedInformation>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (DeviceDetailedInformation_t4234054081 )L_2, (DeviceDetailedInformation_t4234054081 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { DeviceDetailedInformation_t4234054081 L_8 = ___value10; DeviceDetailedInformation_t4234054081 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { DeviceDetailedInformation_t4234054081 L_11 = ___value10; DeviceDetailedInformation_t4234054081 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); DeviceDetailedInformation_t4234054081 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, DeviceDetailedInformation_t4234054081 >::Invoke(0 /* System.Int32 System.IComparable`1<AllSingleton/DeviceDetailedInformation>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (DeviceDetailedInformation_t4234054081 )L_14); return L_15; } IL_005c: { DeviceDetailedInformation_t4234054081 L_16 = ___value10; DeviceDetailedInformation_t4234054081 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { DeviceDetailedInformation_t4234054081 L_19 = ___value10; DeviceDetailedInformation_t4234054081 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); DeviceDetailedInformation_t4234054081 L_22 = ___value21; DeviceDetailedInformation_t4234054081 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<AllSingleton/surveyProperty>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TissurveyProperty_t884569204_m2153501451_MetadataUsageId; extern "C" int32_t Array_compare_TissurveyProperty_t884569204_m2153501451_gshared (Il2CppObject * __this /* static, unused */, surveyProperty_t884569204 ___value10, surveyProperty_t884569204 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TissurveyProperty_t884569204_m2153501451_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; surveyProperty_t884569204 L_2 = ___value10; surveyProperty_t884569204 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, surveyProperty_t884569204 , surveyProperty_t884569204 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<AllSingleton/surveyProperty>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (surveyProperty_t884569204 )L_2, (surveyProperty_t884569204 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { surveyProperty_t884569204 L_8 = ___value10; surveyProperty_t884569204 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { surveyProperty_t884569204 L_11 = ___value10; surveyProperty_t884569204 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); surveyProperty_t884569204 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, surveyProperty_t884569204 >::Invoke(0 /* System.Int32 System.IComparable`1<AllSingleton/surveyProperty>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (surveyProperty_t884569204 )L_14); return L_15; } IL_005c: { surveyProperty_t884569204 L_16 = ___value10; surveyProperty_t884569204 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { surveyProperty_t884569204 L_19 = ___value10; surveyProperty_t884569204 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); surveyProperty_t884569204 L_22 = ___value21; surveyProperty_t884569204 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763_MetadataUsageId; extern "C" int32_t Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformation_t3668321760 ___value10, DeviceDetailedInformation_t3668321760 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisDeviceDetailedInformation_t3668321760_m1129579763_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; DeviceDetailedInformation_t3668321760 L_2 = ___value10; DeviceDetailedInformation_t3668321760 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, DeviceDetailedInformation_t3668321760 , DeviceDetailedInformation_t3668321760 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (DeviceDetailedInformation_t3668321760 )L_2, (DeviceDetailedInformation_t3668321760 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { DeviceDetailedInformation_t3668321760 L_8 = ___value10; DeviceDetailedInformation_t3668321760 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { DeviceDetailedInformation_t3668321760 L_11 = ___value10; DeviceDetailedInformation_t3668321760 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); DeviceDetailedInformation_t3668321760 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, DeviceDetailedInformation_t3668321760 >::Invoke(0 /* System.Int32 System.IComparable`1<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (DeviceDetailedInformation_t3668321760 )L_14); return L_15; } IL_005c: { DeviceDetailedInformation_t3668321760 L_16 = ___value10; DeviceDetailedInformation_t3668321760 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { DeviceDetailedInformation_t3668321760 L_19 = ___value10; DeviceDetailedInformation_t3668321760 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); DeviceDetailedInformation_t3668321760 L_22 = ___value21; DeviceDetailedInformation_t3668321760 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/DeviceProperties>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisDeviceProperties_t2492701999_m2619765702_MetadataUsageId; extern "C" int32_t Array_compare_TisDeviceProperties_t2492701999_m2619765702_gshared (Il2CppObject * __this /* static, unused */, DeviceProperties_t2492701999 ___value10, DeviceProperties_t2492701999 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisDeviceProperties_t2492701999_m2619765702_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; DeviceProperties_t2492701999 L_2 = ___value10; DeviceProperties_t2492701999 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, DeviceProperties_t2492701999 , DeviceProperties_t2492701999 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/DeviceProperties>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (DeviceProperties_t2492701999 )L_2, (DeviceProperties_t2492701999 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { DeviceProperties_t2492701999 L_8 = ___value10; DeviceProperties_t2492701999 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { DeviceProperties_t2492701999 L_11 = ___value10; DeviceProperties_t2492701999 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); DeviceProperties_t2492701999 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, DeviceProperties_t2492701999 >::Invoke(0 /* System.Int32 System.IComparable`1<ConsoleApplication.LocalProcessing/DeviceProperties>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (DeviceProperties_t2492701999 )L_14); return L_15; } IL_005c: { DeviceProperties_t2492701999 L_16 = ___value10; DeviceProperties_t2492701999 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { DeviceProperties_t2492701999 L_19 = ___value10; DeviceProperties_t2492701999 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); DeviceProperties_t2492701999 L_22 = ___value21; DeviceProperties_t2492701999 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256_MetadataUsageId; extern "C" int32_t Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrol_t4292956421 ___value10, peopleOrderPatrol_t4292956421 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TispeopleOrderPatrol_t4292956421_m1146335256_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; peopleOrderPatrol_t4292956421 L_2 = ___value10; peopleOrderPatrol_t4292956421 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, peopleOrderPatrol_t4292956421 , peopleOrderPatrol_t4292956421 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/peopleOrderPatrol>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (peopleOrderPatrol_t4292956421 )L_2, (peopleOrderPatrol_t4292956421 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { peopleOrderPatrol_t4292956421 L_8 = ___value10; peopleOrderPatrol_t4292956421 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { peopleOrderPatrol_t4292956421 L_11 = ___value10; peopleOrderPatrol_t4292956421 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); peopleOrderPatrol_t4292956421 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, peopleOrderPatrol_t4292956421 >::Invoke(0 /* System.Int32 System.IComparable`1<ConsoleApplication.LocalProcessing/peopleOrderPatrol>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (peopleOrderPatrol_t4292956421 )L_14); return L_15; } IL_005c: { peopleOrderPatrol_t4292956421 L_16 = ___value10; peopleOrderPatrol_t4292956421 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { peopleOrderPatrol_t4292956421 L_19 = ___value10; peopleOrderPatrol_t4292956421 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); peopleOrderPatrol_t4292956421 L_22 = ___value21; peopleOrderPatrol_t4292956421 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/peoplePatrol>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TispeoplePatrol_t2522972577_m3479055672_MetadataUsageId; extern "C" int32_t Array_compare_TispeoplePatrol_t2522972577_m3479055672_gshared (Il2CppObject * __this /* static, unused */, peoplePatrol_t2522972577 ___value10, peoplePatrol_t2522972577 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TispeoplePatrol_t2522972577_m3479055672_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; peoplePatrol_t2522972577 L_2 = ___value10; peoplePatrol_t2522972577 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, peoplePatrol_t2522972577 , peoplePatrol_t2522972577 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/peoplePatrol>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (peoplePatrol_t2522972577 )L_2, (peoplePatrol_t2522972577 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { peoplePatrol_t2522972577 L_8 = ___value10; peoplePatrol_t2522972577 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { peoplePatrol_t2522972577 L_11 = ___value10; peoplePatrol_t2522972577 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); peoplePatrol_t2522972577 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, peoplePatrol_t2522972577 >::Invoke(0 /* System.Int32 System.IComparable`1<ConsoleApplication.LocalProcessing/peoplePatrol>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (peoplePatrol_t2522972577 )L_14); return L_15; } IL_005c: { peoplePatrol_t2522972577 L_16 = ___value10; peoplePatrol_t2522972577 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { peoplePatrol_t2522972577 L_19 = ___value10; peoplePatrol_t2522972577 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); peoplePatrol_t2522972577 L_22 = ___value21; peoplePatrol_t2522972577 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<ConsoleApplication.LocalProcessing/StaffInformatino>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisStaffInformatino_t2939901716_m858714027_MetadataUsageId; extern "C" int32_t Array_compare_TisStaffInformatino_t2939901716_m858714027_gshared (Il2CppObject * __this /* static, unused */, StaffInformatino_t2939901716 ___value10, StaffInformatino_t2939901716 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisStaffInformatino_t2939901716_m858714027_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; StaffInformatino_t2939901716 L_2 = ___value10; StaffInformatino_t2939901716 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, StaffInformatino_t2939901716 , StaffInformatino_t2939901716 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<ConsoleApplication.LocalProcessing/StaffInformatino>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (StaffInformatino_t2939901716 )L_2, (StaffInformatino_t2939901716 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { StaffInformatino_t2939901716 L_8 = ___value10; StaffInformatino_t2939901716 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { StaffInformatino_t2939901716 L_11 = ___value10; StaffInformatino_t2939901716 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); StaffInformatino_t2939901716 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, StaffInformatino_t2939901716 >::Invoke(0 /* System.Int32 System.IComparable`1<ConsoleApplication.LocalProcessing/StaffInformatino>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (StaffInformatino_t2939901716 )L_14); return L_15; } IL_005c: { StaffInformatino_t2939901716 L_16 = ___value10; StaffInformatino_t2939901716 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { StaffInformatino_t2939901716 L_19 = ___value10; StaffInformatino_t2939901716 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); StaffInformatino_t2939901716 L_22 = ___value21; StaffInformatino_t2939901716 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<HighlightingSystem.HighlighterRenderer/Data>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisData_t3265512710_m2231104413_MetadataUsageId; extern "C" int32_t Array_compare_TisData_t3265512710_m2231104413_gshared (Il2CppObject * __this /* static, unused */, Data_t3265512710 ___value10, Data_t3265512710 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisData_t3265512710_m2231104413_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Data_t3265512710 L_2 = ___value10; Data_t3265512710 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Data_t3265512710 , Data_t3265512710 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<HighlightingSystem.HighlighterRenderer/Data>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Data_t3265512710 )L_2, (Data_t3265512710 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Data_t3265512710 L_8 = ___value10; Data_t3265512710 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Data_t3265512710 L_11 = ___value10; Data_t3265512710 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Data_t3265512710 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Data_t3265512710 >::Invoke(0 /* System.Int32 System.IComparable`1<HighlightingSystem.HighlighterRenderer/Data>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Data_t3265512710 )L_14); return L_15; } IL_005c: { Data_t3265512710 L_16 = ___value10; Data_t3265512710 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Data_t3265512710 L_19 = ___value10; Data_t3265512710 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Data_t3265512710 L_22 = ___value21; Data_t3265512710 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<LitJson.PropertyMetadata>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisPropertyMetadata_t4066634616_m618449510_MetadataUsageId; extern "C" int32_t Array_compare_TisPropertyMetadata_t4066634616_m618449510_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadata_t4066634616 ___value10, PropertyMetadata_t4066634616 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisPropertyMetadata_t4066634616_m618449510_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; PropertyMetadata_t4066634616 L_2 = ___value10; PropertyMetadata_t4066634616 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, PropertyMetadata_t4066634616 , PropertyMetadata_t4066634616 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<LitJson.PropertyMetadata>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (PropertyMetadata_t4066634616 )L_2, (PropertyMetadata_t4066634616 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { PropertyMetadata_t4066634616 L_8 = ___value10; PropertyMetadata_t4066634616 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { PropertyMetadata_t4066634616 L_11 = ___value10; PropertyMetadata_t4066634616 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); PropertyMetadata_t4066634616 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, PropertyMetadata_t4066634616 >::Invoke(0 /* System.Int32 System.IComparable`1<LitJson.PropertyMetadata>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (PropertyMetadata_t4066634616 )L_14); return L_15; } IL_005c: { PropertyMetadata_t4066634616 L_16 = ___value10; PropertyMetadata_t4066634616 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { PropertyMetadata_t4066634616 L_19 = ___value10; PropertyMetadata_t4066634616 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); PropertyMetadata_t4066634616 L_22 = ___value21; PropertyMetadata_t4066634616 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<PresetSelector/Preset>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisPreset_t2393284144_m949790279_MetadataUsageId; extern "C" int32_t Array_compare_TisPreset_t2393284144_m949790279_gshared (Il2CppObject * __this /* static, unused */, Preset_t2393284144 ___value10, Preset_t2393284144 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisPreset_t2393284144_m949790279_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Preset_t2393284144 L_2 = ___value10; Preset_t2393284144 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Preset_t2393284144 , Preset_t2393284144 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<PresetSelector/Preset>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Preset_t2393284144 )L_2, (Preset_t2393284144 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Preset_t2393284144 L_8 = ___value10; Preset_t2393284144 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Preset_t2393284144 L_11 = ___value10; Preset_t2393284144 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Preset_t2393284144 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Preset_t2393284144 >::Invoke(0 /* System.Int32 System.IComparable`1<PresetSelector/Preset>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Preset_t2393284144 )L_14); return L_15; } IL_005c: { Preset_t2393284144 L_16 = ___value10; Preset_t2393284144 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Preset_t2393284144 L_19 = ___value10; Preset_t2393284144 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Preset_t2393284144 L_22 = ___value21; Preset_t2393284144 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Boolean>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisBoolean_t476798718_m235360508_MetadataUsageId; extern "C" int32_t Array_compare_TisBoolean_t476798718_m235360508_gshared (Il2CppObject * __this /* static, unused */, bool ___value10, bool ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisBoolean_t476798718_m235360508_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; bool L_2 = ___value10; bool L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, bool, bool >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Boolean>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (bool)L_2, (bool)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { bool L_8 = ___value10; bool L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { bool L_11 = ___value10; bool L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); bool L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, bool >::Invoke(0 /* System.Int32 System.IComparable`1<System.Boolean>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (bool)L_14); return L_15; } IL_005c: { bool L_16 = ___value10; bool L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { bool L_19 = ___value10; bool L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); bool L_22 = ___value21; bool L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Byte>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisByte_t2862609660_m3931363838_MetadataUsageId; extern "C" int32_t Array_compare_TisByte_t2862609660_m3931363838_gshared (Il2CppObject * __this /* static, unused */, uint8_t ___value10, uint8_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisByte_t2862609660_m3931363838_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; uint8_t L_2 = ___value10; uint8_t L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, uint8_t, uint8_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Byte>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (uint8_t)L_2, (uint8_t)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { uint8_t L_8 = ___value10; uint8_t L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { uint8_t L_11 = ___value10; uint8_t L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); uint8_t L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, uint8_t >::Invoke(0 /* System.Int32 System.IComparable`1<System.Byte>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (uint8_t)L_14); return L_15; } IL_005c: { uint8_t L_16 = ___value10; uint8_t L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { uint8_t L_19 = ___value10; uint8_t L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); uint8_t L_22 = ___value21; uint8_t L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Char>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisChar_t2862622538_m2790586444_MetadataUsageId; extern "C" int32_t Array_compare_TisChar_t2862622538_m2790586444_gshared (Il2CppObject * __this /* static, unused */, Il2CppChar ___value10, Il2CppChar ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisChar_t2862622538_m2790586444_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Il2CppChar L_2 = ___value10; Il2CppChar L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Il2CppChar, Il2CppChar >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Char>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Il2CppChar)L_2, (Il2CppChar)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Il2CppChar L_8 = ___value10; Il2CppChar L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Il2CppChar L_11 = ___value10; Il2CppChar L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Il2CppChar L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Il2CppChar >::Invoke(0 /* System.Int32 System.IComparable`1<System.Char>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Il2CppChar)L_14); return L_15; } IL_005c: { Il2CppChar L_16 = ___value10; Il2CppChar L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Il2CppChar L_19 = ___value10; Il2CppChar L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Il2CppChar L_22 = ___value21; Il2CppChar L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisKeyValuePair_2_t1944668977_m2068200880_MetadataUsageId; extern "C" int32_t Array_compare_TisKeyValuePair_2_t1944668977_m2068200880_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2_t1944668977 ___value10, KeyValuePair_2_t1944668977 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisKeyValuePair_2_t1944668977_m2068200880_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; KeyValuePair_2_t1944668977 L_2 = ___value10; KeyValuePair_2_t1944668977 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, KeyValuePair_2_t1944668977 , KeyValuePair_2_t1944668977 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (KeyValuePair_2_t1944668977 )L_2, (KeyValuePair_2_t1944668977 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { KeyValuePair_2_t1944668977 L_8 = ___value10; KeyValuePair_2_t1944668977 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { KeyValuePair_2_t1944668977 L_11 = ___value10; KeyValuePair_2_t1944668977 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); KeyValuePair_2_t1944668977 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, KeyValuePair_2_t1944668977 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (KeyValuePair_2_t1944668977 )L_14); return L_15; } IL_005c: { KeyValuePair_2_t1944668977 L_16 = ___value10; KeyValuePair_2_t1944668977 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { KeyValuePair_2_t1944668977 L_19 = ___value10; KeyValuePair_2_t1944668977 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); KeyValuePair_2_t1944668977 L_22 = ___value21; KeyValuePair_2_t1944668977 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Double>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisDouble_t3868226565_m3812610695_MetadataUsageId; extern "C" int32_t Array_compare_TisDouble_t3868226565_m3812610695_gshared (Il2CppObject * __this /* static, unused */, double ___value10, double ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisDouble_t3868226565_m3812610695_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; double L_2 = ___value10; double L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, double, double >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Double>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (double)L_2, (double)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { double L_8 = ___value10; double L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { double L_11 = ___value10; double L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); double L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, double >::Invoke(0 /* System.Int32 System.IComparable`1<System.Double>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (double)L_14); return L_15; } IL_005c: { double L_16 = ___value10; double L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { double L_19 = ___value10; double L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); double L_22 = ___value21; double L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Int32>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisInt32_t1153838500_m761600802_MetadataUsageId; extern "C" int32_t Array_compare_TisInt32_t1153838500_m761600802_gshared (Il2CppObject * __this /* static, unused */, int32_t ___value10, int32_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisInt32_t1153838500_m761600802_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; int32_t L_2 = ___value10; int32_t L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (int32_t)L_2, (int32_t)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { int32_t L_8 = ___value10; int32_t L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { int32_t L_11 = ___value10; int32_t L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); int32_t L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* System.Int32 System.IComparable`1<System.Int32>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (int32_t)L_14); return L_15; } IL_005c: { int32_t L_16 = ___value10; int32_t L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { int32_t L_19 = ___value10; int32_t L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); int32_t L_22 = ___value21; int32_t L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Object>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisIl2CppObject_m585049589_MetadataUsageId; extern "C" int32_t Array_compare_TisIl2CppObject_m585049589_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject * ___value10, Il2CppObject * ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisIl2CppObject_m585049589_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Il2CppObject * L_2 = ___value10; Il2CppObject * L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Il2CppObject *, Il2CppObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Il2CppObject *)L_2, (Il2CppObject *)L_3); return L_4; } IL_000f: { Il2CppObject * L_5 = ___value10; if (L_5) { goto IL_002d; } } { Il2CppObject * L_6 = ___value21; if (L_6) { goto IL_002b; } } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { Il2CppObject * L_7 = ___value21; if (L_7) { goto IL_003a; } } { return 1; } IL_003a: { Il2CppObject * L_8 = ___value10; if (!((Il2CppObject*)IsInst(L_8, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Il2CppObject * L_9 = ___value10; Il2CppObject * L_10 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_11 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable`1<System.Object>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_9, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Il2CppObject *)L_10); return L_11; } IL_005c: { Il2CppObject * L_12 = ___value10; if (!((Il2CppObject *)IsInst(L_12, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Il2CppObject * L_13 = ___value10; Il2CppObject * L_14 = ___value21; NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_13, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_13, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_14); return L_15; } IL_0083: { String_t* L_16 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_16; String_t* L_17 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_18 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_19 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_17, (Il2CppObject *)L_18, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_20 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_20, (String_t*)L_19, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20); } } // System.Int32 System.Array::compare<System.Reflection.CustomAttributeNamedArgument>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202_MetadataUsageId; extern "C" int32_t Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgument_t3059612989 ___value10, CustomAttributeNamedArgument_t3059612989 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisCustomAttributeNamedArgument_t3059612989_m2096259202_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; CustomAttributeNamedArgument_t3059612989 L_2 = ___value10; CustomAttributeNamedArgument_t3059612989 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, CustomAttributeNamedArgument_t3059612989 , CustomAttributeNamedArgument_t3059612989 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Reflection.CustomAttributeNamedArgument>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (CustomAttributeNamedArgument_t3059612989 )L_2, (CustomAttributeNamedArgument_t3059612989 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { CustomAttributeNamedArgument_t3059612989 L_8 = ___value10; CustomAttributeNamedArgument_t3059612989 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { CustomAttributeNamedArgument_t3059612989 L_11 = ___value10; CustomAttributeNamedArgument_t3059612989 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); CustomAttributeNamedArgument_t3059612989 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, CustomAttributeNamedArgument_t3059612989 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeNamedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (CustomAttributeNamedArgument_t3059612989 )L_14); return L_15; } IL_005c: { CustomAttributeNamedArgument_t3059612989 L_16 = ___value10; CustomAttributeNamedArgument_t3059612989 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { CustomAttributeNamedArgument_t3059612989 L_19 = ___value10; CustomAttributeNamedArgument_t3059612989 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); CustomAttributeNamedArgument_t3059612989 L_22 = ___value21; CustomAttributeNamedArgument_t3059612989 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Reflection.CustomAttributeTypedArgument>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459_MetadataUsageId; extern "C" int32_t Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgument_t3301293422 ___value10, CustomAttributeTypedArgument_t3301293422 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisCustomAttributeTypedArgument_t3301293422_m2653985459_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; CustomAttributeTypedArgument_t3301293422 L_2 = ___value10; CustomAttributeTypedArgument_t3301293422 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, CustomAttributeTypedArgument_t3301293422 , CustomAttributeTypedArgument_t3301293422 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Reflection.CustomAttributeTypedArgument>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (CustomAttributeTypedArgument_t3301293422 )L_2, (CustomAttributeTypedArgument_t3301293422 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { CustomAttributeTypedArgument_t3301293422 L_8 = ___value10; CustomAttributeTypedArgument_t3301293422 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { CustomAttributeTypedArgument_t3301293422 L_11 = ___value10; CustomAttributeTypedArgument_t3301293422 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); CustomAttributeTypedArgument_t3301293422 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, CustomAttributeTypedArgument_t3301293422 >::Invoke(0 /* System.Int32 System.IComparable`1<System.Reflection.CustomAttributeTypedArgument>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (CustomAttributeTypedArgument_t3301293422 )L_14); return L_15; } IL_005c: { CustomAttributeTypedArgument_t3301293422 L_16 = ___value10; CustomAttributeTypedArgument_t3301293422 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { CustomAttributeTypedArgument_t3301293422 L_19 = ___value10; CustomAttributeTypedArgument_t3301293422 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); CustomAttributeTypedArgument_t3301293422 L_22 = ___value21; CustomAttributeTypedArgument_t3301293422 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<System.Single>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisSingle_t4291918972_m742879486_MetadataUsageId; extern "C" int32_t Array_compare_TisSingle_t4291918972_m742879486_gshared (Il2CppObject * __this /* static, unused */, float ___value10, float ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisSingle_t4291918972_m742879486_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; float L_2 = ___value10; float L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (float)L_2, (float)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { float L_8 = ___value10; float L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { float L_11 = ___value10; float L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); float L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, float >::Invoke(0 /* System.Int32 System.IComparable`1<System.Single>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (float)L_14); return L_15; } IL_005c: { float L_16 = ___value10; float L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { float L_19 = ___value10; float L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); float L_22 = ___value21; float L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Color>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisColor_t4194546905_m187609507_MetadataUsageId; extern "C" int32_t Array_compare_TisColor_t4194546905_m187609507_gshared (Il2CppObject * __this /* static, unused */, Color_t4194546905 ___value10, Color_t4194546905 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisColor_t4194546905_m187609507_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Color_t4194546905 L_2 = ___value10; Color_t4194546905 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Color_t4194546905 , Color_t4194546905 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Color>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Color_t4194546905 )L_2, (Color_t4194546905 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Color_t4194546905 L_8 = ___value10; Color_t4194546905 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Color_t4194546905 L_11 = ___value10; Color_t4194546905 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Color_t4194546905 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Color_t4194546905 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Color>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Color_t4194546905 )L_14); return L_15; } IL_005c: { Color_t4194546905 L_16 = ___value10; Color_t4194546905 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Color_t4194546905 L_19 = ___value10; Color_t4194546905 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Color_t4194546905 L_22 = ___value21; Color_t4194546905 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Color32>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisColor32_t598853688_m1852856962_MetadataUsageId; extern "C" int32_t Array_compare_TisColor32_t598853688_m1852856962_gshared (Il2CppObject * __this /* static, unused */, Color32_t598853688 ___value10, Color32_t598853688 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisColor32_t598853688_m1852856962_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Color32_t598853688 L_2 = ___value10; Color32_t598853688 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Color32_t598853688 , Color32_t598853688 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Color32>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Color32_t598853688 )L_2, (Color32_t598853688 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Color32_t598853688 L_8 = ___value10; Color32_t598853688 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Color32_t598853688 L_11 = ___value10; Color32_t598853688 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Color32_t598853688 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Color32_t598853688 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Color32>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Color32_t598853688 )L_14); return L_15; } IL_005c: { Color32_t598853688 L_16 = ___value10; Color32_t598853688 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Color32_t598853688 L_19 = ___value10; Color32_t598853688 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Color32_t598853688 L_22 = ___value21; Color32_t598853688 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.EventSystems.RaycastResult>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisRaycastResult_t3762661364_m1390053132_MetadataUsageId; extern "C" int32_t Array_compare_TisRaycastResult_t3762661364_m1390053132_gshared (Il2CppObject * __this /* static, unused */, RaycastResult_t3762661364 ___value10, RaycastResult_t3762661364 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisRaycastResult_t3762661364_m1390053132_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; RaycastResult_t3762661364 L_2 = ___value10; RaycastResult_t3762661364 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, RaycastResult_t3762661364 , RaycastResult_t3762661364 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.EventSystems.RaycastResult>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (RaycastResult_t3762661364 )L_2, (RaycastResult_t3762661364 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { RaycastResult_t3762661364 L_8 = ___value10; RaycastResult_t3762661364 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { RaycastResult_t3762661364 L_11 = ___value10; RaycastResult_t3762661364 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); RaycastResult_t3762661364 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, RaycastResult_t3762661364 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.EventSystems.RaycastResult>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (RaycastResult_t3762661364 )L_14); return L_15; } IL_005c: { RaycastResult_t3762661364 L_16 = ___value10; RaycastResult_t3762661364 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { RaycastResult_t3762661364 L_19 = ___value10; RaycastResult_t3762661364 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); RaycastResult_t3762661364 L_22 = ___value21; RaycastResult_t3762661364 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Experimental.Director.Playable>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisPlayable_t70832698_m2773860020_MetadataUsageId; extern "C" int32_t Array_compare_TisPlayable_t70832698_m2773860020_gshared (Il2CppObject * __this /* static, unused */, Playable_t70832698 ___value10, Playable_t70832698 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisPlayable_t70832698_m2773860020_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Playable_t70832698 L_2 = ___value10; Playable_t70832698 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Playable_t70832698 , Playable_t70832698 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Experimental.Director.Playable>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Playable_t70832698 )L_2, (Playable_t70832698 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Playable_t70832698 L_8 = ___value10; Playable_t70832698 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Playable_t70832698 L_11 = ___value10; Playable_t70832698 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Playable_t70832698 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Playable_t70832698 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Experimental.Director.Playable>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Playable_t70832698 )L_14); return L_15; } IL_005c: { Playable_t70832698 L_16 = ___value10; Playable_t70832698 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Playable_t70832698 L_19 = ___value10; Playable_t70832698 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Playable_t70832698 L_22 = ___value21; Playable_t70832698 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.UICharInfo>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisUICharInfo_t65807484_m3265641410_MetadataUsageId; extern "C" int32_t Array_compare_TisUICharInfo_t65807484_m3265641410_gshared (Il2CppObject * __this /* static, unused */, UICharInfo_t65807484 ___value10, UICharInfo_t65807484 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisUICharInfo_t65807484_m3265641410_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; UICharInfo_t65807484 L_2 = ___value10; UICharInfo_t65807484 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, UICharInfo_t65807484 , UICharInfo_t65807484 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.UICharInfo>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (UICharInfo_t65807484 )L_2, (UICharInfo_t65807484 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { UICharInfo_t65807484 L_8 = ___value10; UICharInfo_t65807484 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { UICharInfo_t65807484 L_11 = ___value10; UICharInfo_t65807484 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); UICharInfo_t65807484 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, UICharInfo_t65807484 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UICharInfo>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (UICharInfo_t65807484 )L_14); return L_15; } IL_005c: { UICharInfo_t65807484 L_16 = ___value10; UICharInfo_t65807484 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { UICharInfo_t65807484 L_19 = ___value10; UICharInfo_t65807484 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); UICharInfo_t65807484 L_22 = ___value21; UICharInfo_t65807484 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.UILineInfo>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisUILineInfo_t4113875482_m508388704_MetadataUsageId; extern "C" int32_t Array_compare_TisUILineInfo_t4113875482_m508388704_gshared (Il2CppObject * __this /* static, unused */, UILineInfo_t4113875482 ___value10, UILineInfo_t4113875482 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisUILineInfo_t4113875482_m508388704_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; UILineInfo_t4113875482 L_2 = ___value10; UILineInfo_t4113875482 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, UILineInfo_t4113875482 , UILineInfo_t4113875482 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.UILineInfo>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (UILineInfo_t4113875482 )L_2, (UILineInfo_t4113875482 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { UILineInfo_t4113875482 L_8 = ___value10; UILineInfo_t4113875482 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { UILineInfo_t4113875482 L_11 = ___value10; UILineInfo_t4113875482 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); UILineInfo_t4113875482 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, UILineInfo_t4113875482 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UILineInfo>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (UILineInfo_t4113875482 )L_14); return L_15; } IL_005c: { UILineInfo_t4113875482 L_16 = ___value10; UILineInfo_t4113875482 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { UILineInfo_t4113875482 L_19 = ___value10; UILineInfo_t4113875482 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); UILineInfo_t4113875482 L_22 = ___value21; UILineInfo_t4113875482 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.UIVertex>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisUIVertex_t4244065212_m3608347266_MetadataUsageId; extern "C" int32_t Array_compare_TisUIVertex_t4244065212_m3608347266_gshared (Il2CppObject * __this /* static, unused */, UIVertex_t4244065212 ___value10, UIVertex_t4244065212 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisUIVertex_t4244065212_m3608347266_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; UIVertex_t4244065212 L_2 = ___value10; UIVertex_t4244065212 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, UIVertex_t4244065212 , UIVertex_t4244065212 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.UIVertex>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (UIVertex_t4244065212 )L_2, (UIVertex_t4244065212 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { UIVertex_t4244065212 L_8 = ___value10; UIVertex_t4244065212 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { UIVertex_t4244065212 L_11 = ___value10; UIVertex_t4244065212 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); UIVertex_t4244065212 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, UIVertex_t4244065212 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.UIVertex>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (UIVertex_t4244065212 )L_14); return L_15; } IL_005c: { UIVertex_t4244065212 L_16 = ___value10; UIVertex_t4244065212 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { UIVertex_t4244065212 L_19 = ___value10; UIVertex_t4244065212 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); UIVertex_t4244065212 L_22 = ___value21; UIVertex_t4244065212 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Vector2>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisVector2_t4282066565_m384371407_MetadataUsageId; extern "C" int32_t Array_compare_TisVector2_t4282066565_m384371407_gshared (Il2CppObject * __this /* static, unused */, Vector2_t4282066565 ___value10, Vector2_t4282066565 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisVector2_t4282066565_m384371407_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Vector2_t4282066565 L_2 = ___value10; Vector2_t4282066565 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Vector2_t4282066565 , Vector2_t4282066565 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector2>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Vector2_t4282066565 )L_2, (Vector2_t4282066565 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Vector2_t4282066565 L_8 = ___value10; Vector2_t4282066565 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Vector2_t4282066565 L_11 = ___value10; Vector2_t4282066565 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Vector2_t4282066565 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Vector2_t4282066565 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector2>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Vector2_t4282066565 )L_14); return L_15; } IL_005c: { Vector2_t4282066565 L_16 = ___value10; Vector2_t4282066565 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Vector2_t4282066565 L_19 = ___value10; Vector2_t4282066565 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Vector2_t4282066565 L_22 = ___value21; Vector2_t4282066565 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Vector3>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisVector3_t4282066566_m376612048_MetadataUsageId; extern "C" int32_t Array_compare_TisVector3_t4282066566_m376612048_gshared (Il2CppObject * __this /* static, unused */, Vector3_t4282066566 ___value10, Vector3_t4282066566 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisVector3_t4282066566_m376612048_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Vector3_t4282066566 L_2 = ___value10; Vector3_t4282066566 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Vector3_t4282066566 , Vector3_t4282066566 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector3>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Vector3_t4282066566 )L_2, (Vector3_t4282066566 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Vector3_t4282066566 L_8 = ___value10; Vector3_t4282066566 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Vector3_t4282066566 L_11 = ___value10; Vector3_t4282066566 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Vector3_t4282066566 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Vector3_t4282066566 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector3>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Vector3_t4282066566 )L_14); return L_15; } IL_005c: { Vector3_t4282066566 L_16 = ___value10; Vector3_t4282066566 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Vector3_t4282066566 L_19 = ___value10; Vector3_t4282066566 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Vector3_t4282066566 L_22 = ___value21; Vector3_t4282066566 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<UnityEngine.Vector4>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisVector4_t4282066567_m368852689_MetadataUsageId; extern "C" int32_t Array_compare_TisVector4_t4282066567_m368852689_gshared (Il2CppObject * __this /* static, unused */, Vector4_t4282066567 ___value10, Vector4_t4282066567 ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisVector4_t4282066567_m368852689_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; Vector4_t4282066567 L_2 = ___value10; Vector4_t4282066567 L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, Vector4_t4282066567 , Vector4_t4282066567 >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<UnityEngine.Vector4>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (Vector4_t4282066567 )L_2, (Vector4_t4282066567 )L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { Vector4_t4282066567 L_8 = ___value10; Vector4_t4282066567 L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { Vector4_t4282066567 L_11 = ___value10; Vector4_t4282066567 L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); Vector4_t4282066567 L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, Vector4_t4282066567 >::Invoke(0 /* System.Int32 System.IComparable`1<UnityEngine.Vector4>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (Vector4_t4282066567 )L_14); return L_15; } IL_005c: { Vector4_t4282066567 L_16 = ___value10; Vector4_t4282066567 L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { Vector4_t4282066567 L_19 = ___value10; Vector4_t4282066567 L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); Vector4_t4282066567 L_22 = ___value21; Vector4_t4282066567 L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::compare<WMG_Data_Source/WMG_VariableTypes>(T,T,System.Collections.Generic.IComparer`1<T>) extern Il2CppClass* IComparable_t1391370361_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* String_t_il2cpp_TypeInfo_var; extern Il2CppClass* InvalidOperationException_t1589641621_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2670581699; extern const uint32_t Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041_MetadataUsageId; extern "C" int32_t Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041_gshared (Il2CppObject * __this /* static, unused */, int32_t ___value10, int32_t ___value21, Il2CppObject* ___comparer2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_compare_TisWMG_VariableTypes_t4265297442_m2597642041_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; int32_t G_B6_0 = 0; { Il2CppObject* L_0 = ___comparer2; if (!L_0) { goto IL_000f; } } { Il2CppObject* L_1 = ___comparer2; int32_t L_2 = ___value10; int32_t L_3 = ___value21; NullCheck((Il2CppObject*)L_1); int32_t L_4 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<WMG_Data_Source/WMG_VariableTypes>::Compare(T,T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (Il2CppObject*)L_1, (int32_t)L_2, (int32_t)L_3); return L_4; } IL_000f: { goto IL_002d; } { goto IL_002b; } { G_B6_0 = 0; goto IL_002c; } IL_002b: { G_B6_0 = (-1); } IL_002c: { return G_B6_0; } IL_002d: { goto IL_003a; } { return 1; } IL_003a: { int32_t L_8 = ___value10; int32_t L_9 = L_8; Il2CppObject * L_10 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_9); if (!((Il2CppObject*)IsInst(L_10, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))) { goto IL_005c; } } { int32_t L_11 = ___value10; int32_t L_12 = L_11; Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_12); int32_t L_14 = ___value21; NullCheck((Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2)))); int32_t L_15 = InterfaceFuncInvoker1< int32_t, int32_t >::Invoke(0 /* System.Int32 System.IComparable`1<WMG_Data_Source/WMG_VariableTypes>::CompareTo(T) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 2), (Il2CppObject*)((Il2CppObject*)Castclass(L_13, IL2CPP_RGCTX_DATA(method->rgctx_data, 2))), (int32_t)L_14); return L_15; } IL_005c: { int32_t L_16 = ___value10; int32_t L_17 = L_16; Il2CppObject * L_18 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_17); if (!((Il2CppObject *)IsInst(L_18, IComparable_t1391370361_il2cpp_TypeInfo_var))) { goto IL_0083; } } { int32_t L_19 = ___value10; int32_t L_20 = L_19; Il2CppObject * L_21 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_20); int32_t L_22 = ___value21; int32_t L_23 = L_22; Il2CppObject * L_24 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_23); NullCheck((Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var))); int32_t L_25 = InterfaceFuncInvoker1< int32_t, Il2CppObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t1391370361_il2cpp_TypeInfo_var, (Il2CppObject *)((Il2CppObject *)Castclass(L_21, IComparable_t1391370361_il2cpp_TypeInfo_var)), (Il2CppObject *)L_24); return L_25; } IL_0083: { String_t* L_26 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2670581699, /*hidden argument*/NULL); V_0 = (String_t*)L_26; String_t* L_27 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_28 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2471250780(NULL /*static, unused*/, (String_t*)L_27, (Il2CppObject *)L_28, /*hidden argument*/NULL); InvalidOperationException_t1589641621 * L_30 = (InvalidOperationException_t1589641621 *)il2cpp_codegen_object_new(InvalidOperationException_t1589641621_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m1485483280(L_30, (String_t*)L_29, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_30); } } // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral103668165; extern const uint32_t Array_FindIndex_TisIl2CppObject_m1464408032_MetadataUsageId; extern "C" int32_t Array_FindIndex_TisIl2CppObject_m1464408032_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t3781873254 * ___match3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindIndex_TisIl2CppObject_m1464408032_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Predicate_1_t3781873254 * L_2 = ___match3; if (L_2) { goto IL_0022; } } { ArgumentNullException_t3573189601 * L_3 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_3, (String_t*)_stringLiteral103668165, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { int32_t L_4 = ___startIndex1; ObjectU5BU5D_t1108656482* L_5 = ___array0; NullCheck(L_5); if ((((int32_t)L_4) > ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))))) { goto IL_0036; } } { int32_t L_6 = ___startIndex1; int32_t L_7 = ___count2; ObjectU5BU5D_t1108656482* L_8 = ___array0; NullCheck(L_8); if ((((int32_t)((int32_t)((int32_t)L_6+(int32_t)L_7))) <= ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_9 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_003c: { int32_t L_10 = ___startIndex1; V_0 = (int32_t)L_10; goto IL_005b; } IL_0043: { Predicate_1_t3781873254 * L_11 = ___match3; ObjectU5BU5D_t1108656482* L_12 = ___array0; int32_t L_13 = V_0; NullCheck(L_12); IL2CPP_ARRAY_BOUNDS_CHECK(L_12, L_13); int32_t L_14 = L_13; Il2CppObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); NullCheck((Predicate_1_t3781873254 *)L_11); bool L_16 = (( bool (*) (Predicate_1_t3781873254 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3781873254 *)L_11, (Il2CppObject *)L_15, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (!L_16) { goto IL_0057; } } { int32_t L_17 = V_0; return L_17; } IL_0057: { int32_t L_18 = V_0; V_0 = (int32_t)((int32_t)((int32_t)L_18+(int32_t)1)); } IL_005b: { int32_t L_19 = V_0; int32_t L_20 = ___startIndex1; int32_t L_21 = ___count2; if ((((int32_t)L_19) < ((int32_t)((int32_t)((int32_t)L_20+(int32_t)L_21))))) { goto IL_0043; } } { return (-1); } } // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_FindIndex_TisIl2CppObject_m1854445973_MetadataUsageId; extern "C" int32_t Array_FindIndex_TisIl2CppObject_m1854445973_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, Predicate_1_t3781873254 * ___match2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindIndex_TisIl2CppObject_m1854445973_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; int32_t L_3 = ___startIndex1; ObjectU5BU5D_t1108656482* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = ___startIndex1; Predicate_1_t3781873254 * L_6 = ___match2; int32_t L_7 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)L_3, (int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length))))-(int32_t)L_5)), (Predicate_1_t3781873254 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_7; } } // System.Int32 System.Array::FindIndex<System.Object>(T[],System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_FindIndex_TisIl2CppObject_m445609408_MetadataUsageId; extern "C" int32_t Array_FindIndex_TisIl2CppObject_m445609408_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindIndex_TisIl2CppObject_m445609408_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; ObjectU5BU5D_t1108656482* L_3 = ___array0; NullCheck(L_3); Predicate_1_t3781873254 * L_4 = ___match1; int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length)))), (Predicate_1_t3781873254 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Int32,System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral103668165; extern const uint32_t Array_FindLastIndex_TisIl2CppObject_m1171213802_MetadataUsageId; extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m1171213802_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, int32_t ___count2, Predicate_1_t3781873254 * ___match3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindLastIndex_TisIl2CppObject_m1171213802_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Predicate_1_t3781873254 * L_2 = ___match3; if (L_2) { goto IL_0022; } } { ArgumentNullException_t3573189601 * L_3 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_3, (String_t*)_stringLiteral103668165, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { int32_t L_4 = ___startIndex1; ObjectU5BU5D_t1108656482* L_5 = ___array0; NullCheck(L_5); if ((((int32_t)L_4) > ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))))) { goto IL_0036; } } { int32_t L_6 = ___startIndex1; int32_t L_7 = ___count2; ObjectU5BU5D_t1108656482* L_8 = ___array0; NullCheck(L_8); if ((((int32_t)((int32_t)((int32_t)L_6+(int32_t)L_7))) <= ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_8)->max_length))))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_9 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9); } IL_003c: { int32_t L_10 = ___startIndex1; int32_t L_11 = ___count2; V_0 = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_10+(int32_t)L_11))-(int32_t)1)); goto IL_005f; } IL_0047: { Predicate_1_t3781873254 * L_12 = ___match3; ObjectU5BU5D_t1108656482* L_13 = ___array0; int32_t L_14 = V_0; NullCheck(L_13); IL2CPP_ARRAY_BOUNDS_CHECK(L_13, L_14); int32_t L_15 = L_14; Il2CppObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); NullCheck((Predicate_1_t3781873254 *)L_12); bool L_17 = (( bool (*) (Predicate_1_t3781873254 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Predicate_1_t3781873254 *)L_12, (Il2CppObject *)L_16, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); if (!L_17) { goto IL_005b; } } { int32_t L_18 = V_0; return L_18; } IL_005b: { int32_t L_19 = V_0; V_0 = (int32_t)((int32_t)((int32_t)L_19-(int32_t)1)); } IL_005f: { int32_t L_20 = V_0; int32_t L_21 = ___startIndex1; if ((((int32_t)L_20) >= ((int32_t)L_21))) { goto IL_0047; } } { return (-1); } } // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Int32,System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern const uint32_t Array_FindLastIndex_TisIl2CppObject_m2846972747_MetadataUsageId; extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m2846972747_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, int32_t ___startIndex1, Predicate_1_t3781873254 * ___match2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindLastIndex_TisIl2CppObject_m2846972747_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_000c; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m2162372070(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_000c: { ObjectU5BU5D_t1108656482* L_2 = ___array0; int32_t L_3 = ___startIndex1; ObjectU5BU5D_t1108656482* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = ___startIndex1; Predicate_1_t3781873254 * L_6 = ___match2; int32_t L_7 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)L_3, (int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length))))-(int32_t)L_5)), (Predicate_1_t3781873254 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_7; } } // System.Int32 System.Array::FindLastIndex<System.Object>(T[],System.Predicate`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_FindLastIndex_TisIl2CppObject_m1979720778_MetadataUsageId; extern "C" int32_t Array_FindLastIndex_TisIl2CppObject_m1979720778_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Predicate_1_t3781873254 * ___match1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_FindLastIndex_TisIl2CppObject_m1979720778_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; ObjectU5BU5D_t1108656482* L_3 = ___array0; NullCheck(L_3); Predicate_1_t3781873254 * L_4 = ___match1; int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, int32_t, int32_t, Predicate_1_t3781873254 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_3)->max_length)))), (Predicate_1_t3781873254 *)L_4, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<AllSingleton/Contacts>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisContacts_t352143704_m3821923795_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisContacts_t352143704_m3821923795_gshared (Il2CppObject * __this /* static, unused */, ContactsU5BU5D_t2097638985* ___array0, Contacts_t352143704 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisContacts_t352143704_m3821923795_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3754947881 * V_1 = NULL; int32_t V_2 = 0; { ContactsU5BU5D_t2097638985* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; ContactsU5BU5D_t2097638985* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; ContactsU5BU5D_t2097638985* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3754947881 * L_13 = (( EqualityComparer_1_t3754947881 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3754947881 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3754947881 * L_15 = V_1; ContactsU5BU5D_t2097638985* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Contacts_t352143704 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Contacts_t352143704 L_20 = ___value1; NullCheck((EqualityComparer_1_t3754947881 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Contacts_t352143704 , Contacts_t352143704 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<AllSingleton/Contacts>::Equals(T,T) */, (EqualityComparer_1_t3754947881 *)L_15, (Contacts_t352143704 )L_19, (Contacts_t352143704 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<AllSingleton/detailsProperty>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937_gshared (Il2CppObject * __this /* static, unused */, detailsPropertyU5BU5D_t3868157767* ___array0, detailsProperty_t1057943986 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisdetailsProperty_t1057943986_m2625099937_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t165780867 * V_1 = NULL; int32_t V_2 = 0; { detailsPropertyU5BU5D_t3868157767* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; detailsPropertyU5BU5D_t3868157767* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; detailsPropertyU5BU5D_t3868157767* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t165780867 * L_13 = (( EqualityComparer_1_t165780867 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t165780867 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t165780867 * L_15 = V_1; detailsPropertyU5BU5D_t3868157767* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; detailsProperty_t1057943986 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); detailsProperty_t1057943986 L_20 = ___value1; NullCheck((EqualityComparer_1_t165780867 *)L_15); bool L_21 = VirtFuncInvoker2< bool, detailsProperty_t1057943986 , detailsProperty_t1057943986 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<AllSingleton/detailsProperty>::Equals(T,T) */, (EqualityComparer_1_t165780867 *)L_15, (detailsProperty_t1057943986 )L_19, (detailsProperty_t1057943986 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<AllSingleton/DeviceDetailedInformation>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, DeviceDetailedInformation_t4234054081 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDeviceDetailedInformation_t4234054081_m292656240_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3341890962 * V_1 = NULL; int32_t V_2 = 0; { DeviceDetailedInformationU5BU5D_t1518729756* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; DeviceDetailedInformationU5BU5D_t1518729756* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; DeviceDetailedInformationU5BU5D_t1518729756* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3341890962 * L_13 = (( EqualityComparer_1_t3341890962 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3341890962 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3341890962 * L_15 = V_1; DeviceDetailedInformationU5BU5D_t1518729756* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; DeviceDetailedInformation_t4234054081 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); DeviceDetailedInformation_t4234054081 L_20 = ___value1; NullCheck((EqualityComparer_1_t3341890962 *)L_15); bool L_21 = VirtFuncInvoker2< bool, DeviceDetailedInformation_t4234054081 , DeviceDetailedInformation_t4234054081 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<AllSingleton/DeviceDetailedInformation>::Equals(T,T) */, (EqualityComparer_1_t3341890962 *)L_15, (DeviceDetailedInformation_t4234054081 )L_19, (DeviceDetailedInformation_t4234054081 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<AllSingleton/surveyProperty>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TissurveyProperty_t884569204_m2914196847_MetadataUsageId; extern "C" int32_t Array_IndexOf_TissurveyProperty_t884569204_m2914196847_gshared (Il2CppObject * __this /* static, unused */, surveyPropertyU5BU5D_t3751806781* ___array0, surveyProperty_t884569204 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TissurveyProperty_t884569204_m2914196847_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t4287373381 * V_1 = NULL; int32_t V_2 = 0; { surveyPropertyU5BU5D_t3751806781* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; surveyPropertyU5BU5D_t3751806781* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; surveyPropertyU5BU5D_t3751806781* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t4287373381 * L_13 = (( EqualityComparer_1_t4287373381 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t4287373381 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t4287373381 * L_15 = V_1; surveyPropertyU5BU5D_t3751806781* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; surveyProperty_t884569204 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); surveyProperty_t884569204 L_20 = ___value1; NullCheck((EqualityComparer_1_t4287373381 *)L_15); bool L_21 = VirtFuncInvoker2< bool, surveyProperty_t884569204 , surveyProperty_t884569204 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<AllSingleton/surveyProperty>::Equals(T,T) */, (EqualityComparer_1_t4287373381 *)L_15, (surveyProperty_t884569204 )L_19, (surveyProperty_t884569204 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695_gshared (Il2CppObject * __this /* static, unused */, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, DeviceDetailedInformation_t3668321760 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDeviceDetailedInformation_t3668321760_m4141455695_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2776158641 * V_1 = NULL; int32_t V_2 = 0; { DeviceDetailedInformationU5BU5D_t2899977889* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; DeviceDetailedInformationU5BU5D_t2899977889* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; DeviceDetailedInformationU5BU5D_t2899977889* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2776158641 * L_13 = (( EqualityComparer_1_t2776158641 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2776158641 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2776158641 * L_15 = V_1; DeviceDetailedInformationU5BU5D_t2899977889* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; DeviceDetailedInformation_t3668321760 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); DeviceDetailedInformation_t3668321760 L_20 = ___value1; NullCheck((EqualityComparer_1_t2776158641 *)L_15); bool L_21 = VirtFuncInvoker2< bool, DeviceDetailedInformation_t3668321760 , DeviceDetailedInformation_t3668321760 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>::Equals(T,T) */, (EqualityComparer_1_t2776158641 *)L_15, (DeviceDetailedInformation_t3668321760 )L_19, (DeviceDetailedInformation_t3668321760 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/DeviceProperties>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250_gshared (Il2CppObject * __this /* static, unused */, DevicePropertiesU5BU5D_t665138486* ___array0, DeviceProperties_t2492701999 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDeviceProperties_t2492701999_m2600486250_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1600538880 * V_1 = NULL; int32_t V_2 = 0; { DevicePropertiesU5BU5D_t665138486* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; DevicePropertiesU5BU5D_t665138486* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; DevicePropertiesU5BU5D_t665138486* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1600538880 * L_13 = (( EqualityComparer_1_t1600538880 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1600538880 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1600538880 * L_15 = V_1; DevicePropertiesU5BU5D_t665138486* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; DeviceProperties_t2492701999 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); DeviceProperties_t2492701999 L_20 = ___value1; NullCheck((EqualityComparer_1_t1600538880 *)L_15); bool L_21 = VirtFuncInvoker2< bool, DeviceProperties_t2492701999 , DeviceProperties_t2492701999 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<ConsoleApplication.LocalProcessing/DeviceProperties>::Equals(T,T) */, (EqualityComparer_1_t1600538880 *)L_15, (DeviceProperties_t2492701999 )L_19, (DeviceProperties_t2492701999 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428_MetadataUsageId; extern "C" int32_t Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428_gshared (Il2CppObject * __this /* static, unused */, peopleOrderPatrolU5BU5D_t635926856* ___array0, peopleOrderPatrol_t4292956421 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TispeopleOrderPatrol_t4292956421_m531461428_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3400793302 * V_1 = NULL; int32_t V_2 = 0; { peopleOrderPatrolU5BU5D_t635926856* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; peopleOrderPatrolU5BU5D_t635926856* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; peopleOrderPatrolU5BU5D_t635926856* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3400793302 * L_13 = (( EqualityComparer_1_t3400793302 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3400793302 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3400793302 * L_15 = V_1; peopleOrderPatrolU5BU5D_t635926856* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; peopleOrderPatrol_t4292956421 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); peopleOrderPatrol_t4292956421 L_20 = ___value1; NullCheck((EqualityComparer_1_t3400793302 *)L_15); bool L_21 = VirtFuncInvoker2< bool, peopleOrderPatrol_t4292956421 , peopleOrderPatrol_t4292956421 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<ConsoleApplication.LocalProcessing/peopleOrderPatrol>::Equals(T,T) */, (EqualityComparer_1_t3400793302 *)L_15, (peopleOrderPatrol_t4292956421 )L_19, (peopleOrderPatrol_t4292956421 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/peoplePatrol>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700_MetadataUsageId; extern "C" int32_t Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700_gshared (Il2CppObject * __this /* static, unused */, peoplePatrolU5BU5D_t2360067772* ___array0, peoplePatrol_t2522972577 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TispeoplePatrol_t2522972577_m3150532700_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1630809458 * V_1 = NULL; int32_t V_2 = 0; { peoplePatrolU5BU5D_t2360067772* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; peoplePatrolU5BU5D_t2360067772* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; peoplePatrolU5BU5D_t2360067772* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1630809458 * L_13 = (( EqualityComparer_1_t1630809458 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1630809458 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1630809458 * L_15 = V_1; peoplePatrolU5BU5D_t2360067772* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; peoplePatrol_t2522972577 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); peoplePatrol_t2522972577 L_20 = ___value1; NullCheck((EqualityComparer_1_t1630809458 *)L_15); bool L_21 = VirtFuncInvoker2< bool, peoplePatrol_t2522972577 , peoplePatrol_t2522972577 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<ConsoleApplication.LocalProcessing/peoplePatrol>::Equals(T,T) */, (EqualityComparer_1_t1630809458 *)L_15, (peoplePatrol_t2522972577 )L_19, (peoplePatrol_t2522972577 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<ConsoleApplication.LocalProcessing/StaffInformatino>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191_gshared (Il2CppObject * __this /* static, unused */, StaffInformatinoU5BU5D_t2925930013* ___array0, StaffInformatino_t2939901716 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisStaffInformatino_t2939901716_m3999090191_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2047738597 * V_1 = NULL; int32_t V_2 = 0; { StaffInformatinoU5BU5D_t2925930013* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; StaffInformatinoU5BU5D_t2925930013* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; StaffInformatinoU5BU5D_t2925930013* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2047738597 * L_13 = (( EqualityComparer_1_t2047738597 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2047738597 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2047738597 * L_15 = V_1; StaffInformatinoU5BU5D_t2925930013* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; StaffInformatino_t2939901716 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); StaffInformatino_t2939901716 L_20 = ___value1; NullCheck((EqualityComparer_1_t2047738597 *)L_15); bool L_21 = VirtFuncInvoker2< bool, StaffInformatino_t2939901716 , StaffInformatino_t2939901716 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<ConsoleApplication.LocalProcessing/StaffInformatino>::Equals(T,T) */, (EqualityComparer_1_t2047738597 *)L_15, (StaffInformatino_t2939901716 )L_19, (StaffInformatino_t2939901716 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<HighlightingSystem.HighlighterRenderer/Data>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisData_t3265512710_m2483469697_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisData_t3265512710_m2483469697_gshared (Il2CppObject * __this /* static, unused */, DataU5BU5D_t883120163* ___array0, Data_t3265512710 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisData_t3265512710_m2483469697_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2373349591 * V_1 = NULL; int32_t V_2 = 0; { DataU5BU5D_t883120163* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; DataU5BU5D_t883120163* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; DataU5BU5D_t883120163* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2373349591 * L_13 = (( EqualityComparer_1_t2373349591 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2373349591 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2373349591 * L_15 = V_1; DataU5BU5D_t883120163* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Data_t3265512710 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Data_t3265512710 L_20 = ___value1; NullCheck((EqualityComparer_1_t2373349591 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Data_t3265512710 , Data_t3265512710 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<HighlightingSystem.HighlighterRenderer/Data>::Equals(T,T) */, (EqualityComparer_1_t2373349591 *)L_15, (Data_t3265512710 )L_19, (Data_t3265512710 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<LitJson.PropertyMetadata>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210_gshared (Il2CppObject * __this /* static, unused */, PropertyMetadataU5BU5D_t2846646185* ___array0, PropertyMetadata_t4066634616 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisPropertyMetadata_t4066634616_m1609630210_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3174471497 * V_1 = NULL; int32_t V_2 = 0; { PropertyMetadataU5BU5D_t2846646185* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; PropertyMetadataU5BU5D_t2846646185* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; PropertyMetadataU5BU5D_t2846646185* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3174471497 * L_13 = (( EqualityComparer_1_t3174471497 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3174471497 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3174471497 * L_15 = V_1; PropertyMetadataU5BU5D_t2846646185* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; PropertyMetadata_t4066634616 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); PropertyMetadata_t4066634616 L_20 = ___value1; NullCheck((EqualityComparer_1_t3174471497 *)L_15); bool L_21 = VirtFuncInvoker2< bool, PropertyMetadata_t4066634616 , PropertyMetadata_t4066634616 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<LitJson.PropertyMetadata>::Equals(T,T) */, (EqualityComparer_1_t3174471497 *)L_15, (PropertyMetadata_t4066634616 )L_19, (PropertyMetadata_t4066634616 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<PresetSelector/Preset>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisPreset_t2393284144_m2567179435_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisPreset_t2393284144_m2567179435_gshared (Il2CppObject * __this /* static, unused */, PresetU5BU5D_t864269073* ___array0, Preset_t2393284144 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisPreset_t2393284144_m2567179435_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1501121025 * V_1 = NULL; int32_t V_2 = 0; { PresetU5BU5D_t864269073* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; PresetU5BU5D_t864269073* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; PresetU5BU5D_t864269073* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1501121025 * L_13 = (( EqualityComparer_1_t1501121025 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1501121025 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1501121025 * L_15 = V_1; PresetU5BU5D_t864269073* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Preset_t2393284144 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Preset_t2393284144 L_20 = ___value1; NullCheck((EqualityComparer_1_t1501121025 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Preset_t2393284144 , Preset_t2393284144 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<PresetSelector/Preset>::Equals(T,T) */, (EqualityComparer_1_t1501121025 *)L_15, (Preset_t2393284144 )L_19, (Preset_t2393284144 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Boolean>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisBoolean_t476798718_m1229324824_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisBoolean_t476798718_m1229324824_gshared (Il2CppObject * __this /* static, unused */, BooleanU5BU5D_t3456302923* ___array0, bool ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisBoolean_t476798718_m1229324824_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3879602895 * V_1 = NULL; int32_t V_2 = 0; { BooleanU5BU5D_t3456302923* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; BooleanU5BU5D_t3456302923* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; BooleanU5BU5D_t3456302923* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3879602895 * L_13 = (( EqualityComparer_1_t3879602895 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3879602895 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3879602895 * L_15 = V_1; BooleanU5BU5D_t3456302923* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; bool L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); bool L_20 = ___value1; NullCheck((EqualityComparer_1_t3879602895 *)L_15); bool L_21 = VirtFuncInvoker2< bool, bool, bool >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Boolean>::Equals(T,T) */, (EqualityComparer_1_t3879602895 *)L_15, (bool)L_19, (bool)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Byte>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisByte_t2862609660_m2371551650_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisByte_t2862609660_m2371551650_gshared (Il2CppObject * __this /* static, unused */, ByteU5BU5D_t4260760469* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisByte_t2862609660_m2371551650_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1970446541 * V_1 = NULL; int32_t V_2 = 0; { ByteU5BU5D_t4260760469* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; ByteU5BU5D_t4260760469* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; ByteU5BU5D_t4260760469* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1970446541 * L_13 = (( EqualityComparer_1_t1970446541 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1970446541 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1970446541 * L_15 = V_1; ByteU5BU5D_t4260760469* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); uint8_t L_20 = ___value1; NullCheck((EqualityComparer_1_t1970446541 *)L_15); bool L_21 = VirtFuncInvoker2< bool, uint8_t, uint8_t >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Byte>::Equals(T,T) */, (EqualityComparer_1_t1970446541 *)L_15, (uint8_t)L_19, (uint8_t)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Char>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisChar_t2862622538_m3491153917_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisChar_t2862622538_m3491153917_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* ___array0, Il2CppChar ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisChar_t2862622538_m3491153917_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CharU5BU5D_t3324145743* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { CharU5BU5D_t3324145743* L_2 = ___array0; Il2CppChar L_3 = ___value1; CharU5BU5D_t3324145743* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, CharU5BU5D_t3324145743*, Il2CppChar, int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (CharU5BU5D_t3324145743*)L_2, (Il2CppChar)L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Char>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisChar_t2862622538_m953753712_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisChar_t2862622538_m953753712_gshared (Il2CppObject * __this /* static, unused */, CharU5BU5D_t3324145743* ___array0, Il2CppChar ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisChar_t2862622538_m953753712_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1970459419 * V_1 = NULL; int32_t V_2 = 0; { CharU5BU5D_t3324145743* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; CharU5BU5D_t3324145743* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; CharU5BU5D_t3324145743* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1970459419 * L_13 = (( EqualityComparer_1_t1970459419 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1970459419 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1970459419 * L_15 = V_1; CharU5BU5D_t3324145743* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Il2CppChar L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Il2CppChar L_20 = ___value1; NullCheck((EqualityComparer_1_t1970459419 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Char>::Equals(T,T) */, (EqualityComparer_1_t1970459419 *)L_15, (Il2CppChar)L_19, (Il2CppChar)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324_gshared (Il2CppObject * __this /* static, unused */, KeyValuePair_2U5BU5D_t2483180780* ___array0, KeyValuePair_2_t1944668977 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisKeyValuePair_2_t1944668977_m19109324_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t1052505858 * V_1 = NULL; int32_t V_2 = 0; { KeyValuePair_2U5BU5D_t2483180780* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; KeyValuePair_2U5BU5D_t2483180780* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; KeyValuePair_2U5BU5D_t2483180780* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t1052505858 * L_13 = (( EqualityComparer_1_t1052505858 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t1052505858 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t1052505858 * L_15 = V_1; KeyValuePair_2U5BU5D_t2483180780* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; KeyValuePair_2_t1944668977 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); KeyValuePair_2_t1944668977 L_20 = ___value1; NullCheck((EqualityComparer_1_t1052505858 *)L_15); bool L_21 = VirtFuncInvoker2< bool, KeyValuePair_2_t1944668977 , KeyValuePair_2_t1944668977 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Equals(T,T) */, (EqualityComparer_1_t1052505858 *)L_15, (KeyValuePair_2_t1944668977 )L_19, (KeyValuePair_2_t1944668977 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Double>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisDouble_t3868226565_m3057200363_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisDouble_t3868226565_m3057200363_gshared (Il2CppObject * __this /* static, unused */, DoubleU5BU5D_t2145413704* ___array0, double ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisDouble_t3868226565_m3057200363_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2976063446 * V_1 = NULL; int32_t V_2 = 0; { DoubleU5BU5D_t2145413704* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; DoubleU5BU5D_t2145413704* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; DoubleU5BU5D_t2145413704* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2976063446 * L_13 = (( EqualityComparer_1_t2976063446 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2976063446 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2976063446 * L_15 = V_1; DoubleU5BU5D_t2145413704* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; double L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); double L_20 = ___value1; NullCheck((EqualityComparer_1_t2976063446 *)L_15); bool L_21 = VirtFuncInvoker2< bool, double, double >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Double>::Equals(T,T) */, (EqualityComparer_1_t2976063446 *)L_15, (double)L_19, (double)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Int32>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisInt32_t1153838500_m1482877264_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisInt32_t1153838500_m1482877264_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32_t1153838500_m1482877264_MetadataUsageId); s_Il2CppMethodIntialized = true; } { Int32U5BU5D_t3230847821* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Int32U5BU5D_t3230847821* L_2 = ___array0; int32_t L_3 = ___value1; Int32U5BU5D_t3230847821* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, Int32U5BU5D_t3230847821*, int32_t, int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Int32U5BU5D_t3230847821*)L_2, (int32_t)L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Int32>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisInt32_t1153838500_m877823422_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisInt32_t1153838500_m877823422_gshared (Il2CppObject * __this /* static, unused */, Int32U5BU5D_t3230847821* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisInt32_t1153838500_m877823422_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t261675381 * V_1 = NULL; int32_t V_2 = 0; { Int32U5BU5D_t3230847821* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; Int32U5BU5D_t3230847821* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; Int32U5BU5D_t3230847821* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t261675381 * L_13 = (( EqualityComparer_1_t261675381 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t261675381 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t261675381 * L_15 = V_1; Int32U5BU5D_t3230847821* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; int32_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); int32_t L_20 = ___value1; NullCheck((EqualityComparer_1_t261675381 *)L_15); bool L_21 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Int32>::Equals(T,T) */, (EqualityComparer_1_t261675381 *)L_15, (int32_t)L_19, (int32_t)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisIl2CppObject_m2661005505_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2661005505_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisIl2CppObject_m2661005505_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; Il2CppObject * L_3 = ___value1; ObjectU5BU5D_t1108656482* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (Il2CppObject *)L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisIl2CppObject_m870893758_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisIl2CppObject_m870893758_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, int32_t ___startIndex2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisIl2CppObject_m870893758_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; Il2CppObject * L_3 = ___value1; int32_t L_4 = ___startIndex2; ObjectU5BU5D_t1108656482* L_5 = ___array0; NullCheck(L_5); int32_t L_6 = ___startIndex2; int32_t L_7 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (Il2CppObject *)L_3, (int32_t)L_4, (int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))-(int32_t)L_6)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_7; } } // System.Int32 System.Array::IndexOf<System.Object>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisIl2CppObject_m2704617185_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisIl2CppObject_m2704617185_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisIl2CppObject_m2704617185_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3278653252 * V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; ObjectU5BU5D_t1108656482* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; ObjectU5BU5D_t1108656482* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3278653252 * L_13 = (( EqualityComparer_1_t3278653252 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3278653252 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3278653252 * L_15 = V_1; ObjectU5BU5D_t1108656482* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Il2CppObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Il2CppObject * L_20 = ___value1; NullCheck((EqualityComparer_1_t3278653252 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Il2CppObject *, Il2CppObject * >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t3278653252 *)L_15, (Il2CppObject *)L_19, (Il2CppObject *)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeNamedArgument>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, CustomAttributeNamedArgument_t3059612989 ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m3345236030_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_2 = ___array0; CustomAttributeNamedArgument_t3059612989 L_3 = ___value1; CustomAttributeNamedArgumentU5BU5D_t1983528240* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240*, CustomAttributeNamedArgument_t3059612989 , int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (CustomAttributeNamedArgumentU5BU5D_t1983528240*)L_2, (CustomAttributeNamedArgument_t3059612989 )L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeNamedArgument>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeNamedArgumentU5BU5D_t1983528240* ___array0, CustomAttributeNamedArgument_t3059612989 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisCustomAttributeNamedArgument_t3059612989_m2624070686_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2167449870 * V_1 = NULL; int32_t V_2 = 0; { CustomAttributeNamedArgumentU5BU5D_t1983528240* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; CustomAttributeNamedArgumentU5BU5D_t1983528240* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; CustomAttributeNamedArgumentU5BU5D_t1983528240* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2167449870 * L_13 = (( EqualityComparer_1_t2167449870 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2167449870 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2167449870 * L_15 = V_1; CustomAttributeNamedArgumentU5BU5D_t1983528240* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; CustomAttributeNamedArgument_t3059612989 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); CustomAttributeNamedArgument_t3059612989 L_20 = ___value1; NullCheck((EqualityComparer_1_t2167449870 *)L_15); bool L_21 = VirtFuncInvoker2< bool, CustomAttributeNamedArgument_t3059612989 , CustomAttributeNamedArgument_t3059612989 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Reflection.CustomAttributeNamedArgument>::Equals(T,T) */, (EqualityComparer_1_t2167449870 *)L_15, (CustomAttributeNamedArgument_t3059612989 )L_19, (CustomAttributeNamedArgument_t3059612989 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeTypedArgument>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, CustomAttributeTypedArgument_t3301293422 ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m858079087_MetadataUsageId); s_Il2CppMethodIntialized = true; } { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_2 = ___array0; CustomAttributeTypedArgument_t3301293422 L_3 = ___value1; CustomAttributeTypedArgumentU5BU5D_t2088020251* L_4 = ___array0; NullCheck(L_4); int32_t L_5 = (( int32_t (*) (Il2CppObject * /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251*, CustomAttributeTypedArgument_t3301293422 , int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (CustomAttributeTypedArgumentU5BU5D_t2088020251*)L_2, (CustomAttributeTypedArgument_t3301293422 )L_3, (int32_t)0, (int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_4)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_5; } } // System.Int32 System.Array::IndexOf<System.Reflection.CustomAttributeTypedArgument>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343_gshared (Il2CppObject * __this /* static, unused */, CustomAttributeTypedArgumentU5BU5D_t2088020251* ___array0, CustomAttributeTypedArgument_t3301293422 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisCustomAttributeTypedArgument_t3301293422_m2421987343_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2409130303 * V_1 = NULL; int32_t V_2 = 0; { CustomAttributeTypedArgumentU5BU5D_t2088020251* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; CustomAttributeTypedArgumentU5BU5D_t2088020251* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; CustomAttributeTypedArgumentU5BU5D_t2088020251* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2409130303 * L_13 = (( EqualityComparer_1_t2409130303 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2409130303 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2409130303 * L_15 = V_1; CustomAttributeTypedArgumentU5BU5D_t2088020251* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; CustomAttributeTypedArgument_t3301293422 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); CustomAttributeTypedArgument_t3301293422 L_20 = ___value1; NullCheck((EqualityComparer_1_t2409130303 *)L_15); bool L_21 = VirtFuncInvoker2< bool, CustomAttributeTypedArgument_t3301293422 , CustomAttributeTypedArgument_t3301293422 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Reflection.CustomAttributeTypedArgument>::Equals(T,T) */, (EqualityComparer_1_t2409130303 *)L_15, (CustomAttributeTypedArgument_t3301293422 )L_19, (CustomAttributeTypedArgument_t3301293422 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<System.Single>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisSingle_t4291918972_m3556333474_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisSingle_t4291918972_m3556333474_gshared (Il2CppObject * __this /* static, unused */, SingleU5BU5D_t2316563989* ___array0, float ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisSingle_t4291918972_m3556333474_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3399755853 * V_1 = NULL; int32_t V_2 = 0; { SingleU5BU5D_t2316563989* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; SingleU5BU5D_t2316563989* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; SingleU5BU5D_t2316563989* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3399755853 * L_13 = (( EqualityComparer_1_t3399755853 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3399755853 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3399755853 * L_15 = V_1; SingleU5BU5D_t2316563989* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; float L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); float L_20 = ___value1; NullCheck((EqualityComparer_1_t3399755853 *)L_15); bool L_21 = VirtFuncInvoker2< bool, float, float >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Single>::Equals(T,T) */, (EqualityComparer_1_t3399755853 *)L_15, (float)L_19, (float)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Color>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisColor_t4194546905_m3123325703_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisColor_t4194546905_m3123325703_gshared (Il2CppObject * __this /* static, unused */, ColorU5BU5D_t2441545636* ___array0, Color_t4194546905 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisColor_t4194546905_m3123325703_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3302383786 * V_1 = NULL; int32_t V_2 = 0; { ColorU5BU5D_t2441545636* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; ColorU5BU5D_t2441545636* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; ColorU5BU5D_t2441545636* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3302383786 * L_13 = (( EqualityComparer_1_t3302383786 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3302383786 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3302383786 * L_15 = V_1; ColorU5BU5D_t2441545636* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Color_t4194546905 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Color_t4194546905 L_20 = ___value1; NullCheck((EqualityComparer_1_t3302383786 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Color_t4194546905 , Color_t4194546905 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Color>::Equals(T,T) */, (EqualityComparer_1_t3302383786 *)L_15, (Color_t4194546905 )L_19, (Color_t4194546905 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Color32>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisColor32_t598853688_m2450814246_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisColor32_t598853688_m2450814246_gshared (Il2CppObject * __this /* static, unused */, Color32U5BU5D_t2960766953* ___array0, Color32_t598853688 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisColor32_t598853688_m2450814246_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t4001657865 * V_1 = NULL; int32_t V_2 = 0; { Color32U5BU5D_t2960766953* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; Color32U5BU5D_t2960766953* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; Color32U5BU5D_t2960766953* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t4001657865 * L_13 = (( EqualityComparer_1_t4001657865 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t4001657865 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t4001657865 * L_15 = V_1; Color32U5BU5D_t2960766953* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Color32_t598853688 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Color32_t598853688 L_20 = ___value1; NullCheck((EqualityComparer_1_t4001657865 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Color32_t598853688 , Color32_t598853688 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>::Equals(T,T) */, (EqualityComparer_1_t4001657865 *)L_15, (Color32_t598853688 )L_19, (Color32_t598853688 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.EventSystems.RaycastResult>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisRaycastResult_t3762661364_m1628381224_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisRaycastResult_t3762661364_m1628381224_gshared (Il2CppObject * __this /* static, unused */, RaycastResultU5BU5D_t2754024893* ___array0, RaycastResult_t3762661364 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisRaycastResult_t3762661364_m1628381224_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t2870498245 * V_1 = NULL; int32_t V_2 = 0; { RaycastResultU5BU5D_t2754024893* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; RaycastResultU5BU5D_t2754024893* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; RaycastResultU5BU5D_t2754024893* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t2870498245 * L_13 = (( EqualityComparer_1_t2870498245 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t2870498245 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t2870498245 * L_15 = V_1; RaycastResultU5BU5D_t2754024893* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; RaycastResult_t3762661364 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); RaycastResult_t3762661364 L_20 = ___value1; NullCheck((EqualityComparer_1_t2870498245 *)L_15); bool L_21 = VirtFuncInvoker2< bool, RaycastResult_t3762661364 , RaycastResult_t3762661364 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>::Equals(T,T) */, (EqualityComparer_1_t2870498245 *)L_15, (RaycastResult_t3762661364 )L_19, (RaycastResult_t3762661364 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Experimental.Director.Playable>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisPlayable_t70832698_m3233505232_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisPlayable_t70832698_m3233505232_gshared (Il2CppObject * __this /* static, unused */, PlayableU5BU5D_t910723999* ___array0, Playable_t70832698 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisPlayable_t70832698_m3233505232_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3473636875 * V_1 = NULL; int32_t V_2 = 0; { PlayableU5BU5D_t910723999* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; PlayableU5BU5D_t910723999* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; PlayableU5BU5D_t910723999* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3473636875 * L_13 = (( EqualityComparer_1_t3473636875 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3473636875 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3473636875 * L_15 = V_1; PlayableU5BU5D_t910723999* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Playable_t70832698 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Playable_t70832698 L_20 = ___value1; NullCheck((EqualityComparer_1_t3473636875 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Playable_t70832698 , Playable_t70832698 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Experimental.Director.Playable>::Equals(T,T) */, (EqualityComparer_1_t3473636875 *)L_15, (Playable_t70832698 )L_19, (Playable_t70832698 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.UICharInfo>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisUICharInfo_t65807484_m743908190_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisUICharInfo_t65807484_m743908190_gshared (Il2CppObject * __this /* static, unused */, UICharInfoU5BU5D_t4214337045* ___array0, UICharInfo_t65807484 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUICharInfo_t65807484_m743908190_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3468611661 * V_1 = NULL; int32_t V_2 = 0; { UICharInfoU5BU5D_t4214337045* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; UICharInfoU5BU5D_t4214337045* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; UICharInfoU5BU5D_t4214337045* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3468611661 * L_13 = (( EqualityComparer_1_t3468611661 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3468611661 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3468611661 * L_15 = V_1; UICharInfoU5BU5D_t4214337045* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; UICharInfo_t65807484 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UICharInfo_t65807484 L_20 = ___value1; NullCheck((EqualityComparer_1_t3468611661 *)L_15); bool L_21 = VirtFuncInvoker2< bool, UICharInfo_t65807484 , UICharInfo_t65807484 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>::Equals(T,T) */, (EqualityComparer_1_t3468611661 *)L_15, (UICharInfo_t65807484 )L_19, (UICharInfo_t65807484 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.UILineInfo>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisUILineInfo_t4113875482_m855562620_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisUILineInfo_t4113875482_m855562620_gshared (Il2CppObject * __this /* static, unused */, UILineInfoU5BU5D_t2354741311* ___array0, UILineInfo_t4113875482 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUILineInfo_t4113875482_m855562620_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3221712363 * V_1 = NULL; int32_t V_2 = 0; { UILineInfoU5BU5D_t2354741311* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; UILineInfoU5BU5D_t2354741311* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; UILineInfoU5BU5D_t2354741311* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3221712363 * L_13 = (( EqualityComparer_1_t3221712363 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3221712363 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3221712363 * L_15 = V_1; UILineInfoU5BU5D_t2354741311* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; UILineInfo_t4113875482 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UILineInfo_t4113875482 L_20 = ___value1; NullCheck((EqualityComparer_1_t3221712363 *)L_15); bool L_21 = VirtFuncInvoker2< bool, UILineInfo_t4113875482 , UILineInfo_t4113875482 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>::Equals(T,T) */, (EqualityComparer_1_t3221712363 *)L_15, (UILineInfo_t4113875482 )L_19, (UILineInfo_t4113875482 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.UIVertex>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisUIVertex_t4244065212_m3202013470_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisUIVertex_t4244065212_m3202013470_gshared (Il2CppObject * __this /* static, unused */, UIVertexU5BU5D_t1796391381* ___array0, UIVertex_t4244065212 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisUIVertex_t4244065212_m3202013470_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3351902093 * V_1 = NULL; int32_t V_2 = 0; { UIVertexU5BU5D_t1796391381* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; UIVertexU5BU5D_t1796391381* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; UIVertexU5BU5D_t1796391381* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3351902093 * L_13 = (( EqualityComparer_1_t3351902093 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3351902093 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3351902093 * L_15 = V_1; UIVertexU5BU5D_t1796391381* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; UIVertex_t4244065212 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); UIVertex_t4244065212 L_20 = ___value1; NullCheck((EqualityComparer_1_t3351902093 *)L_15); bool L_21 = VirtFuncInvoker2< bool, UIVertex_t4244065212 , UIVertex_t4244065212 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>::Equals(T,T) */, (EqualityComparer_1_t3351902093 *)L_15, (UIVertex_t4244065212 )L_19, (UIVertex_t4244065212 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Vector2>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisVector2_t4282066565_m3505913907_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisVector2_t4282066565_m3505913907_gshared (Il2CppObject * __this /* static, unused */, Vector2U5BU5D_t4024180168* ___array0, Vector2_t4282066565 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisVector2_t4282066565_m3505913907_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3389903446 * V_1 = NULL; int32_t V_2 = 0; { Vector2U5BU5D_t4024180168* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; Vector2U5BU5D_t4024180168* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; Vector2U5BU5D_t4024180168* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3389903446 * L_13 = (( EqualityComparer_1_t3389903446 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3389903446 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3389903446 * L_15 = V_1; Vector2U5BU5D_t4024180168* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Vector2_t4282066565 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Vector2_t4282066565 L_20 = ___value1; NullCheck((EqualityComparer_1_t3389903446 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Vector2_t4282066565 , Vector2_t4282066565 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector2>::Equals(T,T) */, (EqualityComparer_1_t3389903446 *)L_15, (Vector2_t4282066565 )L_19, (Vector2_t4282066565 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Vector3>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisVector3_t4282066566_m936427508_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisVector3_t4282066566_m936427508_gshared (Il2CppObject * __this /* static, unused */, Vector3U5BU5D_t215400611* ___array0, Vector3_t4282066566 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisVector3_t4282066566_m936427508_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3389903447 * V_1 = NULL; int32_t V_2 = 0; { Vector3U5BU5D_t215400611* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; Vector3U5BU5D_t215400611* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; Vector3U5BU5D_t215400611* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3389903447 * L_13 = (( EqualityComparer_1_t3389903447 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3389903447 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3389903447 * L_15 = V_1; Vector3U5BU5D_t215400611* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Vector3_t4282066566 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Vector3_t4282066566 L_20 = ___value1; NullCheck((EqualityComparer_1_t3389903447 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Vector3_t4282066566 , Vector3_t4282066566 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>::Equals(T,T) */, (EqualityComparer_1_t3389903447 *)L_15, (Vector3_t4282066566 )L_19, (Vector3_t4282066566 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<UnityEngine.Vector4>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisVector4_t4282066567_m2661908405_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisVector4_t4282066567_m2661908405_gshared (Il2CppObject * __this /* static, unused */, Vector4U5BU5D_t701588350* ___array0, Vector4_t4282066567 ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisVector4_t4282066567_m2661908405_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3389903448 * V_1 = NULL; int32_t V_2 = 0; { Vector4U5BU5D_t701588350* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; Vector4U5BU5D_t701588350* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; Vector4U5BU5D_t701588350* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3389903448 * L_13 = (( EqualityComparer_1_t3389903448 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3389903448 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3389903448 * L_15 = V_1; Vector4U5BU5D_t701588350* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; Vector4_t4282066567 L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); Vector4_t4282066567 L_20 = ___value1; NullCheck((EqualityComparer_1_t3389903448 *)L_15); bool L_21 = VirtFuncInvoker2< bool, Vector4_t4282066567 , Vector4_t4282066567 >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>::Equals(T,T) */, (EqualityComparer_1_t3389903448 *)L_15, (Vector4_t4282066567 )L_19, (Vector4_t4282066567 )L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::IndexOf<WMG_Data_Source/WMG_VariableTypes>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757_MetadataUsageId; extern "C" int32_t Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757_gshared (Il2CppObject * __this /* static, unused */, WMG_VariableTypesU5BU5D_t877298455* ___array0, int32_t ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_IndexOf_TisWMG_VariableTypes_t4265297442_m1101737757_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; EqualityComparer_1_t3373134323 * V_1 = NULL; int32_t V_2 = 0; { WMG_VariableTypesU5BU5D_t877298455* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0036; } } { int32_t L_3 = ___startIndex2; WMG_VariableTypesU5BU5D_t877298455* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0036; } } { int32_t L_6 = ___startIndex2; WMG_VariableTypesU5BU5D_t877298455* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); int32_t L_9 = ___count3; if ((((int32_t)((int32_t)((int32_t)L_6-(int32_t)1))) <= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))))) { goto IL_003c; } } IL_0036: { ArgumentOutOfRangeException_t3816648464 * L_10 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10); } IL_003c: { int32_t L_11 = ___startIndex2; int32_t L_12 = ___count3; V_0 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)); IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3373134323 * L_13 = (( EqualityComparer_1_t3373134323 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_1 = (EqualityComparer_1_t3373134323 *)L_13; int32_t L_14 = ___startIndex2; V_2 = (int32_t)L_14; goto IL_0066; } IL_004d: { EqualityComparer_1_t3373134323 * L_15 = V_1; WMG_VariableTypesU5BU5D_t877298455* L_16 = ___array0; int32_t L_17 = V_2; NullCheck(L_16); IL2CPP_ARRAY_BOUNDS_CHECK(L_16, L_17); int32_t L_18 = L_17; int32_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); int32_t L_20 = ___value1; NullCheck((EqualityComparer_1_t3373134323 *)L_15); bool L_21 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<WMG_Data_Source/WMG_VariableTypes>::Equals(T,T) */, (EqualityComparer_1_t3373134323 *)L_15, (int32_t)L_19, (int32_t)L_20); if (!L_21) { goto IL_0062; } } { int32_t L_22 = V_2; return L_22; } IL_0062: { int32_t L_23 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_23+(int32_t)1)); } IL_0066: { int32_t L_24 = V_2; int32_t L_25 = V_0; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_004d; } } { return (-1); } } // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/Contacts>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContacts_t352143704_m3437351567_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Contacts_t352143704 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Contacts_t352143704 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Contacts_t352143704 L_10 = ___item0; Contacts_t352143704 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/detailsProperty>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisdetailsProperty_t1057943986_m2335183737_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; detailsProperty_t1057943986 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (detailsProperty_t1057943986 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { detailsProperty_t1057943986 L_10 = ___item0; detailsProperty_t1057943986 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/DeviceDetailedInformation>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t4234054081_m2885390856_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceDetailedInformation_t4234054081 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceDetailedInformation_t4234054081 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DeviceDetailedInformation_t4234054081 L_10 = ___item0; DeviceDetailedInformation_t4234054081 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<AllSingleton/surveyProperty>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TissurveyProperty_t884569204_m3710248363_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; surveyProperty_t884569204 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (surveyProperty_t884569204 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { surveyProperty_t884569204 L_10 = ___item0; surveyProperty_t884569204 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDeviceDetailedInformation_t3668321760_m244736167_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceDetailedInformation_t3668321760 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceDetailedInformation_t3668321760 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DeviceDetailedInformation_t3668321760 L_10 = ___item0; DeviceDetailedInformation_t3668321760 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDeviceProperties_t2492701999_m3928854758_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DeviceProperties_t2492701999 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DeviceProperties_t2492701999 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DeviceProperties_t2492701999 L_10 = ___item0; DeviceProperties_t2492701999 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TispeopleOrderPatrol_t4292956421_m1826699596_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; peopleOrderPatrol_t4292956421 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (peopleOrderPatrol_t4292956421 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { peopleOrderPatrol_t4292956421 L_10 = ___item0; peopleOrderPatrol_t4292956421 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TispeoplePatrol_t2522972577_m1277069400_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; peoplePatrol_t2522972577 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (peoplePatrol_t2522972577 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { peoplePatrol_t2522972577 L_10 = ___item0; peoplePatrol_t2522972577 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisStaffInformatino_t2939901716_m2498482251_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; StaffInformatino_t2939901716 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (StaffInformatino_t2939901716 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { StaffInformatino_t2939901716 L_10 = ___item0; StaffInformatino_t2939901716 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisControlPoint_t3116362155_m319928367_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ControlPoint_t3116362155 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ControlPoint_t3116362155 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ControlPoint_t3116362155 L_10 = ___item0; ControlPoint_t3116362155 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<HighlightingSystem.Highlighter/Mode>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMode_t2711727618_m1159688249_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<HighlightingSystem.HighlighterRenderer/Data>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisData_t3265512710_m271789373_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisData_t3265512710_m271789373_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisData_t3265512710_m271789373_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Data_t3265512710 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Data_t3265512710 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Data_t3265512710 L_10 = ___item0; Data_t3265512710 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<LitJson.ArrayMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisArrayMetadata_t4058342910_m4116726160_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArrayMetadata_t4058342910 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ArrayMetadata_t4058342910 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ArrayMetadata_t4058342910 L_10 = ___item0; ArrayMetadata_t4058342910 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<LitJson.ObjectMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisObjectMetadata_t2009294498_m324123588_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ObjectMetadata_t2009294498 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ObjectMetadata_t2009294498 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ObjectMetadata_t2009294498 L_10 = ___item0; ObjectMetadata_t2009294498 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<LitJson.PropertyMetadata>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPropertyMetadata_t4066634616_m4260934554_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; PropertyMetadata_t4066634616 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (PropertyMetadata_t4066634616 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { PropertyMetadata_t4066634616 L_10 = ___item0; PropertyMetadata_t4066634616 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTableRange_t3372848153_m3700301920_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TableRange_t3372848153 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TableRange_t3372848153 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { TableRange_t3372848153 L_10 = ___item0; TableRange_t3372848153 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisClientCertificateType_t3167042548_m866222416_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Uri/UriScheme>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUriScheme_t3372318283_m2551655426_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UriScheme_t3372318283 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UriScheme_t3372318283 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { UriScheme_t3372318283 L_10 = ___item0; UriScheme_t3372318283 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<Mono.Xml2.XmlTextReader/TagName>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTagName_t2016006645_m2523201196_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TagName_t2016006645 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TagName_t2016006645 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { TagName_t2016006645 L_10 = ___item0; TagName_t2016006645 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<PresetSelector/Preset>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPreset_t2393284144_m4121230183_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Preset_t2393284144 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Preset_t2393284144 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Preset_t2393284144 L_10 = ___item0; Preset_t2393284144 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.ArraySegment`1<System.Byte>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern const MethodInfo* ArraySegment_1_Equals_m357209176_MethodInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisArraySegment_1_t2188033608_m4191471856_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ArraySegment_1_t2188033608 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ArraySegment_1_t2188033608 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ArraySegment_1_t2188033608 L_10 = ___item0; ArraySegment_1_t2188033608 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = ArraySegment_1_Equals_m357209176((ArraySegment_1_t2188033608 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/ArraySegment_1_Equals_m357209176_MethodInfo_var); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBoolean_t476798718_m2695954352_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (bool*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { bool L_10 = ___item0; bool L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Boolean_Equals_m1178456600((bool*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByte_t2862609660_m864123166_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint8_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { uint8_t L_10 = ___item0; uint8_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Byte_Equals_m4077775008((uint8_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisChar_t2862622538_m4167292012_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Il2CppChar*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Il2CppChar L_10 = ___item0; Il2CppChar L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Char_Equals_m158269074((Il2CppChar*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDictionaryEntry_t1751606614_m4062172811_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DictionaryEntry_t1751606614 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DictionaryEntry_t1751606614 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DictionaryEntry_t1751606614 L_10 = ___item0; DictionaryEntry_t1751606614 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLink_t2122599155_m1074587344_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Link_t2122599155 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Link_t2122599155 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Link_t2122599155 L_10 = ___item0; Link_t2122599155 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t1049882445_m3426934696_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1049882445 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1049882445 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t1049882445 L_10 = ___item0; KeyValuePair_2_t1049882445 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t4066860316_m3247624005_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4066860316 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4066860316 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t4066860316 L_10 = ___item0; KeyValuePair_2_t4066860316 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t3980314737_m534263740_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3980314737 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3980314737 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t3980314737 L_10 = ___item0; KeyValuePair_2_t3980314737 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t1832195516_m829899593_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1832195516 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1832195516 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t1832195516 L_10 = ___item0; KeyValuePair_2_t1832195516 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t4078114400_m887585339_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t4078114400 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t4078114400 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t4078114400 L_10 = ___item0; KeyValuePair_2_t4078114400 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t1840487222_m41730149_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1840487222 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1840487222 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t1840487222 L_10 = ___item0; KeyValuePair_2_t1840487222 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t2545618620_m1447397071_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t2545618620 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2545618620 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t2545618620 L_10 = ___item0; KeyValuePair_2_t2545618620 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t3222658402_m1097083561_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3222658402 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3222658402 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t3222658402 L_10 = ___item0; KeyValuePair_2_t3222658402 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t1944668977_m4036682852_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t1944668977 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t1944668977 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t1944668977 L_10 = ___item0; KeyValuePair_2_t1944668977 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t3310123289_m896197970_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; KeyValuePair_2_t3310123289 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3310123289 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { KeyValuePair_2_t3310123289 L_10 = ___item0; KeyValuePair_2_t3310123289 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Link>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLink_t2063667470_m2429713216_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Link_t2063667470 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Link_t2063667470 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Link_t2063667470 L_10 = ___item0; Link_t2063667470 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable/Slot>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSlot_t2260530181_m3495922364_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t2260530181 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Slot_t2260530181 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Slot_t2260530181 L_10 = ___item0; Slot_t2260530181 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Collections.SortedList/Slot>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSlot_t2072023290_m954808513_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Slot_t2072023290 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Slot_t2072023290 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Slot_t2072023290 L_10 = ___item0; Slot_t2072023290 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDateTime_t4283661327_m3650658993_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DateTime_t4283661327 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DateTime_t4283661327 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DateTime_t4283661327 L_10 = ___item0; DateTime_t4283661327 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = DateTime_Equals_m13666989((DateTime_t4283661327 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDecimal_t1954350631_m3151555161_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Decimal_t1954350631 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Decimal_t1954350631 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Decimal_t1954350631 L_10 = ___item0; Decimal_t1954350631 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Decimal_Equals_m3414174927((Decimal_t1954350631 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDouble_t3868226565_m2448244135_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; double V_2 = 0.0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (double*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { double L_10 = ___item0; double L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Double_Equals_m1597124279((double*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt16_t1153838442_m2059168284_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int16_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int16_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int16_t L_10 = ___item0; int16_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Int16_Equals_m3652534636((int16_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt32_t1153838500_m2112732502_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Int32_Equals_m4061110258((int32_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt64_t1153838595_m2200466997_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int64_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int64_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int64_t L_10 = ___item0; int64_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Int64_Equals_m1990436019((int64_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisIntPtr_t_m2976162645_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; IntPtr_t V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (IntPtr_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { IntPtr_t L_10 = ___item0; IntPtr_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = IntPtr_Equals_m3488505417((IntPtr_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisIl2CppObject_m2736324117_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppObject * V_2 = NULL; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Il2CppObject **)(&V_2)); Il2CppObject * L_5 = ___item0; if (L_5) { goto IL_005d; } } { Il2CppObject * L_6 = V_2; if (L_6) { goto IL_0053; } } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Il2CppObject * L_10 = ___item0; NullCheck((Il2CppObject *)(*(&V_2))); bool L_11 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)(*(&V_2)), (Il2CppObject *)L_10); if (!L_11) { goto IL_007f; } } { int32_t L_12 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_13 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_12+(int32_t)L_13)); } IL_007f: { int32_t L_14 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_14+(int32_t)1)); } IL_0083: { int32_t L_15 = V_1; int32_t L_16 = V_0; if ((((int32_t)L_15) < ((int32_t)L_16))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_17 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_17-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t3059612989_m1363548214_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeNamedArgument_t3059612989 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (CustomAttributeNamedArgument_t3059612989 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { CustomAttributeNamedArgument_t3059612989 L_10 = ___item0; CustomAttributeNamedArgument_t3059612989 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = CustomAttributeNamedArgument_Equals_m109042642((CustomAttributeNamedArgument_t3059612989 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t3301293422_m1753241575_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; CustomAttributeTypedArgument_t3301293422 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (CustomAttributeTypedArgument_t3301293422 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { CustomAttributeTypedArgument_t3301293422 L_10 = ___item0; CustomAttributeTypedArgument_t3301293422 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = CustomAttributeTypedArgument_Equals_m464286849((CustomAttributeTypedArgument_t3301293422 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILGenerator/LabelData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLabelData_t3207823784_m1668294767_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelData_t3207823784 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (LabelData_t3207823784 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { LabelData_t3207823784 L_10 = ___item0; LabelData_t3207823784 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLabelFixup_t660379442_m1789590377_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; LabelFixup_t660379442 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (LabelFixup_t660379442 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { LabelFixup_t660379442 L_10 = ___item0; LabelFixup_t660379442 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.Emit.ILTokenInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisILTokenInfo_t1354080954_m2345466196_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ILTokenInfo_t1354080954 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ILTokenInfo_t1354080954 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ILTokenInfo_t1354080954 L_10 = ___item0; ILTokenInfo_t1354080954 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisParameterModifier_t741930026_m3583138579_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ParameterModifier_t741930026 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ParameterModifier_t741930026 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ParameterModifier_t741930026 L_10 = ___item0; ParameterModifier_t741930026 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceReader/ResourceCacheItem>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisResourceCacheItem_t2113902833_m1375955368_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceCacheItem_t2113902833 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ResourceCacheItem_t2113902833 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ResourceCacheItem_t2113902833 L_10 = ___item0; ResourceCacheItem_t2113902833 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceReader/ResourceInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisResourceInfo_t4013605874_m3726194105_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ResourceInfo_t4013605874 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ResourceInfo_t4013605874 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ResourceInfo_t4013605874 L_10 = ___item0; ResourceInfo_t4013605874 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTypeTag_t2420703430_m887407724_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint8_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint8_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { uint8_t L_10 = ___item0; uint8_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSByte_t1161769777_m3894359139_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int8_t V_2 = 0x0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int8_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int8_t L_10 = ___item0; int8_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = SByte_Equals_m1310501829((int8_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisX509ChainStatus_t766901931_m368879979_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; X509ChainStatus_t766901931 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (X509ChainStatus_t766901931 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { X509ChainStatus_t766901931 L_10 = ___item0; X509ChainStatus_t766901931 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSingle_t4291918972_m2583114398_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; float V_2 = 0.0f; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (float*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { float L_10 = ___item0; float L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Single_Equals_m2650902624((float*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.Mark>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMark_t3811539797_m1786057617_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Mark_t3811539797 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Mark_t3811539797 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Mark_t3811539797 L_10 = ___item0; Mark_t3811539797 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTimeSpan_t413522987_m1145410765_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; TimeSpan_t413522987 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (TimeSpan_t413522987 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { TimeSpan_t413522987 L_10 = ___item0; TimeSpan_t413522987 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = TimeSpan_Equals_m2969422609((TimeSpan_t413522987 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt16_t24667923_m1114175925_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint16_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { uint16_t L_10 = ___item0; uint16_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = UInt16_Equals_m857648105((uint16_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt32_t24667981_m1167740143_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { uint32_t L_10 = ___item0; uint32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = UInt32_Equals_m1266223727((uint32_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt64_t24668076_m1255474638_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; uint64_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (uint64_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { uint64_t L_10 = ___item0; uint64_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = UInt64_Equals_m3490516784((uint64_t*)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Uri/UriScheme>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUriScheme_t1290668975_m4017860342_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UriScheme_t1290668975 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UriScheme_t1290668975 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { UriScheme_t1290668975 L_10 = ___item0; UriScheme_t1290668975 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlNamespaceManager/NsDecl>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisNsDecl_t3658211563_m1108474018_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NsDecl_t3658211563 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (NsDecl_t3658211563 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { NsDecl_t3658211563 L_10 = ___item0; NsDecl_t3658211563 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<System.Xml.XmlNamespaceManager/NsScope>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisNsScope_t1749213747_m1681547642_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; NsScope_t1749213747 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (NsScope_t1749213747 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { NsScope_t1749213747 L_10 = ___item0; NsScope_t1749213747 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<TypewriterEffect/FadeEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisFadeEntry_t2858472101_m2431153388_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; FadeEntry_t2858472101 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (FadeEntry_t2858472101 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { FadeEntry_t2858472101 L_10 = ___item0; FadeEntry_t2858472101 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UICamera/DepthEntry>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDepthEntry_t1145614469_m3260672316_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; DepthEntry_t1145614469 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (DepthEntry_t1145614469 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { DepthEntry_t1145614469 L_10 = ___item0; DepthEntry_t1145614469 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.AnimatorStateInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisAnimatorStateInfo_t323110318_m4035905048_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; AnimatorStateInfo_t323110318 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (AnimatorStateInfo_t323110318 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { AnimatorStateInfo_t323110318 L_10 = ___item0; AnimatorStateInfo_t323110318 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Bounds>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBounds_t2711641849_m4000778611_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Bounds_t2711641849 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Bounds_t2711641849 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Bounds_t2711641849 L_10 = ___item0; Bounds_t2711641849 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Bounds_Equals_m2517451939((Bounds_t2711641849 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisColor_t4194546905_m4090215363_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color_t4194546905 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Color_t4194546905 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Color_t4194546905 L_10 = ___item0; Color_t4194546905 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Color_Equals_m3016668205((Color_t4194546905 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color32>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisColor32_t598853688_m495548834_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Color32_t598853688 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Color32_t598853688 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Color32_t598853688 L_10 = ___item0; Color32_t598853688 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContactPoint_t243083348_m1570674510_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ContactPoint_t243083348 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ContactPoint_t243083348 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ContactPoint_t243083348 L_10 = ___item0; ContactPoint_t243083348 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint2D>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContactPoint2D_t4288432358_m1566338272_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ContactPoint2D_t4288432358 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (ContactPoint2D_t4288432358 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { ContactPoint2D_t4288432358 L_10 = ___item0; ContactPoint2D_t4288432358 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.EventSystems.RaycastResult>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastResult_t3762661364_m1879699392_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastResult_t3762661364 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastResult_t3762661364 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { RaycastResult_t3762661364 L_10 = ___item0; RaycastResult_t3762661364 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.Director.Playable>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlayable_t70832698_m968769128_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Playable_t70832698 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Playable_t70832698 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Playable_t70832698 L_10 = ___item0; Playable_t70832698 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Playable_Equals_m1149042830((Playable_t70832698 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.KeyCode>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyCode_t3128317986_m2656044172_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyframe_t4079056114_m433211628_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Keyframe_t4079056114 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Keyframe_t4079056114 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Keyframe_t4079056114 L_10 = ___item0; Keyframe_t4079056114 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ParticleSystem/Particle>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisParticle_t405273609_m1412522688_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Particle_t405273609 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Particle_t405273609 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Particle_t405273609 L_10 = ___item0; Particle_t405273609 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastHit_t4003175726_m4248977704_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit_t4003175726 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastHit_t4003175726 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { RaycastHit_t4003175726 L_10 = ___item0; RaycastHit_t4003175726 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit2D>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastHit2D_t1374744384_m2730297402_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RaycastHit2D_t1374744384 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RaycastHit2D_t1374744384 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { RaycastHit2D_t1374744384 L_10 = ___item0; RaycastHit2D_t1374744384 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRenderTargetIdentifier_t1322160672_m2293063696_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RenderTargetIdentifier_t1322160672 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (RenderTargetIdentifier_t1322160672 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { RenderTargetIdentifier_t1322160672 L_10 = ___item0; RenderTargetIdentifier_t1322160672 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents/HitInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisHitInfo_t3209134097_m2556404424_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; HitInfo_t3209134097 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (HitInfo_t3209134097 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { HitInfo_t3209134097 L_10 = ___item0; HitInfo_t3209134097 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGcAchievementData_t3481375915_m579123151_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcAchievementData_t3481375915 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (GcAchievementData_t3481375915 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { GcAchievementData_t3481375915 L_10 = ___item0; GcAchievementData_t3481375915 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGcScoreData_t2181296590_m1204871538_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; GcScoreData_t2181296590 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (GcScoreData_t2181296590 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { GcScoreData_t2181296590 L_10 = ___item0; GcScoreData_t2181296590 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Touch>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTouch_t4210255029_m2473074079_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Touch_t4210255029 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Touch_t4210255029 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Touch_t4210255029 L_10 = ___item0; Touch_t4210255029 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.InputField/ContentType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContentType_t2662964855_m1464733742_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UICharInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUICharInfo_t65807484_m1564635510_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UICharInfo_t65807484 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UICharInfo_t65807484 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { UICharInfo_t65807484 L_10 = ___item0; UICharInfo_t65807484 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UILineInfo>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUILineInfo_t4113875482_m396824596_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UILineInfo_t4113875482 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UILineInfo_t4113875482 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { UILineInfo_t4113875482 L_10 = ___item0; UILineInfo_t4113875482 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIVertex>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUIVertex_t4244065212_m65776310_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; UIVertex_t4244065212 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (UIVertex_t4244065212 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { UIVertex_t4244065212 L_10 = ___item0; UIVertex_t4244065212 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector2>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector2_t4282066565_m1030809967_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector2_t4282066565 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector2_t4282066565 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Vector2_t4282066565 L_10 = ___item0; Vector2_t4282066565 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Vector2_Equals_m3404198849((Vector2_t4282066565 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector3>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector3_t4282066566_m1031733488_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector3_t4282066566 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector3_t4282066566 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Vector3_t4282066566 L_10 = ___item0; Vector3_t4282066566 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Vector3_Equals_m3337192096((Vector3_t4282066566 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector4>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector4_t4282066567_m1032657009_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Vector4_t4282066567 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Vector4_t4282066567 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Vector4_t4282066567 L_10 = ___item0; Vector4_t4282066567 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); bool L_13 = Vector4_Equals_m3270185343((Vector4_t4282066567 *)(&V_2), (Il2CppObject *)L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_007f; } } { int32_t L_14 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_15 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_14+(int32_t)L_15)); } IL_007f: { int32_t L_16 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_16+(int32_t)1)); } IL_0083: { int32_t L_17 = V_1; int32_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)L_18))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_19-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.VR.VRDeviceType>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVRDeviceType_t4084270792_m3493273150_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisQualitySettings_t2308822883_m4174294810_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; QualitySettings_t2308822883 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (QualitySettings_t2308822883 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { QualitySettings_t2308822883 L_10 = ___item0; QualitySettings_t2308822883 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPreset_t8910124_m2787137011_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Preset_t8910124 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (Preset_t8910124 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { Preset_t8910124 L_10 = ___item0; Preset_t8910124 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisQualitySettings_t2868270621_m645822676_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; QualitySettings_t2868270621 V_2; memset(&V_2, 0, sizeof(V_2)); { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (QualitySettings_t2868270621 *)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { QualitySettings_t2868270621 L_10 = ___item0; QualitySettings_t2868270621 L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::InternalArray__IndexOf<WMG_Data_Source/WMG_VariableTypes>(T) extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral3363540468; extern const uint32_t Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737_MetadataUsageId; extern "C" int32_t Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisWMG_VariableTypes_t4265297442_m3724379737_MetadataUsageId); s_Il2CppMethodIntialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { NullCheck((Il2CppArray *)__this); int32_t L_0 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)1))) { goto IL_001c; } } { String_t* L_1 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_2 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_2, (String_t*)L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2); } IL_001c: { NullCheck((Il2CppArray *)__this); int32_t L_3 = Array_get_Length_m1203127607((Il2CppArray *)__this, /*hidden argument*/NULL); V_0 = (int32_t)L_3; V_1 = (int32_t)0; goto IL_0083; } IL_002a: { int32_t L_4 = V_1; NullCheck((Il2CppArray *)__this); ArrayGetGenericValueImpl((Il2CppArray *)__this, (int32_t)L_4, (int32_t*)(&V_2)); goto IL_005d; } { goto IL_0053; } { int32_t L_7 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_7+(int32_t)L_8)); } IL_0053: { NullCheck((Il2CppArray *)__this); int32_t L_9 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_9-(int32_t)1)); } IL_005d: { int32_t L_10 = ___item0; int32_t L_11 = L_10; Il2CppObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_11); Il2CppObject * L_13 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2)); NullCheck((Il2CppObject *)L_13); bool L_14 = VirtFuncInvoker1< bool, Il2CppObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (Il2CppObject *)L_13, (Il2CppObject *)L_12); if (!L_14) { goto IL_007f; } } { int32_t L_15 = V_1; NullCheck((Il2CppArray *)__this); int32_t L_16 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_15+(int32_t)L_16)); } IL_007f: { int32_t L_17 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_17+(int32_t)1)); } IL_0083: { int32_t L_18 = V_1; int32_t L_19 = V_0; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_002a; } } { NullCheck((Il2CppArray *)__this); int32_t L_20 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_20-(int32_t)1)); } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_LastIndexOf_TisIl2CppObject_m268542275_MetadataUsageId; extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m268542275_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisIl2CppObject_m268542275_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; NullCheck(L_2); if ((((int32_t)((int32_t)(((Il2CppArray *)L_2)->max_length))))) { goto IL_001b; } } { return (-1); } IL_001b: { ObjectU5BU5D_t1108656482* L_3 = ___array0; Il2CppObject * L_4 = ___value1; ObjectU5BU5D_t1108656482* L_5 = ___array0; NullCheck(L_5); int32_t L_6 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_3, (Il2CppObject *)L_4, (int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_5)->max_length))))-(int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_6; } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_LastIndexOf_TisIl2CppObject_m1100669044_MetadataUsageId; extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m1100669044_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, int32_t ___startIndex2, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisIl2CppObject_m1100669044_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { ObjectU5BU5D_t1108656482* L_2 = ___array0; Il2CppObject * L_3 = ___value1; int32_t L_4 = ___startIndex2; int32_t L_5 = ___startIndex2; int32_t L_6 = (( int32_t (*) (Il2CppObject * /* static, unused */, ObjectU5BU5D_t1108656482*, Il2CppObject *, int32_t, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (ObjectU5BU5D_t1108656482*)L_2, (Il2CppObject *)L_3, (int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5+(int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_6; } } // System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32,System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern const uint32_t Array_LastIndexOf_TisIl2CppObject_m11770083_MetadataUsageId; extern "C" int32_t Array_LastIndexOf_TisIl2CppObject_m11770083_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Il2CppObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_TisIl2CppObject_m11770083_MetadataUsageId); s_Il2CppMethodIntialized = true; } EqualityComparer_1_t3278653252 * V_0 = NULL; int32_t V_1 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { int32_t L_2 = ___count3; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0043; } } { int32_t L_3 = ___startIndex2; ObjectU5BU5D_t1108656482* L_4 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_4); int32_t L_5 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_4, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0043; } } { int32_t L_6 = ___startIndex2; ObjectU5BU5D_t1108656482* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetUpperBound_m97365085((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)L_6) > ((int32_t)L_8))) { goto IL_0043; } } { int32_t L_9 = ___startIndex2; int32_t L_10 = ___count3; ObjectU5BU5D_t1108656482* L_11 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_11); int32_t L_12 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_11, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_9-(int32_t)L_10))+(int32_t)1))) >= ((int32_t)L_12))) { goto IL_0049; } } IL_0043: { ArgumentOutOfRangeException_t3816648464 * L_13 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m410800215(L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13); } IL_0049: { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 1)); EqualityComparer_1_t3278653252 * L_14 = (( EqualityComparer_1_t3278653252 * (*) (Il2CppObject * /* static, unused */, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (EqualityComparer_1_t3278653252 *)L_14; int32_t L_15 = ___startIndex2; V_1 = (int32_t)L_15; goto IL_006f; } IL_0056: { EqualityComparer_1_t3278653252 * L_16 = V_0; ObjectU5BU5D_t1108656482* L_17 = ___array0; int32_t L_18 = V_1; NullCheck(L_17); IL2CPP_ARRAY_BOUNDS_CHECK(L_17, L_18); int32_t L_19 = L_18; Il2CppObject * L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19)); Il2CppObject * L_21 = ___value1; NullCheck((EqualityComparer_1_t3278653252 *)L_16); bool L_22 = VirtFuncInvoker2< bool, Il2CppObject *, Il2CppObject * >::Invoke(9 /* System.Boolean System.Collections.Generic.EqualityComparer`1<System.Object>::Equals(T,T) */, (EqualityComparer_1_t3278653252 *)L_16, (Il2CppObject *)L_20, (Il2CppObject *)L_21); if (!L_22) { goto IL_006b; } } { int32_t L_23 = V_1; return L_23; } IL_006b: { int32_t L_24 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_24-(int32_t)1)); } IL_006f: { int32_t L_25 = V_1; int32_t L_26 = ___startIndex2; int32_t L_27 = ___count3; if ((((int32_t)L_25) >= ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_26-(int32_t)L_27))+(int32_t)1))))) { goto IL_0056; } } { return (-1); } } // System.Int32 UnityEngine.Mesh::SafeLength<System.Int32>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisInt32_t1153838500_m3487658462_gshared (Mesh_t4241756145 * __this, List_1_t2522024052 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t2522024052 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t2522024052 * L_1 = ___values0; NullCheck((List_1_t2522024052 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t2522024052 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t2522024052 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Int32 UnityEngine.Mesh::SafeLength<System.Object>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisIl2CppObject_m3734723583_gshared (Mesh_t4241756145 * __this, List_1_t1244034627 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t1244034627 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t1244034627 * L_1 = ___values0; NullCheck((List_1_t1244034627 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t1244034627 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t1244034627 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Color32>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisColor32_t598853688_m1518847698_gshared (Mesh_t4241756145 * __this, List_1_t1967039240 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t1967039240 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t1967039240 * L_1 = ___values0; NullCheck((List_1_t1967039240 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t1967039240 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t1967039240 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector2>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector2_t4282066565_m961682405_gshared (Mesh_t4241756145 * __this, List_1_t1355284821 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t1355284821 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t1355284821 * L_1 = ___values0; NullCheck((List_1_t1355284821 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t1355284821 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t1355284821 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector3>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector3_t4282066566_m2423262404_gshared (Mesh_t4241756145 * __this, List_1_t1355284822 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t1355284822 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t1355284822 * L_1 = ___values0; NullCheck((List_1_t1355284822 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t1355284822 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t1355284822 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Int32 UnityEngine.Mesh::SafeLength<UnityEngine.Vector4>(System.Collections.Generic.List`1<T>) extern "C" int32_t Mesh_SafeLength_TisVector4_t4282066567_m3884842403_gshared (Mesh_t4241756145 * __this, List_1_t1355284823 * ___values0, const MethodInfo* method) { int32_t G_B3_0 = 0; { List_1_t1355284823 * L_0 = ___values0; if (!L_0) { goto IL_0011; } } { List_1_t1355284823 * L_1 = ___values0; NullCheck((List_1_t1355284823 *)L_1); int32_t L_2 = (( int32_t (*) (List_1_t1355284823 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t1355284823 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); G_B3_0 = L_2; goto IL_0012; } IL_0011: { G_B3_0 = 0; } IL_0012: { return G_B3_0; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<AllSingleton/Contacts,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m523436603_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1173546528 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1173546528 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1173546528 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t1173546528 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<AllSingleton/Contacts,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisContacts_t352143704_TisIl2CppObject_m3538835375_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1173546528 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1173546528 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t1173546528 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t3093093156 * L_5 = (OrderedSequence_2_t3093093156 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t3093093156 *, Il2CppObject*, Func_2_t1173546528 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t1173546528 *)L_3, (Il2CppObject*)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3718628771_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1019035454 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t1019035454 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3800996057_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1019035454 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t1019035454 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t2938582082 * L_5 = (OrderedSequence_2_t2938582082 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t2938582082 *, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t1019035454 *)L_3, (Il2CppObject*)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3362583304_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t3279826981 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t3279826981 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t3279826981 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t3279826981 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisInt32_t1153838500_m3008866430_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t3279826981 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t3279826981 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t3279826981 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t904406313 * L_5 = (OrderedSequence_2_t904406313 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t904406313 *, Il2CppObject*, Func_2_t3279826981 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t3279826981 *)L_3, (Il2CppObject*)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3184215231_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t2001837556 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t2001837556 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t2001837556 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t2001837556 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<ConsoleApplication.LocalProcessing/StaffInformatino,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisStaffInformatino_t2939901716_TisIl2CppObject_m3118078707_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t2001837556 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t2001837556 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t2001837556 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t3921384184 * L_5 = (OrderedSequence_2_t3921384184 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t3921384184 *, Il2CppObject*, Func_2_t2001837556 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t2001837556 *)L_3, (Il2CppObject*)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m3200125998_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t184564025 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t184564025 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderBy_TisIl2CppObject_TisIl2CppObject_m790313833_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t184564025 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t184564025 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t2104110653 * L_5 = (OrderedSequence_2_t2104110653 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t2104110653 *, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t184564025 *)L_3, (Il2CppObject*)L_4, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m2002680699_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1019035454 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t1019035454 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<ConsoleApplication.LocalProcessing/DeviceProperties,System.Int32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisDeviceProperties_t2492701999_TisInt32_t1153838500_m3854179185_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t1019035454 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t1019035454 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t1019035454 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t2938582082 * L_5 = (OrderedSequence_2_t2938582082 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t2938582082 *, Il2CppObject*, Func_2_t1019035454 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t1019035454 *)L_3, (Il2CppObject*)L_4, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3099477190_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t184564025 * L_1 = ___keySelector1; Il2CppObject* L_2 = (( Il2CppObject* (*) (Il2CppObject * /* static, unused */, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (Il2CppObject*)L_0, (Func_2_t184564025 *)L_1, (Il2CppObject*)NULL, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_2; } } // System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderByDescending<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>,System.Collections.Generic.IComparer`1<TKey>) extern "C" Il2CppObject* Enumerable_OrderByDescending_TisIl2CppObject_TisIl2CppObject_m3138525649_gshared (Il2CppObject * __this /* static, unused */, Il2CppObject* ___source0, Func_2_t184564025 * ___keySelector1, Il2CppObject* ___comparer2, const MethodInfo* method) { { Il2CppObject* L_0 = ___source0; Func_2_t184564025 * L_1 = ___keySelector1; Check_SourceAndKeySelector_m1357342302(NULL /*static, unused*/, (Il2CppObject *)L_0, (Il2CppObject *)L_1, /*hidden argument*/NULL); Il2CppObject* L_2 = ___source0; Func_2_t184564025 * L_3 = ___keySelector1; Il2CppObject* L_4 = ___comparer2; OrderedSequence_2_t2104110653 * L_5 = (OrderedSequence_2_t2104110653 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (OrderedSequence_2_t2104110653 *, Il2CppObject*, Func_2_t184564025 *, Il2CppObject*, int32_t, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_5, (Il2CppObject*)L_2, (Func_2_t184564025 *)L_3, (Il2CppObject*)L_4, (int32_t)1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_5; } } // System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty/Getter`2<T,R>,System.Object) extern "C" Il2CppObject * MonoProperty_GetterAdapterFrame_TisIl2CppObject_TisIl2CppObject_m1731689598_gshared (Il2CppObject * __this /* static, unused */, Getter_2_t2712548107 * ___getter0, Il2CppObject * ___obj1, const MethodInfo* method) { { Getter_2_t2712548107 * L_0 = ___getter0; Il2CppObject * L_1 = ___obj1; NullCheck((Getter_2_t2712548107 *)L_0); Il2CppObject * L_2 = (( Il2CppObject * (*) (Getter_2_t2712548107 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Getter_2_t2712548107 *)L_0, (Il2CppObject *)((Il2CppObject *)Castclass(L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); return L_2; } } // System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty/StaticGetter`1<R>,System.Object) extern "C" Il2CppObject * MonoProperty_StaticGetterAdapterFrame_TisIl2CppObject_m3228278087_gshared (Il2CppObject * __this /* static, unused */, StaticGetter_1_t3245381133 * ___getter0, Il2CppObject * ___obj1, const MethodInfo* method) { { StaticGetter_1_t3245381133 * L_0 = ___getter0; NullCheck((StaticGetter_1_t3245381133 *)L_0); Il2CppObject * L_1 = (( Il2CppObject * (*) (StaticGetter_1_t3245381133 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((StaticGetter_1_t3245381133 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); return L_1; } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1193809274_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t67468338 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t67468338 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t67468338 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m4277840466_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t1391333008 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t1391333008 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t1391333008 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3893662906_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t3986127068 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t3986127068 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t3986127068 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m1431432794_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t2340078120 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t2340078120 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t2340078120 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m3571034998_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t1047223528 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t1047223528 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t1047223528 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1869296454_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t775239064 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t775239064 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t775239064 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m1646714633_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t1558294869 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t1558294869 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t1558294869 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m2914610139_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t4126622711 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t4126622711 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t4126622711 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m4183419652_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t2006159996 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t2006159996 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t2006159996 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m2708124122_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t1967117138 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t1967117138 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t1967117138 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m3395166778_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t2280135028 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t2280135028 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t2280135028 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m1562419059_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t4267772355 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t4267772355 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t4267772355 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m2872210141_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t675430313 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t675430313 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t675430313 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m3640193476_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t980437966 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t980437966 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t980437966 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m2510062175_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t66211615 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t66211615 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t66211615 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m3034629155_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t3243674587 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t3243674587 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t3243674587 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m2912098178_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t3133199874 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t3133199874 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t3133199874 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.Single DG.Tweening.Tweener::DoUpdateDelay<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>,System.Single) extern "C" float Tweener_DoUpdateDelay_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m2184002880_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, float ___elapsed1, const MethodInfo* method) { float V_0 = 0.0f; { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); float L_1 = (float)((Tween_t675658773 *)L_0)->get_delay_26(); V_0 = (float)L_1; float L_2 = ___elapsed1; float L_3 = V_0; if ((!(((float)L_2) > ((float)L_3)))) { goto IL_001d; } } { TweenerCore_3_t990994486 * L_4 = ___t0; float L_5 = V_0; NullCheck(L_4); ((Tween_t675658773 *)L_4)->set_elapsedDelay_48(L_5); TweenerCore_3_t990994486 * L_6 = ___t0; NullCheck(L_6); ((Tween_t675658773 *)L_6)->set_delayComplete_49((bool)1); float L_7 = ___elapsed1; float L_8 = V_0; return ((float)((float)L_7-(float)L_8)); } IL_001d: { TweenerCore_3_t990994486 * L_9 = ___t0; float L_10 = ___elapsed1; NullCheck(L_9); ((Tween_t675658773 *)L_9)->set_elapsedDelay_48(L_10); return (0.0f); } } // System.String NGUITools::GetTypeName<System.Object>() extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral2710; extern Il2CppCodeGenString* _stringLiteral108037399; extern const uint32_t NGUITools_GetTypeName_TisIl2CppObject_m1633770405_MetadataUsageId; extern "C" String_t* NGUITools_GetTypeName_TisIl2CppObject_m1633770405_gshared (Il2CppObject * __this /* static, unused */, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (NGUITools_GetTypeName_TisIl2CppObject_m1633770405_MetadataUsageId); s_Il2CppMethodIntialized = true; } String_t* V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_0 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)), /*hidden argument*/NULL); NullCheck((Type_t *)L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Type::ToString() */, (Type_t *)L_0); V_0 = (String_t*)L_1; String_t* L_2 = V_0; NullCheck((String_t*)L_2); bool L_3 = String_StartsWith_m1500793453((String_t*)L_2, (String_t*)_stringLiteral2710, /*hidden argument*/NULL); if (!L_3) { goto IL_002d; } } { String_t* L_4 = V_0; NullCheck((String_t*)L_4); String_t* L_5 = String_Substring_m2809233063((String_t*)L_4, (int32_t)2, /*hidden argument*/NULL); V_0 = (String_t*)L_5; goto IL_0046; } IL_002d: { String_t* L_6 = V_0; NullCheck((String_t*)L_6); bool L_7 = String_StartsWith_m1500793453((String_t*)L_6, (String_t*)_stringLiteral108037399, /*hidden argument*/NULL); if (!L_7) { goto IL_0046; } } { String_t* L_8 = V_0; NullCheck((String_t*)L_8); String_t* L_9 = String_Substring_m2809233063((String_t*)L_8, (int32_t)((int32_t)12), /*hidden argument*/NULL); V_0 = (String_t*)L_9; } IL_0046: { String_t* L_10 = V_0; return L_10; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisColor2_t2672154097_TisColor2_t2672154097_TisColorOptions_t3802927537_m1811906643_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t67468338 * ___t0, const MethodInfo* method) { TweenerCore_3_t67468338 * G_B4_0 = NULL; TweenerCore_3_t67468338 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t67468338 * G_B5_1 = NULL; { TweenerCore_3_t67468338 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t67468338 * L_2 = ___t0; TweenerCore_3_t67468338 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t551274153 * L_4 = (ABSTweenPlugin_3_t551274153 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t67468338 * L_5 = ___t0; NullCheck(L_5); ColorOptions_t3802927537 L_6 = (ColorOptions_t3802927537 )L_5->get_plugOptions_56(); TweenerCore_3_t67468338 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t67468338 * L_9 = ___t0; NullCheck(L_9); Color2_t2672154097 L_10 = (Color2_t2672154097 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t551274153 *)L_4); float L_11 = VirtFuncInvoker3< float, ColorOptions_t3802927537 , float, Color2_t2672154097 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<DG.Tweening.Color2,DG.Tweening.Color2,DG.Tweening.Plugins.Options.ColorOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t551274153 *)L_4, (ColorOptions_t3802927537 )L_6, (float)L_8, (Color2_t2672154097 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t67468338 * L_12 = ___t0; TweenerCore_3_t67468338 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t67468338 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t67468338 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisDouble_t3868226565_TisDouble_t3868226565_TisNoOptions_t385204223_m3555045487_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1391333008 * ___t0, const MethodInfo* method) { TweenerCore_3_t1391333008 * G_B4_0 = NULL; TweenerCore_3_t1391333008 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t1391333008 * G_B5_1 = NULL; { TweenerCore_3_t1391333008 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t1391333008 * L_2 = ___t0; TweenerCore_3_t1391333008 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1875138823 * L_4 = (ABSTweenPlugin_3_t1875138823 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t1391333008 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t1391333008 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t1391333008 * L_9 = ___t0; NullCheck(L_9); double L_10 = (double)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1875138823 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, double >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Double,System.Double,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1875138823 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (double)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t1391333008 * L_12 = ___t0; TweenerCore_3_t1391333008 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t1391333008 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t1391333008 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisInt32_t1153838500_TisInt32_t1153838500_TisNoOptions_t385204223_m3467319639_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3986127068 * ___t0, const MethodInfo* method) { TweenerCore_3_t3986127068 * G_B4_0 = NULL; TweenerCore_3_t3986127068 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t3986127068 * G_B5_1 = NULL; { TweenerCore_3_t3986127068 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t3986127068 * L_2 = ___t0; TweenerCore_3_t3986127068 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t174965587 * L_4 = (ABSTweenPlugin_3_t174965587 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t3986127068 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t3986127068 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t3986127068 * L_9 = ___t0; NullCheck(L_9); int32_t L_10 = (int32_t)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t174965587 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, int32_t >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int32,System.Int32,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t174965587 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (int32_t)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t3986127068 * L_12 = ___t0; TweenerCore_3_t3986127068 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t3986127068 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t3986127068 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisInt64_t1153838595_TisInt64_t1153838595_TisNoOptions_t385204223_m3444558583_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2340078120 * ___t0, const MethodInfo* method) { TweenerCore_3_t2340078120 * G_B4_0 = NULL; TweenerCore_3_t2340078120 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t2340078120 * G_B5_1 = NULL; { TweenerCore_3_t2340078120 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t2340078120 * L_2 = ___t0; TweenerCore_3_t2340078120 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2823883935 * L_4 = (ABSTweenPlugin_3_t2823883935 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t2340078120 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t2340078120 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t2340078120 * L_9 = ___t0; NullCheck(L_9); int64_t L_10 = (int64_t)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t2823883935 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, int64_t >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Int64,System.Int64,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t2823883935 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (int64_t)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t2340078120 * L_12 = ___t0; TweenerCore_3_t2340078120 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t2340078120 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t2340078120 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisNoOptions_t385204223_m2017837203_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1047223528 * ___t0, const MethodInfo* method) { TweenerCore_3_t1047223528 * G_B4_0 = NULL; TweenerCore_3_t1047223528 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t1047223528 * G_B5_1 = NULL; { TweenerCore_3_t1047223528 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t1047223528 * L_2 = ___t0; TweenerCore_3_t1047223528 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1531029343 * L_4 = (ABSTweenPlugin_3_t1531029343 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t1047223528 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t1047223528 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t1047223528 * L_9 = ___t0; NullCheck(L_9); Il2CppObject * L_10 = (Il2CppObject *)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1531029343 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, Il2CppObject * >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1531029343 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (Il2CppObject *)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t1047223528 * L_12 = ___t0; TweenerCore_3_t1047223528 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t1047223528 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t1047223528 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisIl2CppObject_TisIl2CppObject_TisStringOptions_t113219759_m1231635299_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t775239064 * ___t0, const MethodInfo* method) { TweenerCore_3_t775239064 * G_B4_0 = NULL; TweenerCore_3_t775239064 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t775239064 * G_B5_1 = NULL; { TweenerCore_3_t775239064 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t775239064 * L_2 = ___t0; TweenerCore_3_t775239064 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1259044879 * L_4 = (ABSTweenPlugin_3_t1259044879 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t775239064 * L_5 = ___t0; NullCheck(L_5); StringOptions_t113219759 L_6 = (StringOptions_t113219759 )L_5->get_plugOptions_56(); TweenerCore_3_t775239064 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t775239064 * L_9 = ___t0; NullCheck(L_9); Il2CppObject * L_10 = (Il2CppObject *)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1259044879 *)L_4); float L_11 = VirtFuncInvoker3< float, StringOptions_t113219759 , float, Il2CppObject * >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Object,System.Object,DG.Tweening.Plugins.Options.StringOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1259044879 *)L_4, (StringOptions_t113219759 )L_6, (float)L_8, (Il2CppObject *)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t775239064 * L_12 = ___t0; TweenerCore_3_t775239064 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t775239064 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t775239064 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisSingle_t4291918972_TisSingle_t4291918972_TisFloatOptions_t3421734040_m3323995554_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1558294869 * ___t0, const MethodInfo* method) { TweenerCore_3_t1558294869 * G_B4_0 = NULL; TweenerCore_3_t1558294869 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t1558294869 * G_B5_1 = NULL; { TweenerCore_3_t1558294869 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t1558294869 * L_2 = ___t0; TweenerCore_3_t1558294869 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2042100684 * L_4 = (ABSTweenPlugin_3_t2042100684 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t1558294869 * L_5 = ___t0; NullCheck(L_5); FloatOptions_t3421734040 L_6 = (FloatOptions_t3421734040 )L_5->get_plugOptions_56(); TweenerCore_3_t1558294869 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t1558294869 * L_9 = ___t0; NullCheck(L_9); float L_10 = (float)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t2042100684 *)L_4); float L_11 = VirtFuncInvoker3< float, FloatOptions_t3421734040 , float, float >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.Single,System.Single,DG.Tweening.Plugins.Options.FloatOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t2042100684 *)L_4, (FloatOptions_t3421734040 )L_6, (float)L_8, (float)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t1558294869 * L_12 = ___t0; TweenerCore_3_t1558294869 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t1558294869 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t1558294869 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisUInt32_t24667981_TisUInt32_t24667981_TisUintOptions_t859617990_m4087176504_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4126622711 * ___t0, const MethodInfo* method) { TweenerCore_3_t4126622711 * G_B4_0 = NULL; TweenerCore_3_t4126622711 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t4126622711 * G_B5_1 = NULL; { TweenerCore_3_t4126622711 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t4126622711 * L_2 = ___t0; TweenerCore_3_t4126622711 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t315461230 * L_4 = (ABSTweenPlugin_3_t315461230 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t4126622711 * L_5 = ___t0; NullCheck(L_5); UintOptions_t859617990 L_6 = (UintOptions_t859617990 )L_5->get_plugOptions_56(); TweenerCore_3_t4126622711 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t4126622711 * L_9 = ___t0; NullCheck(L_9); uint32_t L_10 = (uint32_t)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t315461230 *)L_4); float L_11 = VirtFuncInvoker3< float, UintOptions_t859617990 , float, uint32_t >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt32,System.UInt32,DG.Tweening.Plugins.Options.UintOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t315461230 *)L_4, (UintOptions_t859617990 )L_6, (float)L_8, (uint32_t)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t4126622711 * L_12 = ___t0; TweenerCore_3_t4126622711 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t4126622711 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t4126622711 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisUInt64_t24668076_TisUInt64_t24668076_TisNoOptions_t385204223_m1263153313_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2006159996 * ___t0, const MethodInfo* method) { TweenerCore_3_t2006159996 * G_B4_0 = NULL; TweenerCore_3_t2006159996 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t2006159996 * G_B5_1 = NULL; { TweenerCore_3_t2006159996 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t2006159996 * L_2 = ___t0; TweenerCore_3_t2006159996 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2489965811 * L_4 = (ABSTweenPlugin_3_t2489965811 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t2006159996 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t2006159996 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t2006159996 * L_9 = ___t0; NullCheck(L_9); uint64_t L_10 = (uint64_t)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t2489965811 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, uint64_t >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<System.UInt64,System.UInt64,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t2489965811 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (uint64_t)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t2006159996 * L_12 = ___t0; TweenerCore_3_t2006159996 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t2006159996 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t2006159996 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisColor_t4194546905_TisColor_t4194546905_TisColorOptions_t3802927537_m3965217843_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t1967117138 * ___t0, const MethodInfo* method) { TweenerCore_3_t1967117138 * G_B4_0 = NULL; TweenerCore_3_t1967117138 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t1967117138 * G_B5_1 = NULL; { TweenerCore_3_t1967117138 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t1967117138 * L_2 = ___t0; TweenerCore_3_t1967117138 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2450922953 * L_4 = (ABSTweenPlugin_3_t2450922953 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t1967117138 * L_5 = ___t0; NullCheck(L_5); ColorOptions_t3802927537 L_6 = (ColorOptions_t3802927537 )L_5->get_plugOptions_56(); TweenerCore_3_t1967117138 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t1967117138 * L_9 = ___t0; NullCheck(L_9); Color_t4194546905 L_10 = (Color_t4194546905 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t2450922953 *)L_4); float L_11 = VirtFuncInvoker3< float, ColorOptions_t3802927537 , float, Color_t4194546905 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Color,UnityEngine.Color,DG.Tweening.Plugins.Options.ColorOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t2450922953 *)L_4, (ColorOptions_t3802927537 )L_6, (float)L_8, (Color_t4194546905 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t1967117138 * L_12 = ___t0; TweenerCore_3_t1967117138 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t1967117138 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t1967117138 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisQuaternion_t1553702882_TisNoOptions_t385204223_m1888309719_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t2280135028 * ___t0, const MethodInfo* method) { TweenerCore_3_t2280135028 * G_B4_0 = NULL; TweenerCore_3_t2280135028 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t2280135028 * G_B5_1 = NULL; { TweenerCore_3_t2280135028 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t2280135028 * L_2 = ___t0; TweenerCore_3_t2280135028 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t2763940843 * L_4 = (ABSTweenPlugin_3_t2763940843 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t2280135028 * L_5 = ___t0; NullCheck(L_5); NoOptions_t385204223 L_6 = (NoOptions_t385204223 )L_5->get_plugOptions_56(); TweenerCore_3_t2280135028 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t2280135028 * L_9 = ___t0; NullCheck(L_9); Quaternion_t1553702882 L_10 = (Quaternion_t1553702882 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t2763940843 *)L_4); float L_11 = VirtFuncInvoker3< float, NoOptions_t385204223 , float, Quaternion_t1553702882 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Quaternion,DG.Tweening.Plugins.Options.NoOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t2763940843 *)L_4, (NoOptions_t385204223 )L_6, (float)L_8, (Quaternion_t1553702882 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t2280135028 * L_12 = ___t0; TweenerCore_3_t2280135028 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t2280135028 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t2280135028 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisQuaternion_t1553702882_TisVector3_t4282066566_TisQuaternionOptions_t261798402_m3032243340_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t4267772355 * ___t0, const MethodInfo* method) { TweenerCore_3_t4267772355 * G_B4_0 = NULL; TweenerCore_3_t4267772355 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t4267772355 * G_B5_1 = NULL; { TweenerCore_3_t4267772355 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t4267772355 * L_2 = ___t0; TweenerCore_3_t4267772355 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t456610874 * L_4 = (ABSTweenPlugin_3_t456610874 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t4267772355 * L_5 = ___t0; NullCheck(L_5); QuaternionOptions_t261798402 L_6 = (QuaternionOptions_t261798402 )L_5->get_plugOptions_56(); TweenerCore_3_t4267772355 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t4267772355 * L_9 = ___t0; NullCheck(L_9); Vector3_t4282066566 L_10 = (Vector3_t4282066566 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t456610874 *)L_4); float L_11 = VirtFuncInvoker3< float, QuaternionOptions_t261798402 , float, Vector3_t4282066566 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Quaternion,UnityEngine.Vector3,DG.Tweening.Plugins.Options.QuaternionOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t456610874 *)L_4, (QuaternionOptions_t261798402 )L_6, (float)L_8, (Vector3_t4282066566 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t4267772355 * L_12 = ___t0; TweenerCore_3_t4267772355 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t4267772355 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t4267772355 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisRect_t4241904616_TisRect_t4241904616_TisRectOptions_t1148721404_m1074730554_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t675430313 * ___t0, const MethodInfo* method) { TweenerCore_3_t675430313 * G_B4_0 = NULL; TweenerCore_3_t675430313 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t675430313 * G_B5_1 = NULL; { TweenerCore_3_t675430313 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t675430313 * L_2 = ___t0; TweenerCore_3_t675430313 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1159236128 * L_4 = (ABSTweenPlugin_3_t1159236128 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t675430313 * L_5 = ___t0; NullCheck(L_5); RectOptions_t1148721404 L_6 = (RectOptions_t1148721404 )L_5->get_plugOptions_56(); TweenerCore_3_t675430313 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t675430313 * L_9 = ___t0; NullCheck(L_9); Rect_t4241904616 L_10 = (Rect_t4241904616 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1159236128 *)L_4); float L_11 = VirtFuncInvoker3< float, RectOptions_t1148721404 , float, Rect_t4241904616 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Rect,UnityEngine.Rect,DG.Tweening.Plugins.Options.RectOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1159236128 *)L_4, (RectOptions_t1148721404 )L_6, (float)L_8, (Rect_t4241904616 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t675430313 * L_12 = ___t0; TweenerCore_3_t675430313 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t675430313 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t675430313 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector2_t4282066565_TisVector2_t4282066565_TisVectorOptions_t798145341_m2329363297_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t980437966 * ___t0, const MethodInfo* method) { TweenerCore_3_t980437966 * G_B4_0 = NULL; TweenerCore_3_t980437966 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t980437966 * G_B5_1 = NULL; { TweenerCore_3_t980437966 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t980437966 * L_2 = ___t0; TweenerCore_3_t980437966 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1464243781 * L_4 = (ABSTweenPlugin_3_t1464243781 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t980437966 * L_5 = ___t0; NullCheck(L_5); VectorOptions_t798145341 L_6 = (VectorOptions_t798145341 )L_5->get_plugOptions_56(); TweenerCore_3_t980437966 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t980437966 * L_9 = ___t0; NullCheck(L_9); Vector2_t4282066565 L_10 = (Vector2_t4282066565 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1464243781 *)L_4); float L_11 = VirtFuncInvoker3< float, VectorOptions_t798145341 , float, Vector2_t4282066565 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector2,UnityEngine.Vector2,DG.Tweening.Plugins.Options.VectorOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1464243781 *)L_4, (VectorOptions_t798145341 )L_6, (float)L_8, (Vector2_t4282066565 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t980437966 * L_12 = ___t0; TweenerCore_3_t980437966 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t980437966 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t980437966 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisPathOptions_t1132868507_m87396668_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t66211615 * ___t0, const MethodInfo* method) { TweenerCore_3_t66211615 * G_B4_0 = NULL; TweenerCore_3_t66211615 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t66211615 * G_B5_1 = NULL; { TweenerCore_3_t66211615 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t66211615 * L_2 = ___t0; TweenerCore_3_t66211615 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t550017430 * L_4 = (ABSTweenPlugin_3_t550017430 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t66211615 * L_5 = ___t0; NullCheck(L_5); PathOptions_t1132868507 L_6 = (PathOptions_t1132868507 )L_5->get_plugOptions_56(); TweenerCore_3_t66211615 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t66211615 * L_9 = ___t0; NullCheck(L_9); Il2CppObject * L_10 = (Il2CppObject *)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t550017430 *)L_4); float L_11 = VirtFuncInvoker3< float, PathOptions_t1132868507 , float, Il2CppObject * >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.PathOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t550017430 *)L_4, (PathOptions_t1132868507 )L_6, (float)L_8, (Il2CppObject *)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t66211615 * L_12 = ___t0; TweenerCore_3_t66211615 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t66211615 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t66211615 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisIl2CppObject_TisVector3ArrayOptions_t15364183_m1824200704_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3243674587 * ___t0, const MethodInfo* method) { TweenerCore_3_t3243674587 * G_B4_0 = NULL; TweenerCore_3_t3243674587 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t3243674587 * G_B5_1 = NULL; { TweenerCore_3_t3243674587 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t3243674587 * L_2 = ___t0; TweenerCore_3_t3243674587 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t3727480402 * L_4 = (ABSTweenPlugin_3_t3727480402 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t3243674587 * L_5 = ___t0; NullCheck(L_5); Vector3ArrayOptions_t15364183 L_6 = (Vector3ArrayOptions_t15364183 )L_5->get_plugOptions_56(); TweenerCore_3_t3243674587 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t3243674587 * L_9 = ___t0; NullCheck(L_9); Il2CppObject * L_10 = (Il2CppObject *)L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t3727480402 *)L_4); float L_11 = VirtFuncInvoker3< float, Vector3ArrayOptions_t15364183 , float, Il2CppObject * >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,System.Object,DG.Tweening.Plugins.Options.Vector3ArrayOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t3727480402 *)L_4, (Vector3ArrayOptions_t15364183 )L_6, (float)L_8, (Il2CppObject *)L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t3243674587 * L_12 = ___t0; TweenerCore_3_t3243674587 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t3243674587 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t3243674587 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector3_t4282066566_TisVector3_t4282066566_TisVectorOptions_t798145341_m3782159775_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t3133199874 * ___t0, const MethodInfo* method) { TweenerCore_3_t3133199874 * G_B4_0 = NULL; TweenerCore_3_t3133199874 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t3133199874 * G_B5_1 = NULL; { TweenerCore_3_t3133199874 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t3133199874 * L_2 = ___t0; TweenerCore_3_t3133199874 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t3617005689 * L_4 = (ABSTweenPlugin_3_t3617005689 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t3133199874 * L_5 = ___t0; NullCheck(L_5); VectorOptions_t798145341 L_6 = (VectorOptions_t798145341 )L_5->get_plugOptions_56(); TweenerCore_3_t3133199874 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t3133199874 * L_9 = ___t0; NullCheck(L_9); Vector3_t4282066566 L_10 = (Vector3_t4282066566 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t3617005689 *)L_4); float L_11 = VirtFuncInvoker3< float, VectorOptions_t798145341 , float, Vector3_t4282066566 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector3,UnityEngine.Vector3,DG.Tweening.Plugins.Options.VectorOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t3617005689 *)L_4, (VectorOptions_t798145341 )L_6, (float)L_8, (Vector3_t4282066566 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t3133199874 * L_12 = ___t0; TweenerCore_3_t3133199874 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t3133199874 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t3133199874 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void DG.Tweening.Tweener::DOStartupDurationBased<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>(DG.Tweening.Core.TweenerCore`3<T1,T2,TPlugOptions>) extern "C" void Tweener_DOStartupDurationBased_TisVector4_t4282066567_TisVector4_t4282066567_TisVectorOptions_t798145341_m939988957_gshared (Il2CppObject * __this /* static, unused */, TweenerCore_3_t990994486 * ___t0, const MethodInfo* method) { TweenerCore_3_t990994486 * G_B4_0 = NULL; TweenerCore_3_t990994486 * G_B3_0 = NULL; float G_B5_0 = 0.0f; TweenerCore_3_t990994486 * G_B5_1 = NULL; { TweenerCore_3_t990994486 * L_0 = ___t0; NullCheck(L_0); bool L_1 = (bool)((Tween_t675658773 *)L_0)->get_isSpeedBased_21(); if (!L_1) { goto IL_002b; } } { TweenerCore_3_t990994486 * L_2 = ___t0; TweenerCore_3_t990994486 * L_3 = ___t0; NullCheck(L_3); ABSTweenPlugin_3_t1474800301 * L_4 = (ABSTweenPlugin_3_t1474800301 *)L_3->get_tweenPlugin_59(); TweenerCore_3_t990994486 * L_5 = ___t0; NullCheck(L_5); VectorOptions_t798145341 L_6 = (VectorOptions_t798145341 )L_5->get_plugOptions_56(); TweenerCore_3_t990994486 * L_7 = ___t0; NullCheck(L_7); float L_8 = (float)((Tween_t675658773 *)L_7)->get_duration_23(); TweenerCore_3_t990994486 * L_9 = ___t0; NullCheck(L_9); Vector4_t4282066567 L_10 = (Vector4_t4282066567 )L_9->get_changeValue_55(); NullCheck((ABSTweenPlugin_3_t1474800301 *)L_4); float L_11 = VirtFuncInvoker3< float, VectorOptions_t798145341 , float, Vector4_t4282066567 >::Invoke(9 /* System.Single DG.Tweening.Plugins.Core.ABSTweenPlugin`3<UnityEngine.Vector4,UnityEngine.Vector4,DG.Tweening.Plugins.Options.VectorOptions>::GetSpeedBasedDuration(TPlugOptions,System.Single,T2) */, (ABSTweenPlugin_3_t1474800301 *)L_4, (VectorOptions_t798145341 )L_6, (float)L_8, (Vector4_t4282066567 )L_10); NullCheck(L_2); ((Tween_t675658773 *)L_2)->set_duration_23(L_11); } IL_002b: { TweenerCore_3_t990994486 * L_12 = ___t0; TweenerCore_3_t990994486 * L_13 = ___t0; NullCheck(L_13); int32_t L_14 = (int32_t)((Tween_t675658773 *)L_13)->get_loops_24(); G_B3_0 = L_12; if ((((int32_t)L_14) > ((int32_t)(-1)))) { G_B4_0 = L_12; goto IL_003c; } } { G_B5_0 = (std::numeric_limits<float>::infinity()); G_B5_1 = G_B3_0; goto IL_004a; } IL_003c: { TweenerCore_3_t990994486 * L_15 = ___t0; NullCheck(L_15); float L_16 = (float)((Tween_t675658773 *)L_15)->get_duration_23(); TweenerCore_3_t990994486 * L_17 = ___t0; NullCheck(L_17); int32_t L_18 = (int32_t)((Tween_t675658773 *)L_17)->get_loops_24(); G_B5_0 = ((float)((float)L_16*(float)(((float)((float)L_18))))); G_B5_1 = G_B4_0; } IL_004a: { NullCheck(G_B5_1); ((Tween_t675658773 *)G_B5_1)->set_fullDuration_44(G_B5_0); return; } } // System.Void LitJson.JsonMapper::RegisterExporter<System.Object>(LitJson.ExporterFunc`1<T>) extern Il2CppClass* ExporterFunc_t3330360473_il2cpp_TypeInfo_var; extern Il2CppClass* JsonMapper_t863513565_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern Il2CppClass* IDictionary_2_t3013656303_il2cpp_TypeInfo_var; extern const uint32_t JsonMapper_RegisterExporter_TisIl2CppObject_m354360644_MetadataUsageId; extern "C" void JsonMapper_RegisterExporter_TisIl2CppObject_m354360644_gshared (Il2CppObject * __this /* static, unused */, ExporterFunc_1_t2892523986 * ___exporter0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (JsonMapper_RegisterExporter_TisIl2CppObject_m354360644_MetadataUsageId); s_Il2CppMethodIntialized = true; } ExporterFunc_t3330360473 * V_0 = NULL; U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 * V_1 = NULL; { U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 * L_0 = (U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_1 = (U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 *)L_0; U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 * L_1 = V_1; ExporterFunc_1_t2892523986 * L_2 = ___exporter0; NullCheck(L_1); L_1->set_exporter_0(L_2); U3CRegisterExporterU3Ec__AnonStoreyA_1_t4053462360 * L_3 = V_1; IntPtr_t L_4; L_4.set_m_value_0((void*)(void*)IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); ExporterFunc_t3330360473 * L_5 = (ExporterFunc_t3330360473 *)il2cpp_codegen_object_new(ExporterFunc_t3330360473_il2cpp_TypeInfo_var); ExporterFunc__ctor_m522211559(L_5, (Il2CppObject *)L_3, (IntPtr_t)L_4, /*hidden argument*/NULL); V_0 = (ExporterFunc_t3330360473 *)L_5; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_t863513565_il2cpp_TypeInfo_var); Il2CppObject* L_6 = ((JsonMapper_t863513565_StaticFields*)JsonMapper_t863513565_il2cpp_TypeInfo_var->static_fields)->get_custom_exporters_table_3(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); ExporterFunc_t3330360473 * L_8 = V_0; NullCheck((Il2CppObject*)L_6); InterfaceActionInvoker2< Type_t *, ExporterFunc_t3330360473 * >::Invoke(4 /* System.Void System.Collections.Generic.IDictionary`2<System.Type,LitJson.ExporterFunc>::set_Item(!0,!1) */, IDictionary_2_t3013656303_il2cpp_TypeInfo_var, (Il2CppObject*)L_6, (Type_t *)L_7, (ExporterFunc_t3330360473 *)L_8); return; } } // System.Void LitJson.JsonMapper::RegisterImporter<System.Object,System.Object>(LitJson.ImporterFunc`2<TJson,TValue>) extern Il2CppClass* ImporterFunc_t2138319818_il2cpp_TypeInfo_var; extern Il2CppClass* JsonMapper_t863513565_il2cpp_TypeInfo_var; extern Il2CppClass* Type_t_il2cpp_TypeInfo_var; extern const uint32_t JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062_MetadataUsageId; extern "C" void JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062_gshared (Il2CppObject * __this /* static, unused */, ImporterFunc_2_t2321565487 * ___importer0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (JsonMapper_RegisterImporter_TisIl2CppObject_TisIl2CppObject_m3701076062_MetadataUsageId); s_Il2CppMethodIntialized = true; } ImporterFunc_t2138319818 * V_0 = NULL; U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 * V_1 = NULL; { U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 * L_0 = (U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); (( void (*) (U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); V_1 = (U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 *)L_0; U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 * L_1 = V_1; ImporterFunc_2_t2321565487 * L_2 = ___importer0; NullCheck(L_1); L_1->set_importer_0(L_2); U3CRegisterImporterU3Ec__AnonStoreyB_2_t4114309998 * L_3 = V_1; IntPtr_t L_4; L_4.set_m_value_0((void*)(void*)IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)); ImporterFunc_t2138319818 * L_5 = (ImporterFunc_t2138319818 *)il2cpp_codegen_object_new(ImporterFunc_t2138319818_il2cpp_TypeInfo_var); ImporterFunc__ctor_m4195038104(L_5, (Il2CppObject *)L_3, (IntPtr_t)L_4, /*hidden argument*/NULL); V_0 = (ImporterFunc_t2138319818 *)L_5; IL2CPP_RUNTIME_CLASS_INIT(JsonMapper_t863513565_il2cpp_TypeInfo_var); Il2CppObject* L_6 = ((JsonMapper_t863513565_StaticFields*)JsonMapper_t863513565_il2cpp_TypeInfo_var->static_fields)->get_custom_importers_table_5(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 3)), /*hidden argument*/NULL); Type_t * L_8 = Type_GetTypeFromHandle_m3806905434(NULL /*static, unused*/, (RuntimeTypeHandle_t2669177232 )LoadTypeToken(IL2CPP_RGCTX_TYPE(method->rgctx_data, 4)), /*hidden argument*/NULL); ImporterFunc_t2138319818 * L_9 = V_0; JsonMapper_RegisterImporter_m3654643262(NULL /*static, unused*/, (Il2CppObject*)L_6, (Type_t *)L_7, (Type_t *)L_8, (ImporterFunc_t2138319818 *)L_9, /*hidden argument*/NULL); return; } } // System.Void NGUITools::Execute<System.Object>(UnityEngine.GameObject,System.String) extern "C" void NGUITools_Execute_TisIl2CppObject_m788594434_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___go0, String_t* ___funcName1, const MethodInfo* method) { ObjectU5BU5D_t1108656482* V_0 = NULL; Il2CppObject * V_1 = NULL; ObjectU5BU5D_t1108656482* V_2 = NULL; int32_t V_3 = 0; MethodInfo_t * V_4 = NULL; { GameObject_t3674682005 * L_0 = ___go0; NullCheck((GameObject_t3674682005 *)L_0); ObjectU5BU5D_t1108656482* L_1 = (( ObjectU5BU5D_t1108656482* (*) (GameObject_t3674682005 *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((GameObject_t3674682005 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); V_0 = (ObjectU5BU5D_t1108656482*)L_1; ObjectU5BU5D_t1108656482* L_2 = V_0; V_2 = (ObjectU5BU5D_t1108656482*)L_2; V_3 = (int32_t)0; goto IL_0049; } IL_0010: { ObjectU5BU5D_t1108656482* L_3 = V_2; int32_t L_4 = V_3; NullCheck(L_3); IL2CPP_ARRAY_BOUNDS_CHECK(L_3, L_4); int32_t L_5 = L_4; Il2CppObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = (Il2CppObject *)L_6; NullCheck((Il2CppObject *)(*(&V_1))); Type_t * L_7 = Object_GetType_m2022236990((Il2CppObject *)(*(&V_1)), /*hidden argument*/NULL); String_t* L_8 = ___funcName1; NullCheck((Type_t *)L_7); MethodInfo_t * L_9 = Type_GetMethod_m534507110((Type_t *)L_7, (String_t*)L_8, (int32_t)((int32_t)52), /*hidden argument*/NULL); V_4 = (MethodInfo_t *)L_9; MethodInfo_t * L_10 = V_4; if (!L_10) { goto IL_0045; } } { MethodInfo_t * L_11 = V_4; Il2CppObject * L_12 = V_1; NullCheck((MethodBase_t318515428 *)L_11); MethodBase_Invoke_m3435166155((MethodBase_t318515428 *)L_11, (Il2CppObject *)L_12, (ObjectU5BU5D_t1108656482*)(ObjectU5BU5D_t1108656482*)NULL, /*hidden argument*/NULL); } IL_0045: { int32_t L_13 = V_3; V_3 = (int32_t)((int32_t)((int32_t)L_13+(int32_t)1)); } IL_0049: { int32_t L_14 = V_3; ObjectU5BU5D_t1108656482* L_15 = V_2; NullCheck(L_15); if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_15)->max_length))))))) { goto IL_0010; } } { return; } } // System.Void NGUITools::ExecuteAll<System.Object>(UnityEngine.GameObject,System.String) extern Il2CppClass* NGUITools_t237277134_il2cpp_TypeInfo_var; extern const uint32_t NGUITools_ExecuteAll_TisIl2CppObject_m4191004063_MetadataUsageId; extern "C" void NGUITools_ExecuteAll_TisIl2CppObject_m4191004063_gshared (Il2CppObject * __this /* static, unused */, GameObject_t3674682005 * ___root0, String_t* ___funcName1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (NGUITools_ExecuteAll_TisIl2CppObject_m4191004063_MetadataUsageId); s_Il2CppMethodIntialized = true; } Transform_t1659122786 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { GameObject_t3674682005 * L_0 = ___root0; String_t* L_1 = ___funcName1; IL2CPP_RUNTIME_CLASS_INIT(NGUITools_t237277134_il2cpp_TypeInfo_var); (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(NULL /*static, unused*/, (GameObject_t3674682005 *)L_0, (String_t*)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); GameObject_t3674682005 * L_2 = ___root0; NullCheck((GameObject_t3674682005 *)L_2); Transform_t1659122786 * L_3 = GameObject_get_transform_m1278640159((GameObject_t3674682005 *)L_2, /*hidden argument*/NULL); V_0 = (Transform_t1659122786 *)L_3; V_1 = (int32_t)0; Transform_t1659122786 * L_4 = V_0; NullCheck((Transform_t1659122786 *)L_4); int32_t L_5 = Transform_get_childCount_m2107810675((Transform_t1659122786 *)L_4, /*hidden argument*/NULL); V_2 = (int32_t)L_5; goto IL_0032; } IL_001c: { Transform_t1659122786 * L_6 = V_0; int32_t L_7 = V_1; NullCheck((Transform_t1659122786 *)L_6); Transform_t1659122786 * L_8 = Transform_GetChild_m4040462992((Transform_t1659122786 *)L_6, (int32_t)L_7, /*hidden argument*/NULL); NullCheck((Component_t3501516275 *)L_8); GameObject_t3674682005 * L_9 = Component_get_gameObject_m1170635899((Component_t3501516275 *)L_8, /*hidden argument*/NULL); String_t* L_10 = ___funcName1; IL2CPP_RUNTIME_CLASS_INIT(NGUITools_t237277134_il2cpp_TypeInfo_var); (( void (*) (Il2CppObject * /* static, unused */, GameObject_t3674682005 *, String_t*, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(NULL /*static, unused*/, (GameObject_t3674682005 *)L_9, (String_t*)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)); int32_t L_11 = V_1; V_1 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_0032: { int32_t L_12 = V_1; int32_t L_13 = V_2; if ((((int32_t)L_12) < ((int32_t)L_13))) { goto IL_001c; } } { return; } } // System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral2872016438; extern const uint32_t Array_ForEach_TisIl2CppObject_m1927038056_MetadataUsageId; extern "C" void Array_ForEach_TisIl2CppObject_m1927038056_gshared (Il2CppObject * __this /* static, unused */, ObjectU5BU5D_t1108656482* ___array0, Action_1_t271665211 * ___action1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_ForEach_TisIl2CppObject_m1927038056_MetadataUsageId); s_Il2CppMethodIntialized = true; } Il2CppObject * V_0 = NULL; ObjectU5BU5D_t1108656482* V_1 = NULL; int32_t V_2 = 0; { ObjectU5BU5D_t1108656482* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { Action_1_t271665211 * L_2 = ___action1; if (L_2) { goto IL_0022; } } { ArgumentNullException_t3573189601 * L_3 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_3, (String_t*)_stringLiteral2872016438, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3); } IL_0022: { ObjectU5BU5D_t1108656482* L_4 = ___array0; V_1 = (ObjectU5BU5D_t1108656482*)L_4; V_2 = (int32_t)0; goto IL_003e; } IL_002b: { ObjectU5BU5D_t1108656482* L_5 = V_1; int32_t L_6 = V_2; NullCheck(L_5); IL2CPP_ARRAY_BOUNDS_CHECK(L_5, L_6); int32_t L_7 = L_6; Il2CppObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); V_0 = (Il2CppObject *)L_8; Action_1_t271665211 * L_9 = ___action1; Il2CppObject * L_10 = V_0; NullCheck((Action_1_t271665211 *)L_9); (( void (*) (Action_1_t271665211 *, Il2CppObject *, const MethodInfo*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Action_1_t271665211 *)L_9, (Il2CppObject *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)); int32_t L_11 = V_2; V_2 = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1)); } IL_003e: { int32_t L_12 = V_2; ObjectU5BU5D_t1108656482* L_13 = V_1; NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((Il2CppArray *)L_13)->max_length))))))) { goto IL_002b; } } { return; } } // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/Contacts>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979_gshared (Il2CppArray * __this, Contacts_t352143704 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContacts_t352143704_m3081232979_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/detailsProperty>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149_gshared (Il2CppArray * __this, detailsProperty_t1057943986 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisdetailsProperty_t1057943986_m3484516149_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/DeviceDetailedInformation>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812_gshared (Il2CppArray * __this, DeviceDetailedInformation_t4234054081 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t4234054081_m4058415812_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<AllSingleton/surveyProperty>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631_gshared (Il2CppArray * __this, surveyProperty_t884569204 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TissurveyProperty_t884569204_m422187631_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459_gshared (Il2CppArray * __this, DeviceDetailedInformation_t3668321760 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDeviceDetailedInformation_t3668321760_m2769935459_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/DeviceProperties>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746_gshared (Il2CppArray * __this, DeviceProperties_t2492701999 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDeviceProperties_t2492701999_m3697848746_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816_gshared (Il2CppArray * __this, peopleOrderPatrol_t4292956421 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TispeopleOrderPatrol_t4292956421_m3255447816_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/peoplePatrol>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468_gshared (Il2CppArray * __this, peoplePatrol_t2522972577 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TispeoplePatrol_t2522972577_m1299229468_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<ConsoleApplication.LocalProcessing/StaffInformatino>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239_gshared (Il2CppArray * __this, StaffInformatino_t2939901716 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisStaffInformatino_t2939901716_m2267476239_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<DG.Tweening.Plugins.Core.PathCore.ControlPoint>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179_gshared (Il2CppArray * __this, ControlPoint_t3116362155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisControlPoint_t3116362155_m3645779179_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<HighlightingSystem.Highlighter/Mode>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisMode_t2711727618_m2224855293_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<HighlightingSystem.HighlighterRenderer/Data>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161_gshared (Il2CppArray * __this, Data_t3265512710 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisData_t3265512710_m3094172161_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<LitJson.ArrayMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572_gshared (Il2CppArray * __this, ArrayMetadata_t4058342910 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisArrayMetadata_t4058342910_m3760607572_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<LitJson.ObjectMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248_gshared (Il2CppArray * __this, ObjectMetadata_t2009294498 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisObjectMetadata_t2009294498_m2169349248_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<LitJson.PropertyMetadata>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566_gshared (Il2CppArray * __this, PropertyMetadata_t4066634616 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPropertyMetadata_t4066634616_m3701300566_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer/TableRange>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620_gshared (Il2CppArray * __this, TableRange_t3372848153 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTableRange_t3372848153_m2337806620_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<Mono.Security.Protocol.Tls.Handshake.ClientCertificateType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisClientCertificateType_t3167042548_m118012940_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<Mono.Security.Uri/UriScheme>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990_gshared (Il2CppArray * __this, UriScheme_t3372318283 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUriScheme_t3372318283_m3558561990_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<Mono.Xml2.XmlTextReader/TagName>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376_gshared (Il2CppArray * __this, TagName_t2016006645 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTagName_t2016006645_m2805803376_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<PresetSelector/Preset>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595_gshared (Il2CppArray * __this, Preset_t2393284144 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPreset_t2393284144_m3765111595_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.ArraySegment`1<System.Byte>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780_gshared (Il2CppArray * __this, ArraySegment_1_t2188033608 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisArraySegment_1_t2188033608_m762148780_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548_gshared (Il2CppArray * __this, bool ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBoolean_t476798718_m2937021548_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisByte_t2862609660_m2824842722_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272_gshared (Il2CppArray * __this, Il2CppChar ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisChar_t2862622538_m1833044272_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735_gshared (Il2CppArray * __this, DictionaryEntry_t1751606614 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDictionaryEntry_t1751606614_m632849735_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.HashSet`1/Link<System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324_gshared (Il2CppArray * __this, Link_t2122599155 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLink_t2122599155_m1681629324_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988_gshared (Il2CppArray * __this, KeyValuePair_2_t1049882445 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1049882445_m4082949988_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577_gshared (Il2CppArray * __this, KeyValuePair_2_t4066860316 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4066860316_m2109261577_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,UnityEngine.VR.VRDeviceType>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248_gshared (Il2CppArray * __this, KeyValuePair_2_t3980314737 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3980314737_m3065989248_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ArrayMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637_gshared (Il2CppArray * __this, KeyValuePair_2_t1832195516 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1832195516_m860997637_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.ObjectMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703_gshared (Il2CppArray * __this, KeyValuePair_2_t4078114400 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t4078114400_m1851624703_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,LitJson.PropertyMetadata>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313_gshared (Il2CppArray * __this, KeyValuePair_2_t1840487222 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1840487222_m3065590313_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243_gshared (Il2CppArray * __this, KeyValuePair_2_t2545618620 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2545618620_m2697764243_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429_gshared (Il2CppArray * __this, KeyValuePair_2_t3222658402 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3222658402_m4253688429_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952_gshared (Il2CppArray * __this, KeyValuePair_2_t1944668977 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t1944668977_m3107185952_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<UnityEngine.VR.VRDeviceType,System.Int32>>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478_gshared (Il2CppArray * __this, KeyValuePair_2_t3310123289 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3310123289_m3427923478_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Link>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396_gshared (Il2CppArray * __this, Link_t2063667470 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLink_t2063667470_m2712315396_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable/Slot>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400_gshared (Il2CppArray * __this, Slot_t2260530181 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSlot_t2260530181_m198710400_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Collections.SortedList/Slot>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733_gshared (Il2CppArray * __this, Slot_t2072023290 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSlot_t2072023290_m1820452733_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477_gshared (Il2CppArray * __this, DateTime_t4283661327 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDateTime_t4283661327_m2533807477_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357_gshared (Il2CppArray * __this, Decimal_t1954350631 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDecimal_t1954350631_m3392622357_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507_gshared (Il2CppArray * __this, double ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDouble_t3868226565_m1209094507_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376_gshared (Il2CppArray * __this, int16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt16_t1153838442_m2711932376_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt32_t1153838500_m2765496594_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089_gshared (Il2CppArray * __this, int64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt64_t1153838595_m2853231089_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017_gshared (Il2CppArray * __this, IntPtr_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisIntPtr_t_m1737013017_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489_gshared (Il2CppArray * __this, Il2CppObject * ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisIl2CppObject_m1497174489_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730_gshared (Il2CppArray * __this, CustomAttributeNamedArgument_t3059612989 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t3059612989_m394431730_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091_gshared (Il2CppArray * __this, CustomAttributeTypedArgument_t3301293422 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t3301293422_m784125091_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILGenerator/LabelData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275_gshared (Il2CppArray * __this, LabelData_t3207823784 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLabelData_t3207823784_m3262815275_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILGenerator/LabelFixup>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869_gshared (Il2CppArray * __this, LabelFixup_t660379442 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLabelFixup_t660379442_m3975085869_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.Emit.ILTokenInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416_gshared (Il2CppArray * __this, ILTokenInfo_t1354080954 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisILTokenInfo_t1354080954_m3211110416_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327_gshared (Il2CppArray * __this, ParameterModifier_t741930026 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisParameterModifier_t741930026_m353338327_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceReader/ResourceCacheItem>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236_gshared (Il2CppArray * __this, ResourceCacheItem_t2113902833 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisResourceCacheItem_t2113902833_m1196944236_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceReader/ResourceInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317_gshared (Il2CppArray * __this, ResourceInfo_t4013605874 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisResourceInfo_t4013605874_m1025747317_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.Serialization.Formatters.Binary.TypeTag>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720_gshared (Il2CppArray * __this, uint8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTypeTag_t2420703430_m3819879720_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935_gshared (Il2CppArray * __this, int8_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSByte_t1161769777_m252155935_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Security.Cryptography.X509Certificates.X509ChainStatus>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703_gshared (Il2CppArray * __this, X509ChainStatus_t766901931 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisX509ChainStatus_t766901931_m1340646703_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770_gshared (Il2CppArray * __this, float ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSingle_t4291918972_m1343964770_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.Mark>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661_gshared (Il2CppArray * __this, Mark_t3811539797 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisMark_t3811539797_m2851224661_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249_gshared (Il2CppArray * __this, TimeSpan_t413522987 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTimeSpan_t413522987_m28559249_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593_gshared (Il2CppArray * __this, uint16_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt16_t24667923_m4169993593_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811_gshared (Il2CppArray * __this, uint32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt32_t24667981_m4223557811_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010_gshared (Il2CppArray * __this, uint64_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt64_t24668076_m16325010_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Uri/UriScheme>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346_gshared (Il2CppArray * __this, UriScheme_t1290668975 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUriScheme_t1290668975_m127047346_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlNamespaceManager/NsDecl>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854_gshared (Il2CppArray * __this, NsDecl_t3658211563 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisNsDecl_t3658211563_m2531786854_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<System.Xml.XmlNamespaceManager/NsScope>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598_gshared (Il2CppArray * __this, NsScope_t1749213747 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisNsScope_t1749213747_m2854572598_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<TypewriterEffect/FadeEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920_gshared (Il2CppArray * __this, FadeEntry_t2858472101 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisFadeEntry_t2858472101_m1493802920_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UICamera/DepthEntry>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880_gshared (Il2CppArray * __this, DepthEntry_t1145614469 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDepthEntry_t1145614469_m3827898880_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.AnimatorStateInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156_gshared (Il2CppArray * __this, AnimatorStateInfo_t323110318 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisAnimatorStateInfo_t323110318_m1010504156_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Bounds>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271_gshared (Il2CppArray * __this, Bounds_t2711641849 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBounds_t2711641849_m693940271_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191_gshared (Il2CppArray * __this, Color_t4194546905 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisColor_t4194546905_m242765191_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color32>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398_gshared (Il2CppArray * __this, Color32_t598853688 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisColor32_t598853688_m1062775398_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522_gshared (Il2CppArray * __this, ContactPoint_t243083348 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContactPoint_t243083348_m1011040522_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint2D>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804_gshared (Il2CppArray * __this, ContactPoint2D_t4288432358 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContactPoint2D_t4288432358_m628987804_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.EventSystems.RaycastResult>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348_gshared (Il2CppArray * __this, RaycastResult_t3762661364 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastResult_t3762661364_m3052724348_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.Director.Playable>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716_gshared (Il2CppArray * __this, Playable_t70832698 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlayable_t70832698_m3138023716_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.KeyCode>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyCode_t3128317986_m3223270736_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928_gshared (Il2CppArray * __this, Keyframe_t4079056114 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyframe_t4079056114_m837365928_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ParticleSystem/Particle>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732_gshared (Il2CppArray * __this, Particle_t405273609 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisParticle_t405273609_m2477689732_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068_gshared (Il2CppArray * __this, RaycastHit_t4003175726 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastHit_t4003175726_m1799236068_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit2D>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414_gshared (Il2CppArray * __this, RaycastHit2D_t1374744384 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastHit2D_t1374744384_m2170663414_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Rendering.RenderTargetIdentifier>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204_gshared (Il2CppArray * __this, RenderTargetIdentifier_t1322160672 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRenderTargetIdentifier_t1322160672_m3887584204_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents/HitInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468_gshared (Il2CppArray * __this, HitInfo_t3209134097 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisHitInfo_t3209134097_m3621571468_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcAchievementData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131_gshared (Il2CppArray * __this, GcAchievementData_t3481375915 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGcAchievementData_t3481375915_m1186165131_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SocialPlatforms.GameCenter.GcScoreData>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038_gshared (Il2CppArray * __this, GcScoreData_t2181296590 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGcScoreData_t2181296590_m4245461038_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Touch>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203_gshared (Il2CppArray * __this, Touch_t4210255029 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTouch_t4210255029_m2920591203_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.InputField/ContentType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContentType_t2662964855_m2888046578_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UICharInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170_gshared (Il2CppArray * __this, UICharInfo_t65807484 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUICharInfo_t65807484_m3409861170_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UILineInfo>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256_gshared (Il2CppArray * __this, UILineInfo_t4113875482 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUILineInfo_t4113875482_m2242050256_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIVertex>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610_gshared (Il2CppArray * __this, UIVertex_t4244065212 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUIVertex_t4244065212_m469930610_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector2>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531_gshared (Il2CppArray * __this, Vector2_t4282066565 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector2_t4282066565_m1598036531_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector3>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052_gshared (Il2CppArray * __this, Vector3_t4282066566 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector3_t4282066566_m1598960052_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector4>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573_gshared (Il2CppArray * __this, Vector4_t4282066567 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector4_t4282066567_m1599883573_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.VR.VRDeviceType>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVRDeviceType_t4084270792_m205212418_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.DepthOfField/QualitySettings>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630_gshared (Il2CppArray * __this, QualitySettings_t2308822883 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisQualitySettings_t2308822883_m554641630_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.FXAA/Preset>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119_gshared (Il2CppArray * __this, Preset_t8910124 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPreset_t8910124_m3474099119_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<UnityStandardAssets.CinematicEffects.SMAA/QualitySettings>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872_gshared (Il2CppArray * __this, QualitySettings_t2868270621 ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisQualitySettings_t2868270621_m2284254872_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_Add<WMG_Data_Source/WMG_VariableTypes>(T) extern Il2CppClass* NotSupportedException_t1732551818_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral615244847; extern const uint32_t Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773_gshared (Il2CppArray * __this, int32_t ___item0, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisWMG_VariableTypes_t4265297442_m427167773_MetadataUsageId); s_Il2CppMethodIntialized = true; } { NotSupportedException_t1732551818 * L_0 = (NotSupportedException_t1732551818 *)il2cpp_codegen_object_new(NotSupportedException_t1732551818_il2cpp_TypeInfo_var); NotSupportedException__ctor_m133757637(L_0, (String_t*)_stringLiteral615244847, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0); } } // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/Contacts>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117_gshared (Il2CppArray * __this, ContactsU5BU5D_t2097638985* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TisContacts_t352143704_m457826117_MetadataUsageId); s_Il2CppMethodIntialized = true; } { ContactsU5BU5D_t2097638985* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); ContactsU5BU5D_t2097638985* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); ContactsU5BU5D_t2097638985* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { ContactsU5BU5D_t2097638985* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); ContactsU5BU5D_t2097638985* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/detailsProperty>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213_gshared (Il2CppArray * __this, detailsPropertyU5BU5D_t3868157767* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TisdetailsProperty_t1057943986_m849350213_MetadataUsageId); s_Il2CppMethodIntialized = true; } { detailsPropertyU5BU5D_t3868157767* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); detailsPropertyU5BU5D_t3868157767* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); detailsPropertyU5BU5D_t3868157767* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { detailsPropertyU5BU5D_t3868157767* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); detailsPropertyU5BU5D_t3868157767* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/DeviceDetailedInformation>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870_gshared (Il2CppArray * __this, DeviceDetailedInformationU5BU5D_t1518729756* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t4234054081_m3215934870_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DeviceDetailedInformationU5BU5D_t1518729756* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t1518729756* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t1518729756* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { DeviceDetailedInformationU5BU5D_t1518729756* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t1518729756* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<AllSingleton/surveyProperty>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609_gshared (Il2CppArray * __this, surveyPropertyU5BU5D_t3751806781* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TissurveyProperty_t884569204_m844437609_MetadataUsageId); s_Il2CppMethodIntialized = true; } { surveyPropertyU5BU5D_t3751806781* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); surveyPropertyU5BU5D_t3751806781* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); surveyPropertyU5BU5D_t3751806781* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { surveyPropertyU5BU5D_t3751806781* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); surveyPropertyU5BU5D_t3751806781* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/DeviceDetailedInformation>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047_gshared (Il2CppArray * __this, DeviceDetailedInformationU5BU5D_t2899977889* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TisDeviceDetailedInformation_t3668321760_m3831049047_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DeviceDetailedInformationU5BU5D_t2899977889* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t2899977889* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t2899977889* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { DeviceDetailedInformationU5BU5D_t2899977889* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DeviceDetailedInformationU5BU5D_t2899977889* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/DeviceProperties>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366_gshared (Il2CppArray * __this, DevicePropertiesU5BU5D_t665138486* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TisDeviceProperties_t2492701999_m772124366_MetadataUsageId); s_Il2CppMethodIntialized = true; } { DevicePropertiesU5BU5D_t665138486* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DevicePropertiesU5BU5D_t665138486* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); DevicePropertiesU5BU5D_t665138486* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { DevicePropertiesU5BU5D_t665138486* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); DevicePropertiesU5BU5D_t665138486* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } } // System.Void System.Array::InternalArray__ICollection_CopyTo<ConsoleApplication.LocalProcessing/peopleOrderPatrol>(T[],System.Int32) extern Il2CppClass* ArgumentNullException_t3573189601_il2cpp_TypeInfo_var; extern Il2CppClass* RankException_t3671413657_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentException_t928607144_il2cpp_TypeInfo_var; extern Il2CppClass* ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var; extern Il2CppCodeGenString* _stringLiteral93090393; extern Il2CppCodeGenString* _stringLiteral3363540468; extern Il2CppCodeGenString* _stringLiteral2331082323; extern Il2CppCodeGenString* _stringLiteral100346066; extern Il2CppCodeGenString* _stringLiteral2582657682; extern const uint32_t Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914_MetadataUsageId; extern "C" void Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914_gshared (Il2CppArray * __this, peopleOrderPatrolU5BU5D_t635926856* ___array0, int32_t ___index1, const MethodInfo* method) { static bool s_Il2CppMethodIntialized; if (!s_Il2CppMethodIntialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_CopyTo_TispeopleOrderPatrol_t4292956421_m3859056914_MetadataUsageId); s_Il2CppMethodIntialized = true; } { peopleOrderPatrolU5BU5D_t635926856* L_0 = ___array0; if (L_0) { goto IL_0011; } } { ArgumentNullException_t3573189601 * L_1 = (ArgumentNullException_t3573189601 *)il2cpp_codegen_object_new(ArgumentNullException_t3573189601_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m135444188(L_1, (String_t*)_stringLiteral93090393, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1); } IL_0011: { NullCheck((Il2CppArray *)__this); int32_t L_2 = Array_get_Rank_m1671008509((Il2CppArray *)__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)1))) { goto IL_002d; } } { String_t* L_3 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_4 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_4, (String_t*)L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4); } IL_002d: { int32_t L_5 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_6 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); peopleOrderPatrolU5BU5D_t635926856* L_7 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_7); int32_t L_8 = Array_GetLowerBound_m2369136542((Il2CppArray *)(Il2CppArray *)L_7, (int32_t)0, /*hidden argument*/NULL); peopleOrderPatrolU5BU5D_t635926856* L_9 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_9); int32_t L_10 = Array_GetLength_m1450876743((Il2CppArray *)(Il2CppArray *)L_9, (int32_t)0, /*hidden argument*/NULL); if ((((int32_t)((int32_t)((int32_t)L_5+(int32_t)L_6))) <= ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_10))))) { goto IL_0055; } } { ArgumentException_t928607144 * L_11 = (ArgumentException_t928607144 *)il2cpp_codegen_object_new(ArgumentException_t928607144_il2cpp_TypeInfo_var); ArgumentException__ctor_m3544856547(L_11, (String_t*)_stringLiteral2331082323, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11); } IL_0055: { peopleOrderPatrolU5BU5D_t635926856* L_12 = ___array0; NullCheck((Il2CppArray *)(Il2CppArray *)L_12); int32_t L_13 = Array_get_Rank_m1671008509((Il2CppArray *)(Il2CppArray *)L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)1))) { goto IL_0071; } } { String_t* L_14 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral3363540468, /*hidden argument*/NULL); RankException_t3671413657 * L_15 = (RankException_t3671413657 *)il2cpp_codegen_object_new(RankException_t3671413657_il2cpp_TypeInfo_var); RankException__ctor_m3451921812(L_15, (String_t*)L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15); } IL_0071: { int32_t L_16 = ___index1; if ((((int32_t)L_16) >= ((int32_t)0))) { goto IL_008d; } } { String_t* L_17 = Locale_GetText_m2389348044(NULL /*static, unused*/, (String_t*)_stringLiteral2582657682, /*hidden argument*/NULL); ArgumentOutOfRangeException_t3816648464 * L_18 = (ArgumentOutOfRangeException_t3816648464 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t3816648464_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m1193970951(L_18, (String_t*)_stringLiteral100346066, (String_t*)L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18); } IL_008d: { NullCheck((Il2CppArray *)__this); int32_t L_19 = Array_GetLowerBound_m2369136542((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); peopleOrderPatrolU5BU5D_t635926856* L_20 = ___array0; int32_t L_21 = ___index1; NullCheck((Il2CppArray *)__this); int32_t L_22 = Array_GetLength_m1450876743((Il2CppArray *)__this, (int32_t)0, /*hidden argument*/NULL); Array_Copy_m2598616668(NULL /*static, unused*/, (Il2CppArray *)__this, (int32_t)L_19, (Il2CppArray *)(Il2CppArray *)L_20, (int32_t)L_21, (int32_t)L_22, /*hidden argument*/NULL); return; } }
[ "renxiaoyi@me.com" ]
renxiaoyi@me.com
f731fa9afcba9c0412aeb2aa7fcea98aae74d0e2
0da362f8adb9f0770a51f8b8936bede867377793
/DigitalDashBoard - Copy - Copy/Dial/qcgaugewidget.h
ee951c7a5e77187eddd3c6bdc5a1820acee55bd9
[]
no_license
pprasad14/Ship-Dashboard-Simulator
14f0e00c1b690ea8ecebcf9f393e1eae775b0d0a
77633297f5cbce04eb7001e50d738246a1dc500a
refs/heads/master
2020-05-05T09:03:36.540801
2019-04-06T21:41:43
2019-04-06T21:41:43
179,889,468
0
0
null
null
null
null
UTF-8
C++
false
false
12,103
h
/*************************************************************************** ** ** ** QcGauge, for instrumentation, and real time data measurement ** ** visualization widget for Qt. ** ** Copyright (C) 2015 Hadj Tahar Berrima ** ** ** ** This program is free software: you can redistribute it and/or modify ** ** it under the terms of the GNU Lesser General Public License as ** ** published by the Free Software Foundation, either version 3 of the ** ** License, or (at your option) any later version. ** ** ** ** This program is distributed in the hope that it will be useful, ** ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** ** GNU Lesser General Public License for more details. ** ** ** ** You should have received a copy of the GNU Lesser General Public ** ** License along with this program. ** ** If not, see http://www.gnu.org/licenses/. ** ** ** **************************************************************************** ** Author: Hadj Tahar Berrima ** ** Website: http://pytricity.com/ ** ** Contact: berrima_tahar@yahoo.com ** ** Date: 1 dec 2014 ** ** Version: 1.0 ** ****************************************************************************/ #ifndef QCGAUGEWIDGET_H #define QCGAUGEWIDGET_H #include <QWidget> #include <QPainter> #include <QObject> #include <QRectF> #include <QtMath> #if defined(QCGAUGE_COMPILE_LIBRARY) # define QCGAUGE_DECL Q_DECL_EXPORT #elif defined(QCGAUGE_USE_LIBRARY) # define QCGAUGE_DECL Q_DECL_IMPORT #else # define QCGAUGE_DECL #endif class QcGaugeWidget; class QcItem; class QcBackgroundItem; class QcDegreesItem; class QcValuesItem; class QcArcItem; class QcColorBand; class QcNeedleItem; class QcLabelItem; class QcGlassItem; class QcAttitudeMeter; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcGaugeWidget : public QWidget { Q_OBJECT public: explicit QcGaugeWidget(QWidget *parent = 0); QcBackgroundItem* addBackground(float position); QcDegreesItem* addDegrees(float position); QcValuesItem* addValues(float position); QcArcItem* addArc(float position); QcColorBand* addColorBand(float position); QcNeedleItem* addNeedle(float position); QcLabelItem* addLabel(float position); QcGlassItem* addGlass(float position); QcAttitudeMeter* addAttitudeMeter(float position); void addItem(QcItem* item, float position); int removeItem(QcItem* item); QList <QcItem*> items(); QList <QcItem*> mItems; signals: public slots: private: void paintEvent(QPaintEvent *); }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcItem : public QObject { Q_OBJECT public: explicit QcItem(QObject *parent = 0); virtual void draw(QPainter *) = 0; virtual int type(); void setPosition(float percentage); float position(); QRectF rect(); enum Error{InvalidValueRange,InvalidDegreeRange,InvalidStep}; protected: QRectF adjustRect(float percentage); float getRadius(const QRectF &); float getAngle(const QPointF&, const QRectF &tmpRect); QPointF getPoint(float deg, const QRectF &tmpRect); QRectF resetRect(); void update(); private: QRectF mRect; QWidget *parentWidget; float mPosition; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcScaleItem : public QcItem { Q_OBJECT public: explicit QcScaleItem(QObject *parent = 0); void setValueRange(float minValue,float maxValue); void setDgereeRange(float minDegree,float maxDegree); void setMinValue(float minValue); void setMaxValue(float maxValue); void setMinDegree(float minDegree); void setMaxDegree(float maxDegree); signals: public slots: protected: float getDegFromValue(float); float mMinValue; float mMaxValue; float mMinDegree; float mMaxDegree; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcBackgroundItem : public QcItem { Q_OBJECT public: explicit QcBackgroundItem(QObject *parent = 0); void draw(QPainter*); void addColor(float position, const QColor& color); void clearrColors(); private: QPen mPen; QList<QPair<float,QColor> > mColors; QLinearGradient mLinearGrad; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QcGlassItem : public QcItem { Q_OBJECT public: explicit QcGlassItem(QObject *parent = 0); void draw(QPainter*); }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcLabelItem : public QcItem { Q_OBJECT public: explicit QcLabelItem(QObject *parent = 0); virtual void draw(QPainter *); void setAngle(float); float angle(); void setText(const QString &text, bool repaint = true); QString text(); void setColor(const QColor& color); QColor color(); private: float mAngle; QString mText; QColor mColor; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcArcItem : public QcScaleItem { Q_OBJECT public: explicit QcArcItem(QObject *parent = 0); void draw(QPainter*); void setColor(const QColor& color); private: QColor mColor; signals: public slots: }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcColorBand : public QcScaleItem { Q_OBJECT public: explicit QcColorBand(QObject *parent = 0); void draw(QPainter*); void setColors(const QList<QPair<QColor,float> >& colors); private: QPainterPath createSubBand(float from,float sweep); QList<QPair<QColor,float> > mBandColors; float mBandStartValue; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcDegreesItem : public QcScaleItem { Q_OBJECT public: explicit QcDegreesItem(QObject *parent = 0); void draw(QPainter *painter); void setStep(float step); void setColor(const QColor& color); void setSubDegree(bool ); private: float mStep; QColor mColor; bool mSubDegree; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcNeedleItem : public QcScaleItem { Q_OBJECT public: explicit QcNeedleItem(QObject *parent = 0); void draw(QPainter*); void setCurrentValue(float value); float currentValue(); void setValueFormat(QString format); QString currentValueFormat(); void setColor(const QColor & color); QColor color(); void setLabel(QcLabelItem*); QcLabelItem * label(); enum NeedleType{DiamonNeedle,TriangleNeedle,FeatherNeedle,AttitudeMeterNeedle,CompassNeedle,PitchNeedle,RollNeedle};//# void setNeedle(QcNeedleItem::NeedleType needleType); private: QPolygonF mNeedlePoly; float mCurrentValue; QColor mColor; void createDiamonNeedle(float r); void createTriangleNeedle(float r); void createFeatherNeedle(float r); void createAttitudeNeedle(float r); void createCompassNeedle(float r); void createPitchNiddle(float r); void createRollNiddle(float r); NeedleType mNeedleType; QcLabelItem *mLabel; QString mFormat; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcValuesItem : public QcScaleItem { Q_OBJECT public: explicit QcValuesItem(QObject *parent = 0); void draw(QPainter*); void setStep(float step); void setColor(const QColor& color); private: float mStep; QColor mColor; }; /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////// class QCGAUGE_DECL QcAttitudeMeter : public QcItem { Q_OBJECT public: explicit QcAttitudeMeter(QObject *parent = 0); void draw(QPainter *); void setCurrentPitch(float pitch); void setCurrentRoll(float roll); QColor getBrush() const; void setBrush(const QColor &brush); QColor getBrush2() const; void setBrush2(const QColor &value); QColor getBrush3() const; void setBrush3(const QColor &brush3); private: QColor m_brush,brush2,m_brush3; float mRoll; float mPitch; float mPitchOffset; QPolygonF mHandlePoly; QPainterPath mStepsPath; QPointF getIntersection(float r,const QPointF& pitchPoint,const QPointF& pt); float getStartAngle(const QRectF& tmpRect); void drawDegrees(QPainter *); void drawDegree(QPainter * painter, const QRectF& tmpRect,float deg); void drawUpperEllipse(QPainter *,const QRectF&); void drawLowerEllipse(QPainter *,const QRectF&); void drawPitchSteps(QPainter *,const QRectF&); void drawHandle(QPainter *); void drawSteps(QPainter *,float); }; #endif // QCGAUGEWIDGET_H
[ "prem.p@cumulations.com" ]
prem.p@cumulations.com
aefa7fe8cc8d2c020f5b53b852251bf7323ed8bb
079b935db7d36089fd55060a6c80e30ac54b041a
/sw/simulation/agents/gas_agent/gas_agent.h
330bc8d3483c53714b2962334e96887151b5f666
[]
no_license
chengyh23/drunksearch
f53eff391a56a8866b31bd975b592ba3c7dd3cdf
9526c44293de0b76b70757c58a7c791251e585a0
refs/heads/master
2023-06-16T03:13:24.261861
2021-07-09T07:38:20
2021-07-09T07:38:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
322
h
#ifndef GAS_AGENT_H #define GAS_AGENT_H #include <vector> #include <stdio.h> #include <iostream> #include "agent.h" class gas_agent: public Agent { public: gas_agent(int i, std::vector<float> state, float tstep); std::vector<float> state_update(std::vector<float> state); void animation(); }; #endif /*GAS_AGENT_H*/
[ "b.p.duisterhof@student.tudelft.nl" ]
b.p.duisterhof@student.tudelft.nl
5b94664e44049c3c2d2ac824ed654812f90ec06f
32ab8962dd2fd0e7ebff651a8a662dac157a9c6c
/core/fxge/ifx_renderdevicedriver.h
6a5b63ba326961bb726cbb72aa0d1190201af4d3
[ "BSD-3-Clause" ]
permissive
aliakseis/pdfium-fork
95bd907bb97f2c485e060a1755a73e817d4401e6
4505756eacc9bbc48a1e3f19a86ad6f1ec6150fc
refs/heads/master
2021-01-11T22:51:29.671837
2017-01-10T08:56:12
2017-01-10T08:56:12
78,513,253
1
1
null
null
null
null
UTF-8
C++
false
false
4,530
h
// Copyright 2016 PDFium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com #ifndef CORE_FXGE_IFX_RENDERDEVICEDRIVER_H_ #define CORE_FXGE_IFX_RENDERDEVICEDRIVER_H_ #include "core/fxcrt/fx_system.h" class CFX_DIBitmap; class CFX_DIBSource; class CFX_Font; class CFX_GraphStateData; class CFX_Matrix; class CFX_PathData; class CPDF_ShadingPattern; class IFX_Pause; struct FXTEXT_CHARPOS; struct FX_RECT; class IFX_RenderDeviceDriver { public: virtual ~IFX_RenderDeviceDriver(); virtual int GetDeviceCaps(int caps_id) const = 0; virtual CFX_Matrix GetCTM() const; virtual bool StartRendering(); virtual void EndRendering(); virtual void SaveState() = 0; virtual void RestoreState(bool bKeepSaved) = 0; virtual bool SetClip_PathFill(const CFX_PathData* pPathData, const CFX_Matrix* pObject2Device, int fill_mode) = 0; virtual bool SetClip_PathStroke(const CFX_PathData* pPathData, const CFX_Matrix* pObject2Device, const CFX_GraphStateData* pGraphState); virtual bool DrawPath(const CFX_PathData* pPathData, const CFX_Matrix* pObject2Device, const CFX_GraphStateData* pGraphState, uint32_t fill_color, uint32_t stroke_color, int fill_mode, int blend_type) = 0; virtual bool SetPixel(int x, int y, uint32_t color); virtual bool FillRectWithBlend(const FX_RECT* pRect, uint32_t fill_color, int blend_type); virtual bool DrawCosmeticLine(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2, uint32_t color, int blend_type); virtual bool GetClipBox(FX_RECT* pRect) = 0; virtual bool GetDIBits(CFX_DIBitmap* pBitmap, int left, int top); virtual CFX_DIBitmap* GetBackDrop(); virtual bool SetDIBits(const CFX_DIBSource* pBitmap, uint32_t color, const FX_RECT* pSrcRect, int dest_left, int dest_top, int blend_type) = 0; virtual bool StretchDIBits(const CFX_DIBSource* pBitmap, uint32_t color, int dest_left, int dest_top, int dest_width, int dest_height, const FX_RECT* pClipRect, uint32_t flags, int blend_type) = 0; virtual bool StartDIBits(const CFX_DIBSource* pBitmap, int bitmap_alpha, uint32_t color, const CFX_Matrix* pMatrix, uint32_t flags, void*& handle, int blend_type) = 0; virtual bool ContinueDIBits(void* handle, IFX_Pause* pPause); virtual void CancelDIBits(void* handle); virtual bool DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, const CFX_Matrix* pObject2Device, FX_FLOAT font_size, uint32_t color); virtual void* GetPlatformSurface() const; virtual int GetDriverType() const; virtual void ClearDriver(); virtual bool DrawShading(const CPDF_ShadingPattern* pPattern, const CFX_Matrix* pMatrix, const FX_RECT& clip_rect, int alpha, bool bAlphaMode); virtual bool SetBitsWithMask(const CFX_DIBSource* pBitmap, const CFX_DIBSource* pMask, int left, int top, int bitmap_alpha, int blend_type); #if defined _SKIA_SUPPORT_ || defined _SKIA_SUPPORT_PATHS_ virtual void Flush(); #endif }; #endif // CORE_FXGE_IFX_RENDERDEVICEDRIVER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
2e5fb2f78feccea30e8a1db284072839893822aa
55d71cdbf0d60d89be90e5b7843e496dab23cac9
/SDK/MachIncludes/ConfCheck.h
6455edf14ac3233bd324bdd40f16b538f9119bc1
[ "MIT" ]
permissive
mariusl/step2mach
13f5838471e41a759b352afd0297c43ff7b17791
3ac7ff6c3b29a25f4520e4325e7922f2d34c547a
refs/heads/master
2020-05-25T02:22:29.182553
2019-06-21T11:54:01
2019-06-21T11:54:01
187,577,085
0
0
MIT
2019-06-21T11:54:02
2019-05-20T06:03:55
C
UTF-8
C++
false
false
201
h
#pragma once // CConfCheck class CConfCheck : public CWnd { DECLARE_DYNAMIC(CConfCheck) public: CConfCheck(); virtual ~CConfCheck(); void CheckIt(); protected: DECLARE_MESSAGE_MAP() };
[ "jkpublic@kartech.biz" ]
jkpublic@kartech.biz
3782c4be11b99deb2e612cd0e645370e5dc13da4
04251e142abab46720229970dab4f7060456d361
/lib/rosetta/source/src/core/energy_methods/SASAEnergy.cc
d0137f6e99982d1f94c6c6ecc191ee78267679fa
[]
no_license
sailfish009/binding_affinity_calculator
216257449a627d196709f9743ca58d8764043f12
7af9ce221519e373aa823dadc2005de7a377670d
refs/heads/master
2022-12-29T11:15:45.164881
2020-10-22T09:35:32
2020-10-22T09:35:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,096
cc
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons. // (c) For more information, see http://www.rosettacommons.org. Questions about this can be // (c) addressed to University of Washington CoMotion, email: license@uw.edu. /// @file core/energy_methods/SASAEnergy.cc /// @brief Power Diagram-derived solvent-accessible surface area energy /// @author Jim Havranek // Unit headers #include <core/energy_methods/SASAEnergy.hh> #include <core/energy_methods/SASAEnergyCreator.hh> // Package headers #include <core/scoring/methods/EnergyMethodOptions.hh> #include <core/scoring/SASAPotential.hh> #include <core/scoring/ScoringManager.hh> #include <core/scoring/ScoreFunction.hh> #include <core/scoring/MinimizationData.hh> #include <core/scoring/Energies.hh> // AUTO-REMOVED #include <core/scoring/EnergyGraph.hh> // AUTO-REMOVED #include <core/scoring/TenANeighborGraph.hh> //#include <core/scoring/ContextGraphTypes.hh> #include <core/scoring/DenseEnergyContainer.hh> // Project headers #include <basic/datacache/CacheableData.hh> #include <basic/datacache/BasicDataCache.hh> #include <basic/prof.hh> #include <basic/Tracer.hh> #include <core/pose/Pose.hh> #include <core/pose/datacache/CacheableDataType.hh> #include <core/conformation/RotamerSetBase.hh> #include <core/conformation/RotamerSetCacheableDataType.hh> #include <numeric/xyz.io.hh> #include <utility/vector1.hh> static basic::Tracer TR( "core.scoring.methods.SASAEnergy" ); // Utility headers // C++ ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////// namespace core { namespace scoring { namespace methods { /// @details This must return a fresh instance of the SASAEnergy class, /// never an instance already in use methods::EnergyMethodOP SASAEnergyCreator::create_energy_method( methods::EnergyMethodOptions const & options ) const { return utility::pointer::make_shared< SASAEnergy >( options ); } ScoreTypes SASAEnergyCreator::score_types_for_method() const { ScoreTypes sts; sts.push_back( fa_sasa ); return sts; } SASAEnergy::SASAEnergy( SASAEnergy const & /*src*/ ) = default; SASAEnergy::SASAEnergy( EnergyMethodOptions const & options ): parent( utility::pointer::make_shared< SASAEnergyCreator >() ), potential_( ScoringManager::get_instance()->get_SASAPotential() ), exclude_DNA_DNA_( options.exclude_DNA_DNA() ) {} /// clone EnergyMethodOP SASAEnergy::clone() const { return utility::pointer::make_shared< SASAEnergy >( *this ); } bool SASAEnergy::defines_residue_pair_energy( pose::Pose const &, Size, Size ) const { return true; } /// void SASAEnergy::setup_for_packing( pose::Pose & , utility::vector1< bool > const & , // residues_repacking, utility::vector1< bool > const & ) const { // This should utterly fail. This score term is not for packing. TR.Fatal << "You cannot pack with fa_sasa." << std::endl; utility_exit_with_message("Attempted to pack with fa_sasa."); } void SASAEnergy::prepare_rotamers_for_packing( pose::Pose const & , conformation::RotamerSetBase & ) const { // This should utterly fail. This score term is not for packing. TR.Fatal << "You cannot pack with fa_sasa." << std::endl; utility_exit_with_message("Attempted to pack with fa_sasa."); } // void // update_residue_for_packing( // pose::Pose &, // Size /*resid*/ ) const // {} void SASAEnergy::update_residue_for_packing( pose::Pose & , Size ) const { } /// void SASAEnergy::setup_for_scoring( pose::Pose & pose, ScoreFunction const & ) const { LongRangeEnergyType const & lr_type( long_range_type() ); potential_.setup_for_scoring( pose ); // create a container Energies & energies( pose.energies() ); bool create_new_lre_container( false ); if ( energies.long_range_container( lr_type ) == nullptr ) { create_new_lre_container = true; } else { LREnergyContainerOP lrc = energies.nonconst_long_range_container( lr_type ); DenseEnergyContainerOP dec( utility::pointer::static_pointer_cast< DenseEnergyContainer > ( lrc ) ); if ( dec->size() != pose.size() ) { create_new_lre_container = true; } } if ( create_new_lre_container ) { LREnergyContainerOP new_dec = utility::pointer::make_shared< DenseEnergyContainer >( pose.size(), fa_sasa ); energies.set_long_range_container( lr_type, new_dec ); } } /// void SASAEnergy::setup_for_derivatives( pose::Pose & pose, ScoreFunction const & ) const { LongRangeEnergyType const & lr_type( long_range_type() ); potential_.setup_for_scoring( pose ); // create a container Energies & energies( pose.energies() ); bool create_new_lre_container( false ); if ( energies.long_range_container( lr_type ) == nullptr ) { create_new_lre_container = true; } else { LREnergyContainerOP lrc = energies.nonconst_long_range_container( lr_type ); DenseEnergyContainerOP dec( utility::pointer::static_pointer_cast< DenseEnergyContainer > ( lrc ) ); if ( dec->size() != pose.size() ) { create_new_lre_container = true; } } if ( create_new_lre_container ) { LREnergyContainerOP new_dec = utility::pointer::make_shared< DenseEnergyContainer >( pose.size(), fa_sasa ); energies.set_long_range_container( lr_type, new_dec ); } } ///////////////////////////////////////////////////////////////////////////// // scoring ///////////////////////////////////////////////////////////////////////////// /// void SASAEnergy::residue_pair_energy( conformation::Residue const & rsd1, conformation::Residue const & rsd2, pose::Pose const & , ScoreFunction const &, EnergyMap & emap ) const { //using core::pose::datacache::CacheableDataType::VDWTINKER_POSE_INFO; if ( exclude_DNA_DNA_ && rsd1.is_DNA() && rsd2.is_DNA() ) return; emap[ fa_sasa ] += potential_.get_res_res_sasa( rsd1, rsd2 ); } ///////////////////////////////// // Minimization specific stuff ///////////////////////////////// void SASAEnergy::setup_for_minimizing_for_residue( conformation::Residue const & , pose::Pose const & , // pose, ScoreFunction const &, // scorefxn, kinematics::MinimizerMapBase const &, // min_map, basic::datacache::BasicDataCache &, ResSingleMinimizationData & ) const { return; } void SASAEnergy::setup_for_minimizing_for_residue_pair( conformation::Residue const &, // rsd1, conformation::Residue const &, // rsd2, pose::Pose const &, ScoreFunction const &, //scorefxn, kinematics::MinimizerMapBase const &, // min_map, ResSingleMinimizationData const &, ResSingleMinimizationData const &, ResPairMinimizationData & ) const { return; } bool SASAEnergy::requires_a_setup_for_scoring_for_residue_opportunity_during_minimization( pose::Pose const & ) const { return false; } void SASAEnergy::setup_for_scoring_for_residue( conformation::Residue const & , pose::Pose const & , ScoreFunction const &, // sfxn, ResSingleMinimizationData & ) const { } // note: you do not need to define this function or setup_for_derivatives_for_residue because // the base class already provides both of these no-op implementations; or rather, // setup_for_derivatives_for_residue won't be called because the base class "requires...opportunity" // returns false. bool SASAEnergy::requires_a_setup_for_derivatives_for_residue_opportunity( pose::Pose const & ) const { return false; } void SASAEnergy::setup_for_derivatives_for_residue( conformation::Residue const & , pose::Pose const & , ScoreFunction const & , ResSingleMinimizationData &, basic::datacache::BasicDataCache & ) const { } bool SASAEnergy::use_extended_residue_pair_energy_interface() const { return true; } void SASAEnergy::residue_pair_energy_ext( conformation::Residue const & rsd1, conformation::Residue const & rsd2, ResPairMinimizationData const & , // pairdata, pose::Pose const &, ScoreFunction const &, EnergyMap & emap ) const { if ( exclude_DNA_DNA_ && rsd1.is_DNA() && rsd2.is_DNA() ) return; //TR << "Calculating residue pair energy ext" << std::endl; emap[ fa_sasa ] += potential_.get_res_res_sasa( rsd1, rsd2 ); } bool SASAEnergy::use_extended_intrares_energy_interface() const { return true; } void SASAEnergy::eval_intrares_energy_ext( conformation::Residue const & rsd, ResSingleMinimizationData const & , pose::Pose const & , ScoreFunction const & , EnergyMap & emap ) const { if ( exclude_DNA_DNA_ && rsd.is_DNA() ) return; //TR << "Calculating intraresidue energy ext" << std::endl; emap[ fa_sasa ] += potential_.get_res_res_sasa( rsd, rsd ); } ///////////////////////////////// // End minimization specific stuff ///////////////////////////////// void SASAEnergy::evaluate_rotamer_intrares_energies( conformation::RotamerSetBase const & , pose::Pose const & , ScoreFunction const & , utility::vector1< core::PackerEnergy > & ) const { return; } void SASAEnergy::evaluate_rotamer_intrares_energy_maps( conformation::RotamerSetBase const & , pose::Pose const & , ScoreFunction const & , // sxfn, utility::vector1< EnergyMap > & ) const { // using namespace conformation; // using namespace numeric; return; } void SASAEnergy::evaluate_rotamer_pair_energies( conformation::RotamerSetBase const & , conformation::RotamerSetBase const & , pose::Pose const & , ScoreFunction const & , // sfxn, EnergyMap const & , ObjexxFCL::FArray2D< core::PackerEnergy > & ) const { return; } void SASAEnergy::evaluate_rotamer_background_energies( conformation::RotamerSetBase const & , conformation::Residue const & , pose::Pose const & , ScoreFunction const & , // sfxn, EnergyMap const & , utility::vector1< core::PackerEnergy > & ) const { return; } void SASAEnergy::evaluate_rotamer_background_energy_maps( conformation::RotamerSetBase const & , conformation::Residue const & , pose::Pose const & , ScoreFunction const & , // sfxn, EnergyMap const & , utility::vector1< EnergyMap > & ) const { return; } /// @brief SASAEnergy distance cutoff set to the same cutoff used by EtableEnergy, for now // Distance // SASAEnergy::atomic_interaction_cutoff() const // { // return 5.5; /// APL remove this magic number! // } /// @brief SASAEnergy requires no context graphs void SASAEnergy::indicate_required_context_graphs( utility::vector1< bool > & ) const { } /// @brief SASAEnergy does define intraresidue interactions bool SASAEnergy::defines_intrares_energy( EnergyMap const & /*weights*/ ) const { return true; } void SASAEnergy::eval_intrares_energy( conformation::Residue const & rsd, pose::Pose const & , ScoreFunction const &, EnergyMap & emap ) const { emap[ fa_sasa ] += potential_.get_res_res_sasa( rsd, rsd ); } void SASAEnergy::eval_intrares_derivatives( conformation::Residue const & rsd, ResSingleMinimizationData const & , pose::Pose const & pose, EnergyMap const & weights, utility::vector1< DerivVectorPair > & atom_derivs ) const { Real const factor( weights[ fa_sasa] ); potential_.eval_residue_pair_derivatives( rsd, rsd, pose, factor, atom_derivs, atom_derivs ); } void SASAEnergy::eval_residue_pair_derivatives( conformation::Residue const & rsd1, conformation::Residue const & rsd2, ResSingleMinimizationData const & , ResSingleMinimizationData const & , ResPairMinimizationData const & , pose::Pose const & pose, // provides context EnergyMap const & weights, utility::vector1< DerivVectorPair > & r1_atom_derivs, utility::vector1< DerivVectorPair > & r2_atom_derivs ) const { potential_.eval_residue_pair_derivatives( rsd1, rsd2, pose, weights[ fa_sasa ], r1_atom_derivs, r2_atom_derivs ); } core::Size SASAEnergy::version() const { return 1; // Initial versioning } } } }
[ "lzhangbk@connect.ust.hk" ]
lzhangbk@connect.ust.hk
6418582e3cfd6083d3ae92eb2e2097d373cc6045
8b6942dae1c72de4b0d373a5ec246093f2aeba1c
/courseworks/congestion/date.h
b861ac938c982cf9c2cb6bff9ff7d8df82735fc1
[ "MIT" ]
permissive
henryaddison/C---coursework
cef5b2e42e27d739fd619162789ef9efb54c2734
26d3f8dd787239622a6e682828f2826f2a1cf35b
refs/heads/master
2020-04-18T09:07:26.358757
2013-07-24T22:20:16
2013-07-24T22:20:16
11,646,420
0
1
null
null
null
null
UTF-8
C++
false
false
355
h
#ifndef DATE_H #define DATE_H class Date { friend class DateTest; friend std::ostream& operator<<(std::ostream& out, const Date& date); friend bool operator==(const Date& date1, const Date& date2); friend bool operator!=(const Date& date1, const Date& date2); public: Date(int d, int m, int y); private: int day, month, year; }; #endif
[ "hja22@hja22.co.uk" ]
hja22@hja22.co.uk
16b05f6fb9ecd9e19716b206dc3293ce44e7b839
e979844d55c1ef0313d9eb6703e48defbcd29aa1
/Terabit/app/examples/ex5/ex5.cpp
2337fba0a4d0cbd7eca213689966444b7cce727d
[]
no_license
sue602/Terabit4ACE6.x
cfb365d816b77fdf43836d76fa36dcf854da7005
1b1366fc1ae9fd7c42b69f151ece9d1d858ed66f
refs/heads/master
2021-01-01T06:15:04.594124
2017-07-16T15:55:19
2017-07-16T15:55:19
97,391,901
2
1
null
null
null
null
UTF-8
C++
false
false
12,390
cpp
/********************************************************************* ** Copyright (C) 2003 Terabit Pty Ltd. All rights reserved. ** ** This file is part of the POSIX-Proactor module. ** ** @file ex5.cpp ** ** ex5.cpp ** ** This program illustrates how the TRB_Proactor can be used to ** implement an application that does various asynchronous ** operations. ** ** @author Alexander Libman <libman@terabit.com.au> **********************************************************************/ #include "Cfg.h" #include "IOTerabit/TcpChannel.h" #include "IOTerabit/ChannelManager.h" #include "IOTerabit/ChannelAcceptor.h" #include "IOTerabit/ChannelConnector.h" #include "IOTerabit/ProtocolFactory_T.h" #include "TTYProtocol.h" using namespace Terabit; static TestCfg cfg; static ACE_TCHAR complete_message[1024] = ACE_TEXT ("GET / HTTP/1.1\r\n") ACE_TEXT ("Accept: */*\r\n") ACE_TEXT ("Accept-Language: C++\r\n") ACE_TEXT ("Accept-Encoding: gzip, deflate\r\n") ACE_TEXT ("User-Agent: P_Test /1.0 (non-compatible)\r\n") ACE_TEXT ("Connection: Keep-Alive\r\n") ACE_TEXT ("\r\n"); // ************************************************************* // Receiver // ************************************************************* class RcvProtocol : public TTYProtocol { public: RcvProtocol(ProtocolFactory& factory) : TTYProtocol (factory) { } virtual ~RcvProtocol() { } virtual void reset () { } virtual int on_channel_opened (AsynchChannel *channel) { // just for demo, auto read enable by default channel->enable_read (); return 0; } virtual int process_message(Terabit::AsynchChannel *channel, const char *payload, size_t length) { if (channel->start_write(payload, length) != 0) return -1; return 0; } virtual int on_timeout (AsynchChannel *channel, const void *arg) { return -1; } virtual int check_activity (AsynchChannel *channel, const ACE_Time_Value& last_op_time) { return 0; } }; // ******************************************* // Sender // ******************************************* class SndProtocol : public Protocol { public: SndProtocol(ProtocolFactory& factory) : Protocol (factory) { } virtual ~SndProtocol() { } virtual void reset () { } virtual int on_channel_opened (AsynchChannel *channel) { channel->enable_read (); // this is default channel->enable_write_notifications (); // this is not return this->on_write_completed (channel); } virtual int on_write_completed (AsynchChannel *channel) { return channel->start_write(complete_message, sizeof(complete_message)); } virtual int on_read_completed (AsynchChannel *channel, const char *data, size_t length) { return length; // all data consumed } virtual int on_timeout (AsynchChannel *channel, const void *arg) { return -1; } virtual int check_activity (AsynchChannel *channel, const ACE_Time_Value& last_op_time) { return 0; } }; // ************************************************************* // // ************************************************************* typedef ProtocolFactory_T<RcvProtocol> RcvFactory; typedef ProtocolFactory_T<SndProtocol> SndFactory; // ************************************************************* // Configuration helpers // ************************************************************* int run (int argc, ACE_TCHAR *argv[]) { int rc = 0; // factory for TcpChannels TcpChannelFactory channel_factory; channel_factory.set_pool_size (cfg.connections()*2, // min cache size (size_t) -1); // max cache size // IO Thread Pool for Channels and Connectors IOThreadPool task1 ("IOThreadPool-1", // name for logging cfg.proactor_type (), // proactor type cfg.leader_type () , // shared | dedicated cfg.demultiplexors (), // number or proactors cfg.max_aio_operations (), // max num aio or 0 cfg.sig_num ()); // for legacy // IO Thread Pool for Acceptors IOThreadPool task2 ("IOThreadPool-2", // name for logging cfg.proactor_type (), // proactor type cfg.leader_type () , // shared | dedicated 1, // number or proactors cfg.max_aio_operations (), // max num aio or 0 cfg.sig_num ()); // for legacy // Channel Manager ChannelManager manager("Manager", // name for logging task1, // IOThreadPool for channels channel_factory); // factory of channels ACE_Time_Value timeout (cfg.timeout(), 0); manager.set_timeout (timeout); // set check timeout manager.set_log_level (cfg.loglevel()); // set log level manager.open (); // open manager // Protocol Factories (user supplied) RcvFactory r_factory ("RcvFactory", // name for logging cfg.loglevel ()); // log level SndFactory s_factory ("SndFactory", // name for logging cfg.loglevel ()); // log level // Acceptor ChannelAcceptor acceptor (task2, // IOThreadPool for accepting r_factory, // factory of protocols manager); // channel manager // Connector ChannelConnector connector (task1, // IOThreadPool for connecting s_factory, // factory of protocols manager); // channel manager acceptor.set_log_level (1); // cfg.loglevel ()); connector.set_log_level (1); // cfg.loglevel ()); TRB_Sock_Addr listen_addr; TRB_Sock_Addr connect_addr; cfg.get_addresses (listen_addr, connect_addr); ACE_Time_Value time_begin = ACE_OS::gettimeofday (); ACE_Time_Value time_end = ACE_OS::gettimeofday (); ACE_Time_Value time_run; // start with IOThreadPool with N threads if (task1.start (cfg.threads ()) != 0) { return -1; } if (task2.start (1) != 0) { return -1; } std::cout << "========= Start Acceptor ================" << std::endl; // start listen if (acceptor.start (listen_addr.get_ace_addr (), 20) == 0) { rc = 1; } time_begin = ACE_OS::gettimeofday (); std::cout << "========= Start Connecting ================" << std::endl; // start M client connects for (u_int i = 0; i < cfg.connections (); ++i, ++rc) { if (connector.start (connect_addr.get_ace_addr (), (const void *) i) != 0) { break; } } ChannelManager::Statistic stat; if (rc > 0) { ACE_Time_Value sleep_time (cfg.seconds()); while ( sleep_time != ACE_Time_Value::zero) { ACE_Countdown_Time countdown ( & sleep_time ); ACE_OS::sleep (sleep_time ); } if (cfg.seconds () == 0) { bool flgExit = false; for (;!flgExit;) { char c; cout << "\nEnter:" << "\n1 - stop connector" << "\n2 - stop acceptor" << "\n3 -stop manager" << "\nP - statistic" << "\nQ quit=>" << flush; cin.clear (); cin >> c; switch (toupper (c)) { case '1': connector.cancel(); connector.wait (); break; case '2': acceptor.cancel (); acceptor.wait(); break; case '3': manager.close (); manager.wait (); break; case 'Q': flgExit = true; break; case 'P': break; }//switch manager.get_statistic(stat); cout << "\n*** Connector: PendingConnects=" << connector.get_pending_count () << "\n*** Acceptor: PendingAccepts=" << acceptor.get_pending_count () << "\n*** Channels: Current=" << stat.current_channels_ << " Peak=" << stat.peak_channels_ << " Total=" << stat.total_channels_ << "\n"; }//for }//if cfg.seconds }//if rc > 0 ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) ******** Before Cancel And Wait *************\n") ACE_TEXT ("Acceptor: PendingOP=%d Connector: PendingOP=%d\n"), acceptor.get_pending_count (), // number_pending_accepts connector.get_pending_count () // number_pending_connects )); manager.print_statistic (); // Initiate cancelation of all pending AIO acceptor.cancel (); // Cancel Acceptor connector.cancel (); // Cancel Connector manager.close (); // Cancel all active connections acceptor.wait (); // Wait Acceptor connector.wait (); // Wait Connector manager.wait (); // Wait for termination of all active connections time_end = ACE_OS::gettimeofday (); time_run = time_end - time_begin; ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) ******** After Cancel And Wait *************\n") ACE_TEXT ("Acceptor: PendingOP=%d Connector: PendingOP=%d\n"), acceptor.get_pending_count (), // number_pending_accepts connector.get_pending_count () // number_pending_connects )); manager.print_statistic (); // Calclulate average transmission rate manager.get_statistic(stat); float fsec = (float)(time_run.msec()/1000); double fspeed1 = ((float) stat.total_snd_ +(float) stat.total_rcv_ ); double fspeed2 = ((float) stat.total_w_ +(float) stat.total_r_ ); if ( fsec > 0.1 ) { fspeed1 /= fsec; fspeed2 /= fsec; } ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Effective run time = %f sec\n"), fsec)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Effective bytes/sec = %f op/sec= %f\n"), fspeed1, fspeed2)); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Threads = %d BlkSize=%d\n"), cfg.threads(), cfg.blksize())); ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("(%t) Stopping Thread Pools\n"))); task1.stop (); task2.stop (); return 0; } int ACE_TMAIN (int argc, ACE_TCHAR *argv[]) { ACE_START_TEST (ACE_TEXT ("ex5")); if (cfg.parse_args (argc, argv) < 0) return -1; // very important for POSIX, NO-OP for Windows BaseThreadPool::disable_signal (ACE_SIGRTMIN, ACE_SIGRTMAX); BaseThreadPool::disable_signal (SIGPIPE, SIGPIPE); BaseThreadPool::disable_signal (SIGIO, SIGIO); int rc = run (argc,argv); ACE_END_TEST; return rc; }
[ "suyinxiang@onemt.com.cn" ]
suyinxiang@onemt.com.cn
6421960b871d83424b4422525a9b32ab3dd3bc88
1fe10ee5e34cd76067c720ef4b4a054f6107b286
/chromium/src/content/browser/renderer_host/render_widget_host_view_mus.h
c913d00f569e1af4d162a2295bf759022819de41
[ "BSD-2-Clause", "BSD-3-Clause" ]
permissive
bopopescu/ofa
9f001c4f36b07fa27347ade37337422fd6719dcc
84e319101d4a1200657337dcdf9ed3857fc59e03
refs/heads/master
2021-06-14T08:53:05.865737
2017-04-03T12:50:44
2017-04-03T12:50:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,676
h
// 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. #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_ #include <stddef.h> #include "base/macros.h" #include "build/build_config.h" #include "content/browser/renderer_host/render_widget_host_view_base.h" #include "content/public/browser/render_process_host_observer.h" #include "services/ui/public/cpp/input_event_handler.h" #include "services/ui/public/cpp/scoped_window_ptr.h" #include "services/ui/public/cpp/window.h" namespace content { class RenderWidgetHost; class RenderWidgetHostImpl; struct NativeWebKeyboardEvent; struct TextInputState; // See comments in render_widget_host_view.h about this class and its members. // This version of RenderWidgetHostView is for builds of Chrome that run through // the mojo shell and use the Mandoline UI Service (Mus). Mus is responsible for // windowing, compositing, and input event dispatch. The purpose of // RenderWidgetHostViewMus is to manage the ui::Window owned by the content // embedder. The browser is the owner of the ui::Window, controlling properties // such as visibility, and bounds. Some aspects such as input, focus, and cursor // are managed by Mus directly. Input event routing will be plumbed directly to // the renderer from Mus. class CONTENT_EXPORT RenderWidgetHostViewMus : public RenderWidgetHostViewBase, NON_EXPORTED_BASE(public ui::InputEventHandler) { public: RenderWidgetHostViewMus(ui::Window* parent_window, RenderWidgetHostImpl* widget); ~RenderWidgetHostViewMus() override; private: // Set the bounds of the window and handle size changes. Assumes the caller // has already adjusted the origin of |rect| to conform to whatever coordinate // space is required by the aura::Window. void InternalSetBounds(const gfx::Rect& rect); // RenderWidgetHostView implementation. void InitAsChild(gfx::NativeView parent_view) override; RenderWidgetHost* GetRenderWidgetHost() const override; void SetSize(const gfx::Size& size) override; void SetBounds(const gfx::Rect& rect) override; void Focus() override; bool HasFocus() const override; bool IsSurfaceAvailableForCopy() const override; void Show() override; void Hide() override; bool IsShowing() override; gfx::NativeView GetNativeView() const override; gfx::NativeViewAccessible GetNativeViewAccessible() override; gfx::Rect GetViewBounds() const override; gfx::Vector2dF GetLastScrollOffset() const override; void SetBackgroundColor(SkColor color) override; gfx::Size GetPhysicalBackingSize() const override; base::string16 GetSelectedText() override; // RenderWidgetHostViewBase implementation. void InitAsPopup(RenderWidgetHostView* parent_host_view, const gfx::Rect& bounds) override; void InitAsFullscreen(RenderWidgetHostView* reference_host_view) override; void UpdateCursor(const WebCursor& cursor) override; void SetIsLoading(bool is_loading) override; void TextInputStateChanged(const TextInputState& params) override; void ImeCancelComposition() override; #if defined(OS_MACOSX) || defined(USE_AURA) void ImeCompositionRangeChanged( const gfx::Range& range, const std::vector<gfx::Rect>& character_bounds) override; #endif void RenderProcessGone(base::TerminationStatus status, int error_code) override; void Destroy() override; void SetTooltipText(const base::string16& tooltip_text) override; void SelectionChanged(const base::string16& text, size_t offset, const gfx::Range& range) override; void SelectionBoundsChanged( const ViewHostMsg_SelectionBounds_Params& params) override; void SelectionStateChanged(bool is_start_anchor) override; void CopyFromCompositingSurface( const gfx::Rect& src_subrect, const gfx::Size& dst_size, const ReadbackRequestCallback& callback, const SkColorType preferred_color_type) override; void CopyFromCompositingSurfaceToVideoFrame( const gfx::Rect& src_subrect, const scoped_refptr<media::VideoFrame>& target, const base::Callback<void(const gfx::Rect&, bool)>& callback) override; bool CanCopyToVideoFrame() const override; bool HasAcceleratedSurface(const gfx::Size& desired_size) override; void ClearCompositorFrame() override {} bool LockMouse() override; void UnlockMouse() override; gfx::Rect GetBoundsInRootWindow() override; void SetNeedsBeginFrames(bool needs_begin_frames) override; #if defined(OS_MACOSX) // RenderWidgetHostView implementation. ui::AcceleratedWidgetMac* GetAcceleratedWidgetMac() const override; void SetActive(bool active) override; void ShowDefinitionForSelection() override; bool SupportsSpeech() const override; void SpeakSelection() override; bool IsSpeaking() const override; void StopSpeaking() override; #endif // defined(OS_MACOSX) void LockCompositingSurface() override; void UnlockCompositingSurface() override; // ui::InputEventHandler: void OnWindowInputEvent( ui::Window* target, const ui::Event& event, std::unique_ptr<base::Callback<void(ui::mojom::EventResult)>>* ack_callback) override; RenderWidgetHostImpl* host_; aura::Window* aura_window_; std::unique_ptr<ui::ScopedWindowPtr> mus_window_; DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewMus); }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_MUS_H_
[ "jimmym@opera.com" ]
jimmym@opera.com
466529e86a6f3b128f99934416628d22ab15cb6b
663e6946a2091178cd5ffd6a9f92e748dcabb1b0
/generic_algorithm/pair_sort.cpp
572a5341d0129d08dbbed39c8058099805840cec
[]
no_license
wssbygone/mydepot
b9425b4df259457d82ce54e5227771e0daa2406d
e4106958a80ae16d2410bb29c6131a243b4221ca
refs/heads/master
2023-08-24T18:12:18.286550
2023-08-09T02:42:13
2023-08-09T02:42:13
132,110,129
0
0
null
null
null
null
UTF-8
C++
false
false
664
cpp
/* 泛型算法,sort排序 */ #include<algorithm> #include<vector> #include<iostream> #include<string.h> #include<unistd.h> using namespace std; bool judge(const pair<double,char> a, const pair<double ,char> b) { return a.first<b.first; } int main() { vector<pair<double ,char>> p; p.push_back(make_pair(10.1,'a')); p.push_back(make_pair(9.2,'c')); p.push_back(make_pair(10.01,'t')); p.push_back(make_pair(17.0,'y')); p.push_back(make_pair(10.1,'b')); sort(p.begin(),p.end(),judge); for(auto i=0;i<p.size();i++) cout<<p[i].first<<" "<<p[i].second<<endl; //getchar(); //sleep(5); }
[ "wushishun@bimwinner.com" ]
wushishun@bimwinner.com
8f86804bdac6d0ad89cdb950c43b6f09b2e18ce9
fdb2c67670d6966eecfaa5d6520461c50953b069
/C2CurveEvaluator.cpp
9966b621e02562c27a178b056a3e638b8f2d35eb
[]
no_license
Reapor-Yurnero/COMP4411-Animator
58e2ad256a9adc5e87c6993756368ea817cfb15a
a57f884afae4eb1a01918dad879c1733c2daa644
refs/heads/master
2020-03-09T09:51:11.596061
2018-04-27T15:35:59
2018-04-27T15:35:59
128,722,439
0
1
null
null
null
null
UTF-8
C++
false
false
3,621
cpp
#include "C2CurveEvaluator.h" #include <Eigen/Dense> #include <iostream> #include <vector> #include "BezierCurveEvaluator.h" #include "modelerapp.h" #include "modelerglobals.h" void C2CurveEvaluator::evaluateCurve(std::vector<Point>& ptvCtrlPts, std::vector<Point>& ptvEvaluatedCurvePts, const float& fAniLength, const bool& bWrap) const { ptvEvaluatedCurvePts.clear(); int iCtrlPtCount = ptvCtrlPts.size(); ModelerApplication::Instance()->bezierPoints.clear(); ModelerApplication::Instance()->isDrawingCatmull = FALSE; if (ptvCtrlPts.size() < 4) { BezierCurveEvaluator* evaluator = new BezierCurveEvaluator(); evaluator->evaluateCurve(ptvCtrlPts, ptvEvaluatedCurvePts, fAniLength, bWrap); return; } // m * dVec = cVec // 1. prepare m Eigen::MatrixXf m(iCtrlPtCount, iCtrlPtCount); m.setZero(); m(0, 0) = 2; m(0, 1) = 1; for (int i = 1; i < iCtrlPtCount-1; i++) { m(i, i - 1) = 1; m(i, i) = 4; m(i, i + 1) = 1; } m(iCtrlPtCount - 1, iCtrlPtCount - 2) = 1; m(iCtrlPtCount - 1, iCtrlPtCount - 1) = 2; Eigen::MatrixXf m_inverse = m.inverse(); // 2. prepare cVec Eigen::MatrixXf cVec(iCtrlPtCount, 2); cVec(0, 0) = ((ptvCtrlPts[1] - ptvCtrlPts[0]) * 3.0f).x; cVec(0, 1) = ((ptvCtrlPts[1] - ptvCtrlPts[0]) * 3.0f).y; for (int i = 1; i < iCtrlPtCount-1; i++) { cVec(i, 0) = ((ptvCtrlPts[i + 1] - ptvCtrlPts[i - 1]) * 3.0f).x; cVec(i, 1) = ((ptvCtrlPts[i + 1] - ptvCtrlPts[i - 1]) * 3.0f).y; } cVec(iCtrlPtCount - 1, 0) = ((ptvCtrlPts[iCtrlPtCount - 1] - ptvCtrlPts[iCtrlPtCount - 2]) * 3.0f).x; cVec(iCtrlPtCount - 1, 1) = ((ptvCtrlPts[iCtrlPtCount - 1] - ptvCtrlPts[iCtrlPtCount - 2]) * 3.0f).y; // 3. prepare dVec //std::cout << "cVec: " << cVec << std::endl; //std::cout << "m_inverse: " << m_inverse << std::endl; Eigen::MatrixXf dVec = m_inverse * cVec; //std::cout << "dVec: " << dVec << std::endl; // 4. draw Point p1, p2, p3, p4; for (int i = 0; i < iCtrlPtCount - 1; i+=1) { p1 = ptvCtrlPts[i]; p2 = ptvCtrlPts[i] + Point(dVec(i, 0), dVec(i, 1)) * (1 / 3.0f); p3 = ptvCtrlPts[i + 1] - Point(dVec(i + 1, 0), dVec(i + 1, 1) )* (1 / 3.0f); p4 = ptvCtrlPts[i + 1]; //std::cout << "p1: " << p1 << std::endl; //std::cout << "p2: " << p2 << std::endl; //std::cout << "p3: " << p3 << std::endl; //std::cout << "p4: " << p4 << std::endl; //std::cout << std::endl; BezierCurveEvaluator::drawBezierSegment(p1, p2, p3, p4, ptvEvaluatedCurvePts); } // 5. wrap if (bWrap) { // TODO // wrapping: add phatom control point at the end with y of the first control point // segment connecting tail and head int lastIndex = iCtrlPtCount - 1; p1 = ptvCtrlPts[lastIndex]; p2 = ptvCtrlPts[lastIndex] + Point(dVec(lastIndex, 0), dVec(lastIndex, 1)) * (1 / 3.0f); p4 = ptvCtrlPts[0]; p4.x += fAniLength; p3 = p4 - Point(dVec(0, 0), dVec(0, 1))* (1 / 3.0f); BezierCurveEvaluator::drawBezierSegment(p1, p2, p3, p4, ptvEvaluatedCurvePts); for (int k = 0; k < ptvEvaluatedCurvePts.size(); k++) { if (ptvEvaluatedCurvePts[k].x > fAniLength) { ptvEvaluatedCurvePts[k].x -= fAniLength; } } } else { ptvEvaluatedCurvePts.push_back({ fAniLength, ptvCtrlPts[ptvCtrlPts.size() - 1].y }); ptvEvaluatedCurvePts.push_back({ 0, ptvCtrlPts[0].y }); } }
[ "xlide@connect.ust.com" ]
xlide@connect.ust.com
27aa9606945122b5d625b8dcada9c4470982c0b2
772d932a0e5f6849227a38cf4b154fdc21741c6b
/CPP_Joc_Windows_Android/SH_Client_Win_Cpp_Cmake/App/src/base/view/debug/DeV_PageMisc.cpp
c7718dfccfc7e7558465afe2eb24f15c5accc95a
[]
no_license
AdrianNostromo/CodeSamples
1a7b30fb6874f2059b7d03951dfe529f2464a3c0
a0307a4b896ba722dd520f49d74c0f08c0e0042c
refs/heads/main
2023-02-16T04:18:32.176006
2021-01-11T17:47:45
2021-01-11T17:47:45
328,739,437
0
0
null
null
null
null
UTF-8
C++
false
false
34,199
cpp
#include "DeV_PageMisc.h" #include <base/app/IApp.h> #include <base/threadsManager/IThreadsManager.h> #include "entryUser/IDebugEntryUser.h" #include <base/MM.h> #include <base/math/Math.h> #include <base/opengl/util/GLUtil.h> #include <base/runtimeSettings/IRuntimeSettings.h> #include <rpg3D/gw/physics3D/IGamePartPhysics3D.h> #include <base/exceptions/LogicException.h> #include <base/memory/SharedPointer.h> #include <base/memory/IMemoryManager.h> #include <base/memory/util/MemoryStats.h> #include <graphics/visual/Texture.h> #include <graphics/visual/TextureArray.h> using namespace base; DeV_PageMisc::DeV_PageMisc(IApp* app, ArrayList<MenuItemConfig*>* viewItemConfigs, ArrayList<StateChangeDurations*>* viewEaseDurationsSList) : super(app, viewItemConfigs, viewEaseDurationsSList) { //void } void DeV_PageMisc::createVisuals(Map1D<std::string, void*>* createConfigMap) { super::createVisuals(createConfigMap); cPageIndex = registerNewPage(true/*isDefaultPage*/, true/*usesDynamicEntries*/); threadsManager = app->getThreadsManager(); { dynamicDebugEntry_threads = addDebugEntry(1/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dynamicDebugEntry_threads->setPlaceholderedText(">> Threads; managed:#0#, native:#1#"); dynamicDebugEntry_threads->appendTrackedDataValue(dynamicDebugEntry_threads_managedThreadsCount = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dynamicDebugEntry_threads->appendTrackedDataValue(dynamicDebugEntry_threads_nativeThreadsCount = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); } { dde_memInfoGeneral = addDebugEntry(4/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_memInfoGeneral->setPlaceholderedText("\ >> Memory: RAM_MB: #0#, ActiveAllocations_MB: #1#\n\ ActivesCount: void*:#2#, objects:#3#, spObjects:#4#\n\ FunctionCallsCounts: malloc:#5#, realloc:#6#, free:#7#, new:#8#, delete:#9#, newSP:#10#, deleteSP:#11#\n\ Cumulative_MB: malloc:#12#, realloc:#13#, free:#14#, new:#15#, delete:#16#" ); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_ramMB = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_activeAllocationsMB = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_activesCount_voidPointers = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_activesCount_objects = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_activesCount_spObjects = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_malloc = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_realloc = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_free = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_new = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_delete = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_newSP = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_functionCallsCount_deleteSP = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_cumulativeMB_malloc = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_cumulativeMB_realloc = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_cumulativeMB_free = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_cumulativeMB_new = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_memInfoGeneral->appendTrackedDataValue(dde_memInfoGeneral_cumulativeMB_delete = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); } { dde_physics3DDebugRendering = addDebugEntry(1/*linesCount*/, true/*hasToggleSwitch*/); dde_physics3DDebugRendering->setPlaceholderedText(">> Physics 3D debug"); bool isDebugRender = app->getRuntimeSettings()->getSettingBool(rpg3D::IGamePartPhysics3D::RUNTIME_SETTING_physics3DDebugRender, false); dde_physics3DDebugRendering->setToggleSwitchIsOn(isDebugRender); dde_physics3DDebugRendering->setCb_onToggleSwitchStateChanged(std::bind(&DeV_PageMisc::onPhysics3DDebugRenderingToggleSwitchChange, this, std::placeholders::_1, std::placeholders::_2)); } { dde_physics3DDebugClearDepthBuffer = addDebugEntry(1/*linesCount*/, true/*hasToggleSwitch*/); dde_physics3DDebugClearDepthBuffer->setPlaceholderedText(">> Physics 3D debug clear deth buffer"); bool isDebugRender = app->getRuntimeSettings()->getSettingBool(rpg3D::IGamePartPhysics3D::RUNTIME_SETTING_physics3DDebugRender, false); dde_physics3DDebugClearDepthBuffer->setToggleSwitchIsOn(isDebugRender); dde_physics3DDebugClearDepthBuffer->setCb_onToggleSwitchStateChanged(std::bind(&DeV_PageMisc::onPhysics3DDebugRenderingToggleSwitchChange, this, std::placeholders::_1, std::placeholders::_2)); } { dde_renderTriangles = addDebugEntry(4/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_renderTriangles->setPlaceholderedText(">> Triangles:\n2D:#0#, min:#1#, max:#2#\n3D:#3#, min:#4#, max:#5#\nSpecial:#6#, min:#7#, max:#8#"); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_2D_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_2D_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_2D_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_3D_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_3D_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_3D_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_Special_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_Special_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderTriangles->appendTrackedDataValue(dde_renderTriangles_Special_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); isDirty_monitoredVal_triangles = true; } { dde_renderLines = addDebugEntry(2/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_renderLines->setPlaceholderedText(">> Lines:\nSpecial:#0#, min:#1#, max:#2#"); dde_renderLines->appendTrackedDataValue(dde_renderLines_Special_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderLines->appendTrackedDataValue(dde_renderLines_Special_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_renderLines->appendTrackedDataValue(dde_renderLines_Special_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); isDirty_monitoredVal_lines = true; } { dde_glUploadCount = addDebugEntry(3/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_glUploadCount->setPlaceholderedText(">> GL_upload count:\nBuffer:#0#, min:#1#, max:#2#\nTexture:#3#, min:#4#, max:#5#"); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Buffer_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Buffer_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Buffer_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Texture_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Texture_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadCount->appendTrackedDataValue(dde_glUploadCount_Texture_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); isDirty_monitoredVal_glUploadCount = true; } { dde_glUploadBytes = addDebugEntry(3/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_glUploadBytes->setPlaceholderedText(">> GL_upload bytes:\nBuffer:#0# KB, min:#1# KB, max:#2# KB\nTexture:#3# KB, min:#4# KB, max:#5# KB"); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Buffer_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Buffer_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Buffer_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Texture_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Texture_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glUploadBytes->appendTrackedDataValue(dde_glUploadBytes_Texture_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); isDirty_monitoredVal_glUploadBytes = true; } { dde_shaderUniforms = addDebugEntry(3/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_shaderUniforms->setPlaceholderedText(">> Shader_Uniform:\nSet calls:#0#, min:#1#, max:#2#\nData sent:#3# KB, min:#4# KB, max:#5# KB"); dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_SetCalls.value_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_SetCalls.value_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_SetCalls.value_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms_SetCalls.isDirty_monitoredVal = true; dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_BytesCount.value_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_BytesCount.value_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms->appendTrackedDataValue(dde_shaderUniforms_BytesCount.value_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_shaderUniforms_BytesCount.isDirty_monitoredVal = true; } { dde_GLResources = addDebugEntry(3/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_GLResources->setPlaceholderedText(">> GL resources\nVRAM:#0# MB, min:#1# MB, max:#2# MB\nShader programs:#3#, Buffers:#4#, Textures:#5#"); dde_GLResources->appendTrackedDataValue(dde_GLResources_VRAM.value_frame = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_GLResources->appendTrackedDataValue(dde_GLResources_VRAM.value_min = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_GLResources->appendTrackedDataValue(dde_GLResources_VRAM.value_max = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_GLResources_VRAM.isDirty_monitoredVal = true; dde_GLResources->appendTrackedDataValue(dde_GLResources_shaderProgramssCount = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_GLResources->appendTrackedDataValue(dde_GLResources_buffersCount = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_GLResources->appendTrackedDataValue(dde_GLResources_texturesCount = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); } { dde_glCreateCalls = addDebugEntry(2/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); dde_glCreateCalls->setPlaceholderedText(">> GL create calls:\nShader programs create:#0#, Buffers create:#1#, Textures create:#2#"); dde_glCreateCalls->appendTrackedDataValue(dde_glCreateCalls_shaderProgramssCreateCalls = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glCreateCalls->appendTrackedDataValue(dde_glCreateCalls_buffersCreateCalls = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); dde_glCreateCalls->appendTrackedDataValue(dde_glCreateCalls_texturesCreateCalls = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); } { entryTextures.dde = addDebugEntry(2/*linesCount*/, false/*hasToggleSwitch*/, cPageIndex/*pageIndex*/); entryTextures.dde->setPlaceholderedText(">> Textures\n count:#0#, ramMB:#1#, vramMB:#2#"); entryTextures.dde->appendTrackedDataValue(entryTextures.count = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); entryTextures.dde->appendTrackedDataValue(entryTextures.ramMB = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); entryTextures.dde->appendTrackedDataValue(entryTextures.vramMB = WrappedValue<int>::NewSPDirect(0, base::IWrappedValue::Type::T_int)); } } void DeV_PageMisc::onPhysics3DDebugRenderingToggleSwitchChange(IDebugEntryUser* debugEntryUser, bool newState) { if (debugEntryUser == dde_physics3DDebugRendering.get()) { app->getRuntimeSettings()->setSetting(rpg3D::IGamePartPhysics3D::RUNTIME_SETTING_physics3DDebugRender, newState); } else if (debugEntryUser == dde_physics3DDebugClearDepthBuffer.get()) { app->getRuntimeSettings()->setSetting(rpg3D::IGamePartPhysics3D::RUNTIME_SETTING_physics3DDebugClearDepthBuffer, newState); } else { throw LogicException(LOC); } } void DeV_PageMisc::visualLoop(float deltaS, int deltaMS) { super::visualLoop(deltaS, deltaMS); if (isActive() && getActivePageIndex() == cPageIndex) { if (dynamicDebugEntry_threads_managedThreadsCount->getReference() != threadsManager->getStatistics_managedThreadsCount()) { dynamicDebugEntry_threads_managedThreadsCount->getReference() = threadsManager->getStatistics_managedThreadsCount(); dynamicDebugEntry_threads->invalidateData(); } if (dynamicDebugEntry_threads_nativeThreadsCount->getReference() != threadsManager->getStatistics_nativeThreadsCount()) { dynamicDebugEntry_threads_nativeThreadsCount->getReference() = threadsManager->getStatistics_nativeThreadsCount(); dynamicDebugEntry_threads->invalidateData(); } { mem::MemoryStats* memStats = mem::MM::mm->getStats(); int ram_mBytes = Math::floor(memStats->ram_bytes_count / (1024 * 1024)); if (dde_memInfoGeneral_ramMB->getReference() != ram_mBytes) { dde_memInfoGeneral_ramMB->getReference() = ram_mBytes; dde_memInfoGeneral->invalidateData(); } int activeAllocations_mBytes = Math::floor(memStats->activeAllocations_bytes_count / (1024 * 1024)); if (dde_memInfoGeneral_activeAllocationsMB->getReference() != activeAllocations_mBytes) { dde_memInfoGeneral_activeAllocationsMB->getReference() = activeAllocations_mBytes; dde_memInfoGeneral->invalidateData(); } // if (dde_memInfoGeneral_activesCount_voidPointers->getReference() != memStats->activesCount_voidPointers) { dde_memInfoGeneral_activesCount_voidPointers->getReference() = memStats->activesCount_voidPointers; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_activesCount_objects->getReference() != memStats->activesCount_objects) { dde_memInfoGeneral_activesCount_objects->getReference() = memStats->activesCount_objects; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_activesCount_spObjects->getReference() != mem::SharedPointer_Stats::activesCount_spObjects) { dde_memInfoGeneral_activesCount_spObjects->getReference() = mem::SharedPointer_Stats::activesCount_spObjects; dde_memInfoGeneral->invalidateData(); } // if (dde_memInfoGeneral_functionCallsCount_malloc->getReference() != memStats->functionCallsCount_malloc) { dde_memInfoGeneral_functionCallsCount_malloc->getReference() = memStats->functionCallsCount_malloc; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_realloc->getReference() != memStats->functionCallsCount_realloc) { dde_memInfoGeneral_functionCallsCount_realloc->getReference() = memStats->functionCallsCount_realloc; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_free->getReference() != memStats->functionCallsCount_free) { dde_memInfoGeneral_functionCallsCount_free->getReference() = memStats->functionCallsCount_free; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_new->getReference() != memStats->functionCallsCount_new) { dde_memInfoGeneral_functionCallsCount_new->getReference() = memStats->functionCallsCount_new; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_delete->getReference() != memStats->functionCallsCount_delete) { dde_memInfoGeneral_functionCallsCount_delete->getReference() = memStats->functionCallsCount_delete; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_newSP->getReference() != mem::SharedPointer_Stats::functionCallsCount_newSP) { dde_memInfoGeneral_functionCallsCount_newSP->getReference() = mem::SharedPointer_Stats::functionCallsCount_newSP; dde_memInfoGeneral->invalidateData(); } if (dde_memInfoGeneral_functionCallsCount_deleteSP->getReference() != mem::SharedPointer_Stats::functionCallsCount_deleteSP) { dde_memInfoGeneral_functionCallsCount_deleteSP->getReference() = mem::SharedPointer_Stats::functionCallsCount_deleteSP; dde_memInfoGeneral->invalidateData(); } // int cumulativeByteChangesMB_malloc = Math::floor(memStats->cumulativeByteChanges_malloc / (1024 * 1024)); if (dde_memInfoGeneral_cumulativeMB_malloc->getReference() != cumulativeByteChangesMB_malloc) { dde_memInfoGeneral_cumulativeMB_malloc->getReference() = cumulativeByteChangesMB_malloc; dde_memInfoGeneral->invalidateData(); } // asd_x;// use -1 for the value currently because value is not accessible until the custom memory manager is implemented. int cumulativeByteChangesMB_realloc = -1;// asd_x; Math::floor(memStats->cumulativeByteChanges_realoc / (1024 * 1024)); if (dde_memInfoGeneral_cumulativeMB_realloc->getReference() != cumulativeByteChangesMB_realloc) { dde_memInfoGeneral_cumulativeMB_realloc->getReference() = cumulativeByteChangesMB_realloc; dde_memInfoGeneral->invalidateData(); } // asd_x;// use -1 for the value currently because value is not accessible until the custom memory manager is implemented. if (dde_memInfoGeneral_cumulativeMB_free->getReference() != -1) { dde_memInfoGeneral_cumulativeMB_free->getReference() = -1; dde_memInfoGeneral->invalidateData(); } int cumulativeByteChangesMB_new = Math::floor(memStats->cumulativeByteChanges_new / (1024 * 1024)); if (dde_memInfoGeneral_cumulativeMB_new->getReference() != cumulativeByteChangesMB_new) { dde_memInfoGeneral_cumulativeMB_new->getReference() = cumulativeByteChangesMB_new; dde_memInfoGeneral->invalidateData(); } // asd_x;// use -1 for the value currently because value is not accessible until the custom memory manager is implemented. if (dde_memInfoGeneral_cumulativeMB_delete->getReference() != -1) { dde_memInfoGeneral_cumulativeMB_delete->getReference() = -1; dde_memInfoGeneral->invalidateData(); } } { if (isDirty_monitoredVal_triangles || isMinMaxCumulativeClearRequested) { isDirty_monitoredVal_triangles = false; monitoredVal_triangles_2D_min = GLUtil::gl->getProfiler2D()->drawTrianglesCount; monitoredVal_triangles_2D_max = GLUtil::gl->getProfiler2D()->drawTrianglesCount; monitoredVal_triangles_3D_min = GLUtil::gl->getProfiler3D()->drawTrianglesCount; monitoredVal_triangles_3D_max = GLUtil::gl->getProfiler3D()->drawTrianglesCount; monitoredVal_triangles_Special_min = GLUtil::gl->getProfilerSpecial()->drawTrianglesCount; monitoredVal_triangles_Special_max = GLUtil::gl->getProfilerSpecial()->drawTrianglesCount; } else { monitoredVal_triangles_2D_min = Math::min(monitoredVal_triangles_2D_min, GLUtil::gl->getProfiler2D()->drawTrianglesCount); monitoredVal_triangles_2D_max = Math::max(monitoredVal_triangles_2D_max, GLUtil::gl->getProfiler2D()->drawTrianglesCount); monitoredVal_triangles_3D_min = Math::min(monitoredVal_triangles_3D_min, GLUtil::gl->getProfiler3D()->drawTrianglesCount); monitoredVal_triangles_3D_max = Math::max(monitoredVal_triangles_3D_max, GLUtil::gl->getProfiler3D()->drawTrianglesCount); monitoredVal_triangles_Special_min = Math::min(monitoredVal_triangles_Special_min, GLUtil::gl->getProfilerSpecial()->drawTrianglesCount); monitoredVal_triangles_Special_max = Math::max(monitoredVal_triangles_Special_max, GLUtil::gl->getProfilerSpecial()->drawTrianglesCount); } bool isChange = false; CheckedSetDebugEntry(dde_renderTriangles_2D_frame, GLUtil::gl->getProfiler2D()->drawTrianglesCount, isChange); CheckedSetDebugEntry(dde_renderTriangles_2D_min, monitoredVal_triangles_2D_min, isChange); CheckedSetDebugEntry(dde_renderTriangles_2D_max, monitoredVal_triangles_2D_max, isChange); CheckedSetDebugEntry(dde_renderTriangles_3D_frame, GLUtil::gl->getProfiler3D()->drawTrianglesCount, isChange); CheckedSetDebugEntry(dde_renderTriangles_3D_min, monitoredVal_triangles_3D_min, isChange); CheckedSetDebugEntry(dde_renderTriangles_3D_max, monitoredVal_triangles_3D_max, isChange); CheckedSetDebugEntry(dde_renderTriangles_Special_frame, GLUtil::gl->getProfilerSpecial()->drawTrianglesCount, isChange); CheckedSetDebugEntry(dde_renderTriangles_Special_min, monitoredVal_triangles_Special_min, isChange); CheckedSetDebugEntry(dde_renderTriangles_Special_max, monitoredVal_triangles_Special_max, isChange); if (isChange) { dde_renderTriangles->invalidateData(); } } { if (isDirty_monitoredVal_lines || isMinMaxCumulativeClearRequested) { isDirty_monitoredVal_lines = false; monitoredVal_lines_Special_min = GLUtil::gl->getProfilerSpecial()->drawLinesCount; monitoredVal_lines_Special_max = GLUtil::gl->getProfilerSpecial()->drawLinesCount; } else { monitoredVal_lines_Special_min = Math::min(monitoredVal_lines_Special_min, GLUtil::gl->getProfilerSpecial()->drawLinesCount); monitoredVal_lines_Special_max = Math::max(monitoredVal_lines_Special_max, GLUtil::gl->getProfilerSpecial()->drawLinesCount); } bool isChange = false; CheckedSetDebugEntry(dde_renderLines_Special_frame, GLUtil::gl->getProfilerSpecial()->drawLinesCount, isChange); CheckedSetDebugEntry(dde_renderLines_Special_min, monitoredVal_lines_Special_min, isChange); CheckedSetDebugEntry(dde_renderLines_Special_max, monitoredVal_lines_Special_max, isChange); if (isChange) { dde_renderLines->invalidateData(); } } { int bufferUploadCount = GLUtil::gl->getGlobalsProfiler()->bufferUploadCount; int textureUploadCount = GLUtil::gl->getGlobalsProfiler()->textureUploadCount; if (isDirty_monitoredVal_glUploadCount || isMinMaxCumulativeClearRequested) { isDirty_monitoredVal_glUploadCount = false; monitoredVal_glUploadCount_Buffer_min = bufferUploadCount; monitoredVal_glUploadCount_Buffer_max = bufferUploadCount; monitoredVal_glUploadCount_Texture_min = textureUploadCount; monitoredVal_glUploadCount_Texture_max = textureUploadCount; } else { monitoredVal_glUploadCount_Buffer_min = Math::min(monitoredVal_glUploadCount_Buffer_min, bufferUploadCount); monitoredVal_glUploadCount_Buffer_max = Math::max(monitoredVal_glUploadCount_Buffer_max, bufferUploadCount); monitoredVal_glUploadCount_Texture_min = Math::min(monitoredVal_glUploadCount_Texture_min, textureUploadCount); monitoredVal_glUploadCount_Texture_max = Math::max(monitoredVal_glUploadCount_Texture_max, textureUploadCount); } bool isChange = false; CheckedSetDebugEntry(dde_glUploadCount_Buffer_frame, bufferUploadCount, isChange); CheckedSetDebugEntry(dde_glUploadCount_Buffer_min, monitoredVal_glUploadCount_Buffer_min, isChange); CheckedSetDebugEntry(dde_glUploadCount_Buffer_max, monitoredVal_glUploadCount_Buffer_max, isChange); CheckedSetDebugEntry(dde_glUploadCount_Texture_frame, textureUploadCount, isChange); CheckedSetDebugEntry(dde_glUploadCount_Texture_min, monitoredVal_glUploadCount_Texture_min, isChange); CheckedSetDebugEntry(dde_glUploadCount_Texture_max, monitoredVal_glUploadCount_Texture_max, isChange); if (isChange) { dde_glUploadCount->invalidateData(); } } { int bufferUploadKB = Math::floor(GLUtil::gl->getGlobalsProfiler()->bufferUploadBytes / 1000); int textureUploadKB = Math::floor(GLUtil::gl->getGlobalsProfiler()->textureUploadBytes / 1000); if (isDirty_monitoredVal_glUploadBytes || isMinMaxCumulativeClearRequested) { isDirty_monitoredVal_glUploadBytes = false; monitoredVal_glUploadBytes_Buffer_min = bufferUploadKB; monitoredVal_glUploadBytes_Buffer_max = bufferUploadKB; monitoredVal_glUploadBytes_Texture_min = textureUploadKB; monitoredVal_glUploadBytes_Texture_max = textureUploadKB; } else { monitoredVal_glUploadBytes_Buffer_min = Math::min(monitoredVal_glUploadBytes_Buffer_min, bufferUploadKB); monitoredVal_glUploadBytes_Buffer_max = Math::max(monitoredVal_glUploadBytes_Buffer_max, bufferUploadKB); monitoredVal_glUploadBytes_Texture_min = Math::min(monitoredVal_glUploadBytes_Texture_min, textureUploadKB); monitoredVal_glUploadBytes_Texture_max = Math::max(monitoredVal_glUploadBytes_Texture_max, textureUploadKB); } bool isChange = false; CheckedSetDebugEntry(dde_glUploadBytes_Buffer_frame, bufferUploadKB, isChange); CheckedSetDebugEntry(dde_glUploadBytes_Buffer_min, monitoredVal_glUploadBytes_Buffer_min, isChange); CheckedSetDebugEntry(dde_glUploadBytes_Buffer_max, monitoredVal_glUploadBytes_Buffer_max, isChange); CheckedSetDebugEntry(dde_glUploadBytes_Texture_frame, textureUploadKB, isChange); CheckedSetDebugEntry(dde_glUploadBytes_Texture_min, monitoredVal_glUploadBytes_Texture_min, isChange); CheckedSetDebugEntry(dde_glUploadBytes_Texture_max, monitoredVal_glUploadBytes_Texture_max, isChange); if (isChange) { dde_glUploadBytes->invalidateData(); } } { bool isChange = false; if (dde_shaderUniforms_SetCalls.isDirty_monitoredVal || isMinMaxCumulativeClearRequested) { dde_shaderUniforms_SetCalls.isDirty_monitoredVal = false; dde_shaderUniforms_SetCalls.monitoredVal_min = GLUtil::gl->getGlobalsProfiler()->shaderUniformSetCallsCount; dde_shaderUniforms_SetCalls.monitoredVal_max = GLUtil::gl->getGlobalsProfiler()->shaderUniformSetCallsCount; } else { dde_shaderUniforms_SetCalls.monitoredVal_min = Math::min(dde_shaderUniforms_SetCalls.monitoredVal_min, GLUtil::gl->getGlobalsProfiler()->shaderUniformSetCallsCount); dde_shaderUniforms_SetCalls.monitoredVal_max = Math::max(dde_shaderUniforms_SetCalls.monitoredVal_max, GLUtil::gl->getGlobalsProfiler()->shaderUniformSetCallsCount); } CheckedSetDebugEntry(dde_shaderUniforms_SetCalls.value_frame, GLUtil::gl->getGlobalsProfiler()->shaderUniformSetCallsCount, isChange); CheckedSetDebugEntry(dde_shaderUniforms_SetCalls.value_min, dde_shaderUniforms_SetCalls.monitoredVal_min, isChange); CheckedSetDebugEntry(dde_shaderUniforms_SetCalls.value_max, dde_shaderUniforms_SetCalls.monitoredVal_max, isChange); int shaderUniformSetKB = Math::floor(GLUtil::gl->getGlobalsProfiler()->shaderUniformSetBytesCount / 1000); if (dde_shaderUniforms_BytesCount.isDirty_monitoredVal || isMinMaxCumulativeClearRequested) { dde_shaderUniforms_BytesCount.isDirty_monitoredVal = false; dde_shaderUniforms_BytesCount.monitoredVal_min = shaderUniformSetKB; dde_shaderUniforms_BytesCount.monitoredVal_max = shaderUniformSetKB; } else { dde_shaderUniforms_BytesCount.monitoredVal_min = Math::min(dde_shaderUniforms_BytesCount.monitoredVal_min, shaderUniformSetKB); dde_shaderUniforms_BytesCount.monitoredVal_max = Math::max(dde_shaderUniforms_BytesCount.monitoredVal_max, shaderUniformSetKB); } CheckedSetDebugEntry(dde_shaderUniforms_BytesCount.value_frame, shaderUniformSetKB, isChange); CheckedSetDebugEntry(dde_shaderUniforms_BytesCount.value_min, dde_shaderUniforms_BytesCount.monitoredVal_min, isChange); CheckedSetDebugEntry(dde_shaderUniforms_BytesCount.value_max, dde_shaderUniforms_BytesCount.monitoredVal_max, isChange); if (isChange) { dde_shaderUniforms->invalidateData(); } } { bool isChange = false; int vram_MB = Math::floor(GLUtil::gl->getGlobalsCumulativeProfiler()->vram_bytes_cumulative / (1024 * 1024)); if (dde_GLResources_VRAM.isDirty_monitoredVal || isMinMaxCumulativeClearRequested) { dde_GLResources_VRAM.isDirty_monitoredVal = false; dde_GLResources_VRAM.monitoredVal_min = vram_MB; dde_GLResources_VRAM.monitoredVal_max = vram_MB; } else { dde_GLResources_VRAM.monitoredVal_min = Math::min(dde_GLResources_VRAM.monitoredVal_min, vram_MB); dde_GLResources_VRAM.monitoredVal_max = Math::max(dde_GLResources_VRAM.monitoredVal_max, vram_MB); } CheckedSetDebugEntry(dde_GLResources_VRAM.value_frame, vram_MB, isChange); CheckedSetDebugEntry(dde_GLResources_VRAM.value_min, dde_GLResources_VRAM.monitoredVal_min, isChange); CheckedSetDebugEntry(dde_GLResources_VRAM.value_max, dde_GLResources_VRAM.monitoredVal_max, isChange); CheckedSetDebugEntry(dde_GLResources_shaderProgramssCount, GLUtil::gl->getGlobalsCumulativeProfiler()->shaderProgramsCount_cumulative, isChange); CheckedSetDebugEntry(dde_GLResources_buffersCount, GLUtil::gl->getGlobalsCumulativeProfiler()->buffersCount_cumulative, isChange); CheckedSetDebugEntry(dde_GLResources_texturesCount, GLUtil::gl->getGlobalsCumulativeProfiler()->texturesCount_cumulative, isChange); if (isChange) { dde_GLResources->invalidateData(); } } { bool isChange = false; CheckedSetDebugEntry(dde_glCreateCalls_shaderProgramssCreateCalls, GLUtil::gl->getGlobalsCumulativeProfiler()->createCalls_shaderPrograms, isChange); CheckedSetDebugEntry(dde_glCreateCalls_buffersCreateCalls, GLUtil::gl->getGlobalsCumulativeProfiler()->createCalls_buffers, isChange); CheckedSetDebugEntry(dde_glCreateCalls_texturesCreateCalls, GLUtil::gl->getGlobalsCumulativeProfiler()->createCalls_textures, isChange); if (isChange) { dde_glCreateCalls->invalidateData(); } } { bool isChange = false; int texturesRam_MB = Math::floor(Texture::Stats::ramBytes / (1024 * 1024)); // Texture array vram value is also used because texture_array textures don't allocate vram. int texturesVram_MB = Math::floor((Texture::Stats::vramBytes + graphics::TextureArray::Stats::vramBytes) / (1024 * 1024)); CheckedSetDebugEntry(entryTextures.count, Texture::Stats::texturesCount, isChange); CheckedSetDebugEntry(entryTextures.ramMB, texturesRam_MB, isChange); CheckedSetDebugEntry(entryTextures.vramMB, texturesVram_MB, isChange); if (isChange) { entryTextures.dde->invalidateData(); } } if (isMinMaxCumulativeClearRequested) { isMinMaxCumulativeClearRequested = false; } } } void DeV_PageMisc::clearMinMaxCumulative() { super::clearMinMaxCumulative(); isMinMaxCumulativeClearRequested = true; } void DeV_PageMisc::disposeMainPre() { if (dynamicDebugEntry_threads != nullptr) { dynamicDebugEntry_threads->remove(); dynamicDebugEntry_threads = nullptr; } if (dde_memInfoGeneral != nullptr) { dde_memInfoGeneral->remove(); dde_memInfoGeneral = nullptr; } if (dde_physics3DDebugRendering != nullptr) { dde_physics3DDebugRendering->remove(); dde_physics3DDebugRendering = nullptr; } if (dde_physics3DDebugClearDepthBuffer != nullptr) { dde_physics3DDebugClearDepthBuffer->remove(); dde_physics3DDebugClearDepthBuffer = nullptr; } if (dde_renderTriangles != nullptr) { dde_renderTriangles->remove(); dde_renderTriangles = nullptr; } if (dde_renderLines != nullptr) { dde_renderLines->remove(); dde_renderLines = nullptr; } if (dde_glUploadCount != nullptr) { dde_glUploadCount->remove(); dde_glUploadCount = nullptr; } if (dde_glUploadBytes != nullptr) { dde_glUploadBytes->remove(); dde_glUploadBytes = nullptr; } if (dde_shaderUniforms != nullptr) { dde_shaderUniforms->remove(); dde_shaderUniforms = nullptr; } if (dde_GLResources != nullptr) { dde_GLResources->remove(); dde_GLResources = nullptr; } if (dde_glCreateCalls != nullptr) { dde_glCreateCalls->remove(); dde_glCreateCalls = nullptr; } if (entryTextures.dde != nullptr) { entryTextures.dde->remove(); entryTextures.dde = nullptr; } super::disposeMainPre(); } DeV_PageMisc::~DeV_PageMisc() { //void }
[ "adriannostromo@gmail.com" ]
adriannostromo@gmail.com
a85fe8890c2e28f5e950c75c1cbe54a56cd38f0c
93fe28a154e9d3184c3800b144b3bde6e5052f03
/core/src/index/ElementGeometryClipper.cpp
4f53496f8fdfe23483b93668d9e9a8834df44b39
[ "Apache-2.0" ]
permissive
captain-switz/utymap
4e11a0f7c2183c7d504787875ae63eafab24de90
a347d889d1b0c2e7373babf32423e0f91d1ee642
refs/heads/master
2021-01-01T20:01:58.491136
2017-07-29T10:24:51
2017-07-29T10:24:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,665
cpp
#include "BoundingBox.hpp" #include "QuadKey.hpp" #include "entities/Element.hpp" #include "entities/Node.hpp" #include "entities/Way.hpp" #include "entities/Area.hpp" #include "entities/Relation.hpp" #include "index/ElementStore.hpp" #include "index/ElementGeometryClipper.hpp" using namespace utymap; using namespace utymap::entities; using namespace utymap::mapcss; namespace { /// Max precision for Lat/Lon const double Scale = 1E7; using PointLocation = utymap::index::ElementGeometryClipper::PointLocation; template<typename T, typename std::enable_if<std::is_same<T, Way>::value, std::size_t>::type = 0> bool areConnected(const BoundingBox &, const BoundingBox &, bool allOutside) { return !allOutside; } template<typename T, typename std::enable_if<std::is_same<T, Area>::value, std::size_t>::type = 0> bool areConnected(const BoundingBox &quadKeyBbox, const BoundingBox &elementBbox, bool allOutside) { return quadKeyBbox.intersects(elementBbox); } template<typename T> PointLocation checkElement(const BoundingBox &quadKeyBbox, const T &element, ClipperLib::Path &elementShape) { elementShape.reserve(element.coordinates.size()); bool allInside = true; bool allOutside = true; BoundingBox elementBbox; for (const GeoCoordinate &coord : element.coordinates) { bool contains = quadKeyBbox.contains(coord); allInside &= contains; allOutside &= !contains; elementBbox.expand(coord); auto x = static_cast<ClipperLib::cInt>(coord.longitude*Scale); auto y = static_cast<ClipperLib::cInt>(coord.latitude*Scale); elementShape.push_back(ClipperLib::IntPoint(x, y)); } return allInside ? PointLocation::AllInside : (areConnected<T>(quadKeyBbox, elementBbox, allOutside) ? PointLocation::Mixed : PointLocation::AllOutside); } template<typename T> void setCoordinates(T &t, const ClipperLib::Path &path) { t.coordinates.reserve(path.size()); for (const auto &c : path) { t.coordinates.push_back(GeoCoordinate(c.Y/Scale, c.X/Scale)); } } template<typename T> void setData(T &t, const utymap::entities::Element &element, const ClipperLib::Path &path) { t.id = element.id; t.tags = element.tags; setCoordinates<T>(t, path); } ClipperLib::Path createPathFromBoundingBox(const BoundingBox &quadKeyBbox) { double xMin = quadKeyBbox.minPoint.longitude, yMin = quadKeyBbox.minPoint.latitude, xMax = quadKeyBbox.maxPoint.longitude, yMax = quadKeyBbox.maxPoint.latitude; ClipperLib::Path rect; rect.push_back(ClipperLib::IntPoint(static_cast<ClipperLib::cInt>(xMin*Scale), static_cast<ClipperLib::cInt>(yMin*Scale))); rect.push_back(ClipperLib::IntPoint(static_cast<ClipperLib::cInt>(xMax*Scale), static_cast<ClipperLib::cInt>(yMin*Scale))); rect.push_back(ClipperLib::IntPoint(static_cast<ClipperLib::cInt>(xMax*Scale), static_cast<ClipperLib::cInt>(yMax*Scale))); rect.push_back(ClipperLib::IntPoint(static_cast<ClipperLib::cInt>(xMin*Scale), static_cast<ClipperLib::cInt>(yMax*Scale))); return std::move(rect); } template<typename T> std::shared_ptr<Element> clipElement(ClipperLib::ClipperEx &clipper, const BoundingBox &bbox, const T &element, bool isClosed) { ClipperLib::Path elementShape; PointLocation pointLocation = checkElement(bbox, element, elementShape); // 1. all geometry inside current quadkey: no need to truncate. if (pointLocation==PointLocation::AllInside) { return std::make_shared<T>(element); } // 2. all geometry outside : way should be skipped if (pointLocation==PointLocation::AllOutside) { return nullptr; } ClipperLib::PolyTree solution; clipper.AddPath(elementShape, ClipperLib::ptSubject, isClosed); clipper.Execute(ClipperLib::ctIntersection, solution); clipper.removeSubject(); std::size_t count = static_cast<std::size_t>(solution.Total()); // 3. way intersects border only once: store a copy with clipped geometry if (count==1) { auto clippedElement = std::make_shared<T>(); setData(*clippedElement, element, solution.GetFirst()->Contour); return clippedElement; } // 4. in this case, result should be stored as relation (collection of ways) if (count > 1) { auto relation = std::make_shared<Relation>(); relation->id = element.id; relation->tags = element.tags; relation->elements.reserve(count); ClipperLib::PolyNode *polyNode = solution.GetFirst(); while (polyNode) { auto clippedElement = std::make_shared<T>(); clippedElement->id = element.id; setCoordinates(*clippedElement, polyNode->Contour); relation->elements.push_back(clippedElement); polyNode = polyNode->GetNext(); } return relation; } // no intersection return nullptr; } std::shared_ptr<Element> clipWay(ClipperLib::ClipperEx &clipper, const BoundingBox &bbox, const Way &way) { return clipElement(clipper, bbox, way, false); } std::shared_ptr<Element> clipArea(ClipperLib::ClipperEx &clipper, const BoundingBox &bbox, const Area &area) { return clipElement(clipper, bbox, area, true); } std::shared_ptr<Element> clipRelation(ClipperLib::ClipperEx &clipper, const BoundingBox &bbox, const Relation &relation); /// Visits relation and collects clipped elements struct RelationVisitor : public ElementVisitor { RelationVisitor(ClipperLib::ClipperEx &clipper, const BoundingBox &quadKeyBbox) : relation(nullptr), clipper_(clipper), bbox_(quadKeyBbox) { } void visitNode(const Node &node) override { if (bbox_.contains(node.coordinate)) { ensureRelation(); relation->elements.push_back(std::make_shared<Node>(node)); } } void visitWay(const Way &way) override { addElement(clipWay(clipper_, bbox_, way), way); } void visitArea(const Area &area) override { addElement(clipArea(clipper_, bbox_, area), area); } void visitRelation(const Relation &relation) override { addElement(clipRelation(clipper_, bbox_, relation), relation); } std::shared_ptr<Relation> relation; private: void ensureRelation() { if (relation==nullptr) relation = std::make_shared<Relation>(); } void addElement(std::shared_ptr<Element> element, const Element &original) { if (element==nullptr) return; ensureRelation(); element->id = original.id; element->tags = original.tags; relation->elements.push_back(element); } ClipperLib::ClipperEx &clipper_; const BoundingBox &bbox_; }; std::shared_ptr<Element> clipRelation(ClipperLib::ClipperEx &clipper, const BoundingBox &bbox, const Relation &relation) { RelationVisitor visitor(clipper, bbox); for (const auto &element : relation.elements) element->accept(visitor); if (visitor.relation==nullptr) return nullptr; std::shared_ptr<Element> element = visitor.relation->elements.size()==1 ? visitor.relation->elements.at(0) : visitor.relation; element->id = relation.id; element->tags = relation.tags; return element; } } namespace utymap { namespace index { ElementGeometryClipper::ElementGeometryClipper(Callback callback) : callback_(callback), quadKey_(), quadKeyBbox_(), clipper_() { } void ElementGeometryClipper::clipAndCall(const Element &element, const QuadKey &quadKey, const BoundingBox &quadKeyBbox) { quadKey_ = quadKey; quadKeyBbox_ = quadKeyBbox; clipper_.Clear(); clipper_.AddPath(createPathFromBoundingBox(quadKeyBbox_), ClipperLib::ptClip, true); element.accept(*this); } void ElementGeometryClipper::visitNode(const Node &node) { if (quadKeyBbox_.contains(node.coordinate)) callback_(node, quadKey_); } void ElementGeometryClipper::visitWay(const Way &way) { auto element = clipWay(clipper_, quadKeyBbox_, way); if (element!=nullptr) callback_(*element, quadKey_); } void ElementGeometryClipper::visitArea(const Area &area) { auto element = clipArea(clipper_, quadKeyBbox_, area); if (element!=nullptr) callback_(*element, quadKey_); } void ElementGeometryClipper::visitRelation(const Relation &relation) { auto element = clipRelation(clipper_, quadKeyBbox_, relation); if (element!=nullptr) callback_(*element, quadKey_); } } }
[ "ilya.builuk@gmail.com" ]
ilya.builuk@gmail.com
f2407bcd06d9712e06ba1a9234c0a0ab6230fe59
52e241aeade9988d6962929f371720fd05f3a6de
/pxtone/pxtnDescriptor.cpp
eaa6e855cf982e9a5f219e33e7ee0c32d1d00e7c
[ "LicenseRef-scancode-public-domain", "CC0-1.0" ]
permissive
xl1/pxtone-js
6291569c07e8a497fca3e5100822713ebc12375b
95beed941b3dd7304544b60404dee3c2e468a75e
refs/heads/master
2020-04-16T13:50:21.087490
2019-05-02T15:52:54
2019-05-02T15:53:54
165,644,853
0
1
null
null
null
null
UTF-8
C++
false
false
5,436
cpp
 #include "./pxtn.h" #include "./pxtnDescriptor.h" pxtnDescriptor::pxtnDescriptor() { _p_desc = NULL ; _size = 0; _b_file = false; _b_read = false; _cur = 0; } int pxtnDescriptor::get_size_bytes() const { return _size; } bool pxtnDescriptor::set_memory_r( void *p_mem, int size ) { if( !p_mem || size < 1 ) return false; _p_desc = p_mem; _size = size ; _b_file = false; _b_read = true ; _cur = 0; return true; } bool pxtnDescriptor::set_file_r ( FILE *fd ) { if( !fd ) return false; //fpos_t sz; if( fseek ( fd, 0, SEEK_END ) ) return false; int32_t size = ftell(fd); //if( fgetpos( fd, &sz ) ) return false; if( fseek ( fd, 0, SEEK_SET ) ) return false; _p_desc = fd ; #ifdef pxSCE _size = (int32_t)sz._Off; #else //_size = (int32_t)(long)sz; _size = size; #endif _b_file = true; _b_read = true; _cur = 0; return true; } bool pxtnDescriptor::set_file_w ( FILE *fd ) { if( !fd ) return false; _p_desc = fd ; _size = 0 ; _b_file = true ; _b_read = false; _cur = 0 ; return true; } bool pxtnDescriptor::seek( pxtnSEEK mode, int val ) { if( _b_file ) { int seek_tbl[ pxtnSEEK_num ] = {SEEK_SET, SEEK_CUR, SEEK_END}; if( fseek( (FILE*)_p_desc, val, seek_tbl[ mode ] ) ) return false; } else { switch( mode ) { case pxtnSEEK_set: if( val >= _size ) return false; if( val < 0 ) return false; _cur = val; break; case pxtnSEEK_cur: if( _cur + val >= _size ) return false; if( _cur + val < 0 ) return false; _cur += val; break; case pxtnSEEK_end: if( _size + val >= _size ) return false; if( _size + val < 0 ) return false; _cur = _size + val; break; } } return true; } bool pxtnDescriptor::w_asfile( const void *p, int size, int num ) { bool b_ret = false; if( !_p_desc || !_b_file || _b_read ) goto End; if( fwrite( p, size, num, (FILE*)_p_desc ) != num ) goto End; _size += size * num; b_ret = true; End: return b_ret; } bool pxtnDescriptor::r( void *p, int size, int num ) { if( !_p_desc ) return false; if( !_b_read ) return false; bool b_ret = false; if( _b_file ) { if( fread( p, size, num, (FILE*)_p_desc ) != num ) goto End; } else { for( int i = 0; i < num; i++ ) { if( _cur + size > _size ) goto End; memcpy( &((char*)p)[ i ], (uint8_t*)_p_desc + _cur, size ); _cur += size; } } b_ret = true; End: return b_ret; } int pxtnDescriptor_v_chk( int val ) { uint32_t us; us = (uint32_t)val; if( us < 0x80 ) return 1; // 1byte( 7bit) if( us < 0x4000 ) return 2; // 2byte(14bit) if( us < 0x200000 ) return 3; // 3byte(21bit) if( us < 0x10000000 ) return 4; // 4byte(28bit) // if( value < 0x800000000 ) return 5; // 5byte(35bit) if( us <= 0xffffffff ) return 5; return 6; } // ..uint32_t int pxtnDescriptor::v_w_asfile( int val, int *p_add ) { if( !_p_desc ) return 0; if( !_b_file ) return 0; if( _b_read ) return 0; uint8_t a[ 5 ] = {0}; uint8_t b[ 5 ] = {0}; uint32_t us = (uint32_t )val; int32_t bytes = 0; a[ 0 ] = *( (uint8_t *)(&us) + 0 ); a[ 1 ] = *( (uint8_t *)(&us) + 1 ); a[ 2 ] = *( (uint8_t *)(&us) + 2 ); a[ 3 ] = *( (uint8_t *)(&us) + 3 ); a[ 4 ] = 0; // 1byte(7bit) if ( us < 0x00000080 ) { bytes = 1; b[0] = a[0]; } // 2byte(14bit) else if( us < 0x00004000 ) { bytes = 2; b[0] = ((a[0]<<0)&0x7F) | 0x80; b[1] = (a[0]>>7) | ((a[1]<<1)&0x7F); } // 3byte(21bit) else if( us < 0x00200000 ) { bytes = 3; b[0] = ((a[0]<<0)&0x7F) | 0x80; b[1] = (a[0]>>7) | ((a[1]<<1)&0x7F) | 0x80; b[2] = (a[1]>>6) | ((a[2]<<2)&0x7F); } // 4byte(28bit) else if( us < 0x10000000 ) { bytes = 4; b[0] = ((a[0]<<0)&0x7F) | 0x80; b[1] = (a[0]>>7) | ((a[1]<<1)&0x7F) | 0x80; b[2] = (a[1]>>6) | ((a[2]<<2)&0x7F) | 0x80; b[3] = (a[2]>>5) | ((a[3]<<3)&0x7F); } // 5byte(32bit) else { bytes = 5; b[0] = ((a[0]<<0)&0x7F) | 0x80; b[1] = (a[0]>>7) | ((a[1]<<1)&0x7F) | 0x80; b[2] = (a[1]>>6) | ((a[2]<<2)&0x7F) | 0x80; b[3] = (a[2]>>5) | ((a[3]<<3)&0x7F) | 0x80; b[4] = (a[3]>>4) | ((a[4]<<4)&0x7F); } if( fwrite( b, 1, bytes, (FILE*)_p_desc ) != bytes ) return false; if( p_add ) *p_add += bytes; _size += bytes; return true; return false; } // 可変長読み込み(int32_t までを保証) bool pxtnDescriptor::v_r ( int32_t *p ) { if( !_p_desc ) return false; if( !_b_read ) return false; int i; uint8_t a[ 5 ] = {0}; uint8_t b[ 5 ] = {0}; for( i = 0; i < 5; i++ ) { if( !pxtnDescriptor::r( &a[i], 1, 1 ) ) return false; if( !(a[i] & 0x80) ) break; } switch( i ) { case 0: b[0] = (a[0]&0x7F)>>0; break; case 1: b[0] = ((a[0]&0x7F)>>0) | (a[1]<<7); b[1] = (a[1]&0x7F)>>1; break; case 2: b[0] = ((a[0]&0x7F)>>0) | (a[1]<<7); b[1] = ((a[1]&0x7F)>>1) | (a[2]<<6); b[2] = (a[2]&0x7F)>>2; break; case 3: b[0] = ((a[0]&0x7F)>>0) | (a[1]<<7); b[1] = ((a[1]&0x7F)>>1) | (a[2]<<6); b[2] = ((a[2]&0x7F)>>2) | (a[3]<<5); b[3] = (a[3]&0x7F)>>3; break; case 4: b[0] = ((a[0]&0x7F)>>0) | (a[1]<<7); b[1] = ((a[1]&0x7F)>>1) | (a[2]<<6); b[2] = ((a[2]&0x7F)>>2) | (a[3]<<5); b[3] = ((a[3]&0x7F)>>3) | (a[4]<<4); b[4] = (a[4]&0x7F)>>4; break; case 5: return false; } *p = *((int32_t*)b); return true; }
[ "shiba200712@gmail.com" ]
shiba200712@gmail.com
876b565dba84a23d5480ccfc3b0411c33e3516bd
c19e5a265e314343c77493106e6a19fdedca4d5a
/C++/1890.cpp
d44cd30b11762cefee48c8bd062b750653290844
[]
no_license
tsfo1489/BOJ
54e410cbb4c7ef73b2ca5800818a7125ed94735f
fefce86ea76b1c7d8c6f7201779e015548a72db3
refs/heads/master
2020-03-22T03:06:33.636359
2018-07-06T02:02:10
2018-07-06T02:02:10
139,410,028
0
0
null
null
null
null
UTF-8
C++
false
false
475
cpp
#include<stdio.h> long long int dy[105][105], map[105][105], n; int main() { int i, j; scanf("%lld", &n); for (i = 1; i <= n; i++)for (j = 1; j <= n; j++) scanf("%lld", &map[i][j]); dy[1][1] = 1; for (i = 1; i <= n; i++) { for (j = 1; j <= n; j++) { if (map[i][j] == 0) break; if (i + map[i][j] <= n) { dy[i + map[i][j]][j] += dy[i][j]; } if (j + map[i][j] <= n) { dy[i][j + map[i][j]] += dy[i][j]; } } } printf("%lld", dy[n][n]); }
[ "tsfo1489@gmail.com" ]
tsfo1489@gmail.com
b9d9cedba35211c5ce49aaa7a2c1560e4546cf77
04d61edd60e2ae8fcf296abb6e92669752308704
/src/caffe/data_transformer.cpp
5b1224be96555aec4807afed5563bbe9a51d71e6
[ "BSD-2-Clause" ]
permissive
liu09114/caffe-windows
4c9fbac39e272c0a5eaef07cb2ba322a66753758
cdfcc8d49e5be627a082dc29bc558e641ee34fd5
refs/heads/master
2016-10-22T06:38:05.633539
2016-02-29T09:29:25
2016-02-29T09:29:25
50,644,563
0
0
null
2016-01-29T06:58:57
2016-01-29T06:58:57
null
UTF-8
C++
false
false
16,781
cpp
#include <string> #include <opencv2/core/core_c.h> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/highgui/highgui_c.h> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/imgproc/imgproc_c.h> #include "caffe/data_transformer.hpp" #include "caffe/util/math_functions.hpp" #include "caffe/util/rng.hpp" #include "caffe/util/opencv_util.hpp" using namespace cv; namespace caffe { template<typename Dtype> void DataTransformer<Dtype>::TransformSingle(const int batch_item_id, IplImage *img, const Dtype* mean, Dtype* transformed_data) { const int crop_size = param_.crop_size(); const bool mirror = param_.mirror(); const Dtype scale = param_.scale(); int channels = img->nChannels; int width = img->width; int height = img->height; unsigned char* data = (unsigned char *)img->imageData; int step = img->widthStep / sizeof(char); // crop 4 courners + center int w[5], h[5]; FillInOffsets(w, h, width, height, crop_size); int h_off, w_off; // We only do random crop when we do training. if (phase_ == Caffe::TRAIN) { int r = Rand() % 5; h_off = h[r]; w_off = w[r]; } else { h_off = h[4]; w_off = w[4]; } ////// -------------------!! for debug !! ------------------- // IplImage *dest = cvCreateImage(cvSize(crop_size * 2, crop_size * 2), // img->depth, img->nChannels); // cvResize(img, dest); // cvNamedWindow("Sample1"); // cvNamedWindow("Sample2"); // if (phase_ == Caffe::TRAIN) // cvShowImage("Sample", dest); // else // cvShowImage("Sample", img); // cvWaitKey(0); // cvReleaseImage(&img); // cvReleaseImage(&dest); // if (phase_ == Caffe::TRAIN) { // cvSetImageROI(img, cvRect(w_off, h_off, crop_size, crop_size)); // // cvCopy(img, dest, NULL); // cvResize(img, dest); // cvResetImageROI(img); // cvShowImage("Sample1", img); // cvShowImage("Sample2", dest); // cvWaitKey(0); // } // cvReleaseImage(&dest); ////// ------------------------------------------------------- if (mirror && Rand() % 2) { // Copy mirrored version for (int c = 0; c < channels; c++) { for (int h = 0; h < crop_size; h++) { for (int w = 0; w < crop_size; w++) { int top_index = ((batch_item_id * channels + c) * crop_size + h) * crop_size + (crop_size - 1 - w); int data_index = (h + h_off) * step + (w + w_off) * channels + c; int mean_index = (c * crop_size + h) * crop_size + w; Dtype datum_element = static_cast<Dtype>(data[data_index]); transformed_data[top_index] = (datum_element - mean[mean_index]) * scale; } } } } else { // Normal copy for (int c = 0; c < channels; c++) { for (int h = 0; h < crop_size; h++) { for (int w = 0; w < crop_size; w++) { int top_index = ((batch_item_id * channels + c) * crop_size + h) * crop_size + w; int data_index = (h + h_off) * step + (w + w_off) * channels + c; int mean_index = (c * crop_size + h) * crop_size + w; Dtype datum_element = static_cast<Dtype>(data[data_index]); transformed_data[top_index] = (datum_element - mean[mean_index]) * scale; } } } } } template<typename Dtype> void DataTransformer<Dtype>::TransformMultiple(const int batch_item_id, IplImage *img, const Dtype* mean, Dtype* transformed_data) { const int crop_size = param_.crop_size(); const bool mirror = param_.mirror(); const Dtype scale = param_.scale(); const bool debug_display = param_.debug_display(); const bool contrast_adjustment = param_.contrast_adjustment(); const bool smooth_filtering = param_.smooth_filtering(); const bool jpeg_compression = param_.jpeg_compression(); // param for scaling const float min_scaling_factor = param_.min_scaling_factor(); const float max_scaling_factor = param_.max_scaling_factor(); // param for rotation const float angle_interval = param_.angle_interval(); // param for shearing const float max_shearing_ratio = param_.max_shearing_ratio(); // param for perspective warpping const float max_perspective_ratio = param_.max_perspective_ratio(); // border fill value const CvScalar warp_fillval = cvScalarAll(param_.warp_fillval()); // figure out dimension int channels = img->nChannels; int width = img->width; int height = img->height; if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Source", img); // Flipping and Reflection ----------------------------------------------------------------- int flipping_mode = (Rand() % 4) - 1; // -1, 0, 1, 2 bool apply_flipping = flipping_mode != 2; if (apply_flipping) { cvFlip(img, NULL, flipping_mode); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Flipping and Reflection", img); } // Smooth Filtering ------------------------------------------------------------- int smooth_type = 0, smooth_param1 = 3; int apply_smooth = Rand() % 2; if ( smooth_filtering && apply_smooth ) { smooth_type = Rand() % 4; // see opencv_util.hpp smooth_param1 = 3 + 2*(Rand() % 1); cvSmooth(img, img, smooth_type, smooth_param1); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Smooth Filtering", img); } // Contrast and Brightness Adjuestment ---------------------------------------- float alpha = 1, beta = 0; int apply_contrast = Rand() % 2; if ( contrast_adjustment && apply_contrast ) { float min_alpha = 0.8, max_alpha = 1.2; alpha = Uniform(min_alpha, max_alpha); beta = (float)(Rand() % 6); // flip sign if ( Rand() % 2 ) beta = - beta; cvConvertScale(img, img, alpha, beta); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Contrast Adjustment", img); } // JPEG Compression ------------------------------------------------------------- // DO NOT use the following code as there is some memory leak which I cann't figure out int QF = 100; int apply_JPEG = Rand() % 2; if ( jpeg_compression && apply_JPEG ) { // JPEG quality factor QF = 95 + 1 * (Rand() % 6); int compression_params[2] = {CV_IMWRITE_JPEG_QUALITY, QF}; CvMat *img_jpeg = cvEncodeImage(".jpg", img, compression_params); img = cvDecodeImage(img_jpeg); cvReleaseMat(&img_jpeg); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("JPEG Compression", img); } // Histogram Equalization ------------------------------------------------ //if ( Rand() % 2 ) // cvEqualizeHist(img, img); // Cropping and Padding ----------------------------------------------------------------- /* Since in the end, we will resize the image to a fixed size (i.e. crop_size), so scaling * the image will not make any difference. Therefore, we use cropping and padding to * simulate scaling effect. * For scaling factor > 1, we random crop the original image to simulate scaling up * For scaling factor < 1, we random pad the original image to simulate scaling down */ // scaling factor for height and width respectively float sf_w = Uniform(min_scaling_factor, max_scaling_factor); float sf_h = Uniform(min_scaling_factor, max_scaling_factor); // ROI height and width int roi_width = (int)(width * (1. / sf_w)); int roi_height = (int)(height * (1. / sf_h)); // random number for w_off and h_oof in cropPadImage function unsigned int rng_w = Rand(), rng_h = Rand(); IplImage *img_crop_pad = cropPadImage(img, roi_width, roi_height, rng_w, rng_h, warp_fillval); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Cropping and Padding", img_crop_pad); // param config for shearing float shearing_ratio_x = Uniform(-max_shearing_ratio, max_shearing_ratio); float shearing_ratio_y = Uniform(-max_shearing_ratio, max_shearing_ratio); // param config for rotation float angle_raw = Uniform(0, 360); float angle_quant = angle_interval * ceil(angle_raw / angle_interval + 0.5); // param for perspective warpping // for x of four points float perspective_ratio_x[4]; perspective_ratio_x[0] = 0 + Uniform(-max_perspective_ratio, max_perspective_ratio); // top-left perspective_ratio_x[1] = 1 + Uniform(-max_perspective_ratio, max_perspective_ratio); // top-right perspective_ratio_x[2] = 0 + Uniform(-max_perspective_ratio, max_perspective_ratio); // bottom-left perspective_ratio_x[3] = 1 + Uniform(-max_perspective_ratio, max_perspective_ratio); // bottom-right // for y of four points float perspective_ratio_y[4]; perspective_ratio_y[0] = 0 + Uniform(-max_perspective_ratio, max_perspective_ratio); // top-left perspective_ratio_y[1] = 0 + Uniform(-max_perspective_ratio, max_perspective_ratio); // top-right perspective_ratio_y[2] = 1 + Uniform(-max_perspective_ratio, max_perspective_ratio); // bottom-left perspective_ratio_y[3] = 1 + Uniform(-max_perspective_ratio, max_perspective_ratio); // bottom-right // random interpolation kernel int interpolation = Rand() % 5; // see opencv_util.hpp // perform perspective warpping in one go IplImage *dest = warpPerspectiveOneGo(img_crop_pad, crop_size, crop_size, shearing_ratio_x, shearing_ratio_y, angle_quant, perspective_ratio_x, perspective_ratio_y, interpolation, warp_fillval); if (debug_display && phase_ == Caffe::TRAIN) cvShowImage("Warp Perspective in one go", dest); //--------------------!! for debug only !!------------------- if (debug_display && phase_ == Caffe::TRAIN) { LOG(INFO) << "----------------------------------------"; LOG(INFO) << "src width: " << width << ", src height: " << height; LOG(INFO) << "dest width: " << crop_size << ", dest height: " << crop_size; if (apply_flipping) { LOG(INFO) << "* parameter for flipping: "; LOG(INFO) << " flipping_mode: " << flipping_mode; } if ( smooth_filtering && apply_smooth ) { LOG(INFO) << "* parameter for smooth filtering: "; LOG(INFO) << " smooth type: " << smooth_type << ", smooth param1: " << smooth_param1; } if ( contrast_adjustment && apply_contrast ) { LOG(INFO) << "* parameter for contrast adjustment: "; LOG(INFO) << " alpha: " << alpha << ", beta: " << beta; } if ( jpeg_compression && apply_JPEG ) { LOG(INFO) << "* parameter for JPEG compression: "; LOG(INFO) << " QF: " << QF; } LOG(INFO) << "* parameter for cropping and padding: "; LOG(INFO) << " sf_w: " << sf_w << ", sf_h: " << sf_h; LOG(INFO) << " roi_width: " << roi_width << ", roi_height: " << roi_height; LOG(INFO) << "* parameter for shearing: "; LOG(INFO) << " max_shearing_ratio: " << max_shearing_ratio; LOG(INFO) << " shearing_ratio_x: " << shearing_ratio_x << ", shearing_ratio_y: " << shearing_ratio_y; LOG(INFO) << "* parameter for rotation: "; LOG(INFO) << " angle_interval: " << angle_interval; LOG(INFO) << " angle: " << angle_quant; LOG(INFO) << "* parameter for perspective transform:"; LOG(INFO) << " max_perspective_ratio: " << max_perspective_ratio; LOG(INFO) << " top-left: [" << perspective_ratio_x[0] << "," << perspective_ratio_y[0] << "]"; LOG(INFO) << " top-right: [" << perspective_ratio_x[1] << "," << perspective_ratio_y[1] << "]"; LOG(INFO) << " bottom-left: [" << perspective_ratio_x[2] << "," << perspective_ratio_y[2] << "]"; LOG(INFO) << " bottom-right: [" << perspective_ratio_x[3] << "," << perspective_ratio_y[3] << "]"; LOG(INFO) << "* parameter for in-one-go warpping : "; LOG(INFO) << " interpolation: " << interpolation; cvWaitKey(0); } unsigned char* data = (unsigned char *)dest->imageData; int step = dest->widthStep / sizeof(char); // leave flipping to opencv // Normal copy for (int c = 0; c < channels; c++) { for (int h = 0; h < crop_size; h++) { for (int w = 0; w < crop_size; w++) { int top_index = ((batch_item_id * channels + c) * crop_size + h) * crop_size + w; int data_index = h * step + w * channels + c; int mean_index = (c * crop_size + h) * crop_size + w; Dtype datum_element = static_cast<Dtype>(data[data_index]); transformed_data[top_index] = (datum_element - mean[mean_index]) * scale; } } } cvReleaseImage(&img_crop_pad); cvReleaseImage(&dest); } template<typename Dtype> void DataTransformer<Dtype>::Transform(const int batch_item_id, IplImage *img, const Dtype* mean, Dtype* transformed_data) { if (!param_.multiscale()) TransformSingle(batch_item_id, img, mean, transformed_data); else TransformMultiple(batch_item_id, img, mean, transformed_data); } template<typename Dtype> void DataTransformer<Dtype>::Transform(const int batch_item_id, const Datum& datum, const Dtype* mean, Dtype* transformed_data) { const string& data = datum.data(); const int channels = datum.channels(); const int height = datum.height(); const int width = datum.width(); const int size = datum.channels() * datum.height() * datum.width(); const int crop_size = param_.crop_size(); const bool mirror = param_.mirror(); const Dtype scale = param_.scale(); if (mirror && crop_size == 0) { LOG(FATAL) << "Current implementation requires mirror and crop_size to be " << "set at the same time."; } if (crop_size) { CHECK(data.size()) << "Image cropping only support uint8 data"; int h_off, w_off; // We only do random crop when we do training. if (phase_ == Caffe::TRAIN) { h_off = Rand() % (height - crop_size); w_off = Rand() % (width - crop_size); } else { h_off = (height - crop_size) / 2; w_off = (width - crop_size) / 2; } if (mirror && Rand() % 2) { // Copy mirrored version for (int c = 0; c < channels; ++c) { for (int h = 0; h < crop_size; ++h) { for (int w = 0; w < crop_size; ++w) { int data_index = (c * height + h + h_off) * width + w + w_off; int top_index = ((batch_item_id * channels + c) * crop_size + h) * crop_size + (crop_size - 1 - w); Dtype datum_element = static_cast<Dtype>(static_cast<uint8_t>(data[data_index])); transformed_data[top_index] = (datum_element - mean[data_index]) * scale; } } } } else { // Normal copy for (int c = 0; c < channels; ++c) { for (int h = 0; h < crop_size; ++h) { for (int w = 0; w < crop_size; ++w) { int top_index = ((batch_item_id * channels + c) * crop_size + h) * crop_size + w; int data_index = (c * height + h + h_off) * width + w + w_off; Dtype datum_element = static_cast<Dtype>(static_cast<uint8_t>(data[data_index])); transformed_data[top_index] = (datum_element - mean[data_index]) * scale; } } } } } else { // we will prefer to use data() first, and then try float_data() if (data.size()) { for (int j = 0; j < size; ++j) { Dtype datum_element = static_cast<Dtype>(static_cast<uint8_t>(data[j])); transformed_data[j + batch_item_id * size] = (datum_element - mean[j]) * scale; } } else { for (int j = 0; j < size; ++j) { transformed_data[j + batch_item_id * size] = (datum.float_data(j) - mean[j]) * scale; } } } } template <typename Dtype> void DataTransformer<Dtype>::InitRand() { // Rand() is always on for multiscale const bool needs_rand = ((phase_ == Caffe::TRAIN) && (param_.mirror() || param_.crop_size())) || param_.multiscale(); if (needs_rand) { const unsigned int rng_seed = caffe_rng_rand(); rng_.reset(new Caffe::RNG(rng_seed)); } else { rng_.reset(); } } template <typename Dtype> unsigned int DataTransformer<Dtype>::Rand() { CHECK(rng_); caffe::rng_t* rng = static_cast<caffe::rng_t*>(rng_->generator()); return (*rng)(); } template <typename Dtype> float DataTransformer<Dtype>::Uniform(const float min, const float max) { CHECK(rng_); Dtype d[1]; caffe_rng_uniform<Dtype>(1, Dtype(min), Dtype(max), d); return (float)d[0]; } INSTANTIATE_CLASS(DataTransformer); } // namespace caffe
[ "c.chenglong@gmail.com" ]
c.chenglong@gmail.com
1b2f9d74d5e5170472c6e18db1199b41128e3d2e
6e8dd1d0953d606ed5a594eead2653315f616dd3
/2015/q16/q16.cpp
0dbeb6530453c3ee74da6f16a4211dedaa40b580
[]
no_license
aexhg/aoc
c701c94ef37fb65f9aaa05c5497651d1033057fe
eb03f6de30b7ae78d58ccd91eafda03d8984dedd
refs/heads/master
2020-05-20T16:40:36.447548
2019-06-16T19:01:32
2019-06-16T19:01:32
185,670,636
0
0
null
null
null
null
UTF-8
C++
false
false
1,522
cpp
#include <iostream> #include <fstream> #include <regex> #include <unordered_map> #include <vector> int main(int argv, char* argc[]){ const static std::regex r( "(children|cats|samoyeds|pomeranians|akitas|vizslas|goldfish|trees|cars|" "perfumes): (\\d+)"); const std::unordered_map<std::string,int> mfcsam{ {"children", 3}, {"cats", 7}, {"samoyeds", 2}, {"pomeranians", 3}, {"akitas", 0}, {"vizslas", 0}, {"goldfish", 5}, {"trees", 3}, {"cars", 2}, {"perfumes", 1}, }; std::vector<int> matches; for( auto [line, is, i] = std::make_tuple(std::string{}, std::ifstream(argc[1]), int()); std::getline(is, line); ++i){ std::unordered_map<std::string, int> m; for(std::smatch match; std::regex_search(line, match, r);){ //std::cout << line << std::endl; std::string tp = match.str(1); int quantity = std::stoi(match.str(2)); //std::cout << tp << " " << quantity << std::endl; line = match.suffix(); m[tp] = quantity; } bool match = true; for(auto& kv: m){ if(kv.first == "cats" || kv.first == "trees"){ if(kv.second <= mfcsam.at(kv.first)){ match = false; } } else if(kv.first == "pomeranians" || kv.first == "goldfish"){ if(kv.second >= mfcsam.at(kv.first)){ match = false; } } else{ if(kv.second != mfcsam.at(kv.first)){ match = false; } } } if(match){ matches.push_back(i); } } std::cout << "Matches: " << std::endl; for(int i : matches){ std::cout << i+1 << std::endl; } return 0; }
[ "" ]
7bc18d98e1dd960e774a42dbc5a8f7d5b1f72971
8dc84558f0058d90dfc4955e905dab1b22d12c08
/chrome/browser/media/router/media_router_metrics_unittest.cc
6002a8645353728597fdfc1e6641bfa049be9dce
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
C++
false
false
9,095
cc
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/media/router/media_router_metrics.h" #include "base/macros.h" #include "base/metrics/histogram_macros.h" #include "base/test/histogram_tester.h" #include "base/test/simple_test_clock.h" #include "base/time/time.h" #include "chrome/browser/ui/media_router/media_cast_mode.h" #include "chrome/common/media_router/media_sink.h" #include "testing/gmock/include/gmock/gmock.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" using base::Bucket; using testing::ElementsAre; namespace media_router { using DialParsingError = SafeDialDeviceDescriptionParser::ParsingError; TEST(MediaRouterMetricsTest, RecordMediaRouterDialogOrigin) { base::HistogramTester tester; const MediaRouterDialogOpenOrigin origin1 = MediaRouterDialogOpenOrigin::TOOLBAR; const MediaRouterDialogOpenOrigin origin2 = MediaRouterDialogOpenOrigin::CONTEXTUAL_MENU; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramIconClickLocation, 0); MediaRouterMetrics::RecordMediaRouterDialogOrigin(origin1); MediaRouterMetrics::RecordMediaRouterDialogOrigin(origin2); MediaRouterMetrics::RecordMediaRouterDialogOrigin(origin1); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramIconClickLocation, 3); EXPECT_THAT( tester.GetAllSamples(MediaRouterMetrics::kHistogramIconClickLocation), ElementsAre(Bucket(static_cast<int>(origin1), 2), Bucket(static_cast<int>(origin2), 1))); } TEST(MediaRouterMetricsTest, RecordMediaRouterDialogPaint) { base::HistogramTester tester; const base::TimeDelta delta = base::TimeDelta::FromMilliseconds(10); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramUiDialogPaint, 0); MediaRouterMetrics::RecordMediaRouterDialogPaint(delta); tester.ExpectUniqueSample(MediaRouterMetrics::kHistogramUiDialogPaint, delta.InMilliseconds(), 1); } TEST(MediaRouterMetricsTest, RecordMediaRouterDialogLoaded) { base::HistogramTester tester; const base::TimeDelta delta = base::TimeDelta::FromMilliseconds(10); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramUiDialogLoadedWithData, 0); MediaRouterMetrics::RecordMediaRouterDialogLoaded(delta); tester.ExpectUniqueSample( MediaRouterMetrics::kHistogramUiDialogLoadedWithData, delta.InMilliseconds(), 1); } TEST(MediaRouterMetricsTest, RecordMediaRouterInitialUserAction) { base::HistogramTester tester; const MediaRouterUserAction action1 = MediaRouterUserAction::START_LOCAL; const MediaRouterUserAction action2 = MediaRouterUserAction::CLOSE; const MediaRouterUserAction action3 = MediaRouterUserAction::STATUS_REMOTE; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramUiFirstAction, 0); MediaRouterMetrics::RecordMediaRouterInitialUserAction(action3); MediaRouterMetrics::RecordMediaRouterInitialUserAction(action2); MediaRouterMetrics::RecordMediaRouterInitialUserAction(action3); MediaRouterMetrics::RecordMediaRouterInitialUserAction(action1); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramUiFirstAction, 4); EXPECT_THAT(tester.GetAllSamples(MediaRouterMetrics::kHistogramUiFirstAction), ElementsAre(Bucket(static_cast<int>(action1), 1), Bucket(static_cast<int>(action2), 1), Bucket(static_cast<int>(action3), 2))); } TEST(MediaRouterMetricsTest, RecordRouteCreationOutcome) { base::HistogramTester tester; const MediaRouterRouteCreationOutcome outcome1 = MediaRouterRouteCreationOutcome::SUCCESS; const MediaRouterRouteCreationOutcome outcome2 = MediaRouterRouteCreationOutcome::FAILURE_NO_ROUTE; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramRouteCreationOutcome, 0); MediaRouterMetrics::RecordRouteCreationOutcome(outcome2); MediaRouterMetrics::RecordRouteCreationOutcome(outcome1); MediaRouterMetrics::RecordRouteCreationOutcome(outcome2); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramRouteCreationOutcome, 3); EXPECT_THAT( tester.GetAllSamples(MediaRouterMetrics::kHistogramRouteCreationOutcome), ElementsAre(Bucket(static_cast<int>(outcome1), 1), Bucket(static_cast<int>(outcome2), 2))); } TEST(MediaRouterMetricsTest, RecordMediaRouterCastingSource) { base::HistogramTester tester; const MediaCastMode source1 = MediaCastMode::PRESENTATION; const MediaCastMode source2 = MediaCastMode::TAB_MIRROR; const MediaCastMode source3 = MediaCastMode::LOCAL_FILE; tester.ExpectTotalCount( MediaRouterMetrics::kHistogramMediaRouterCastingSource, 0); MediaRouterMetrics::RecordMediaRouterCastingSource(source1); MediaRouterMetrics::RecordMediaRouterCastingSource(source2); MediaRouterMetrics::RecordMediaRouterCastingSource(source2); MediaRouterMetrics::RecordMediaRouterCastingSource(source3); tester.ExpectTotalCount( MediaRouterMetrics::kHistogramMediaRouterCastingSource, 4); EXPECT_THAT(tester.GetAllSamples( MediaRouterMetrics::kHistogramMediaRouterCastingSource), ElementsAre(Bucket(static_cast<int>(source1), 1), Bucket(static_cast<int>(source2), 2), Bucket(static_cast<int>(source3), 1))); } TEST(MediaRouterMetricsTest, RecordDialDeviceDescriptionParsingError) { base::HistogramTester tester; const DialParsingError action1 = DialParsingError::kMissingUniqueId; const DialParsingError action2 = DialParsingError::kMissingFriendlyName; const DialParsingError action3 = DialParsingError::kMissingAppUrl; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramDialParsingError, 0); MediaRouterMetrics::RecordDialParsingError(action3); MediaRouterMetrics::RecordDialParsingError(action2); MediaRouterMetrics::RecordDialParsingError(action3); MediaRouterMetrics::RecordDialParsingError(action1); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramDialParsingError, 4); EXPECT_THAT( tester.GetAllSamples(MediaRouterMetrics::kHistogramDialParsingError), ElementsAre(Bucket(static_cast<int>(action1), 1), Bucket(static_cast<int>(action2), 1), Bucket(static_cast<int>(action3), 2))); } TEST(MediaRouterMetricsTest, RecordPresentationUrlType) { base::HistogramTester tester; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramPresentationUrlType, 0); MediaRouterMetrics::RecordPresentationUrlType(GURL("cast:DEADBEEF")); MediaRouterMetrics::RecordPresentationUrlType(GURL("dial:AppName")); MediaRouterMetrics::RecordPresentationUrlType(GURL("cast-dial:AppName")); MediaRouterMetrics::RecordPresentationUrlType(GURL("https://example.com")); MediaRouterMetrics::RecordPresentationUrlType(GURL("http://example.com")); MediaRouterMetrics::RecordPresentationUrlType( GURL("https://google.com/cast#__castAppId__=DEADBEEF")); MediaRouterMetrics::RecordPresentationUrlType(GURL("remote-playback:foo")); MediaRouterMetrics::RecordPresentationUrlType(GURL("test:test")); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramPresentationUrlType, 8); EXPECT_THAT( tester.GetAllSamples(MediaRouterMetrics::kHistogramPresentationUrlType), ElementsAre( Bucket(static_cast<int>(PresentationUrlType::kOther), 1), Bucket(static_cast<int>(PresentationUrlType::kCast), 1), Bucket(static_cast<int>(PresentationUrlType::kCastDial), 1), Bucket(static_cast<int>(PresentationUrlType::kCastLegacy), 1), Bucket(static_cast<int>(PresentationUrlType::kDial), 1), Bucket(static_cast<int>(PresentationUrlType::kHttp), 1), Bucket(static_cast<int>(PresentationUrlType::kHttps), 1), Bucket(static_cast<int>(PresentationUrlType::kRemotePlayback), 1))); } TEST(MediaRouterMetricsTest, RecordMediaSinkType) { base::HistogramTester tester; tester.ExpectTotalCount(MediaRouterMetrics::kHistogramMediaSinkType, 0); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::WIRED_DISPLAY); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::CAST); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::CAST_AUDIO); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::HANGOUT); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::CAST); MediaRouterMetrics::RecordMediaSinkType(SinkIconType::GENERIC); tester.ExpectTotalCount(MediaRouterMetrics::kHistogramMediaSinkType, 6); EXPECT_THAT( tester.GetAllSamples(MediaRouterMetrics::kHistogramMediaSinkType), ElementsAre(Bucket(static_cast<int>(SinkIconType::CAST), 2), Bucket(static_cast<int>(SinkIconType::CAST_AUDIO), 1), Bucket(static_cast<int>(SinkIconType::HANGOUT), 1), Bucket(static_cast<int>(SinkIconType::WIRED_DISPLAY), 1), Bucket(static_cast<int>(SinkIconType::GENERIC), 1))); } } // namespace media_router
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
1502e8330456d1284b989f084daa849bd911c758
d9f0884408b993db4326560dda83a6482caf861e
/1535_Hello/main.cpp
bc8403c3ab81c0dc53fc573c383f102d97223778
[]
no_license
skysaver00/C-Algorithm-2021
9feb0b9f73ac47f960d48e5e60db5e6a35e320e7
10e6f61b7c213a92ef5eecb43b1046ce3b2a277f
refs/heads/master
2023-09-03T00:17:08.755999
2021-11-11T08:18:41
2021-11-11T08:18:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,101
cpp
#include <iostream> using namespace std; int hello[21][100]; int health[21]; int happy[21]; int max(int i , int j) { return i > j ? i : j; } int main() { int n; cin >> n; for(int i = 1; i <= n; i++) { cin >> health[i]; } for(int i = 1; i <= n; i++) { cin >> happy[i]; } if(health[1] < 100) hello[1][health[1]] = happy[1]; for(int i = 2; i <= n; i++) { if(health[i] < 100) hello[i][health[i]] = happy[i]; for(int j = 0; j < 100; j++) { if(hello[i - 1][j] != 0) { hello[i][j] = hello[i - 1][j]; if(j + health[i] < 100) { hello[i][j + health[i]] = max(hello[i - 1][j] + happy[i], ); } } } } int biggest = 0; for(int i = 0; i <= 20; i++) { for(int j = 0; j <= 100; j++) { if (hello[i][j] != 0) { printf("%d %d %d\n", i, j ,hello[i][j]); if (biggest < hello[i][j]) biggest = hello[i][j]; } } } printf("%d\n", biggest); return 0; }
[ "skysaver00@naver.com" ]
skysaver00@naver.com
81b9b02036d99d724e498e421f8681423e4715f8
94710c631f114be4c35409108d303df70d81c2d6
/spoj_mul.cpp
040106e4ec308b49fc9484b19c81300e5a905991
[]
no_license
kanirudh/spoj
4f25574bced703f0e2348e8dded8e02f742d27e8
f160f7bc8d25049168f29976358c573c30a5f9ad
refs/heads/master
2020-06-04T20:19:36.120948
2015-12-21T07:12:25
2015-12-21T07:12:25
10,152,684
0
0
null
null
null
null
UTF-8
C++
false
false
933
cpp
//SPOJ problem for solving large integer multiplication , // Algorithm Used : Karastuba Multiplication Algorithm // Category : Recursive // Author : Anirudh Agrawal // Date: 04/06/2013 #include <cstdio> #include <cstring> void karatsuba(char* num1, char* num2,char *num3,int l1, int h1 , int l2,int h2,){ } int main() { char input1[1001],input2[1001],output[2003]; int test,ol; scanf("%d",&test); while(test--){ scanf("%s %s",input1,input2); int length1 = strlen(input1); int length2 = strlen(input2); //Converting it into numbers for(int i=0;i<length1;i++) input1[i] -='0'; for(int i=0;i<length2;i++) input2[i] -='0'; if(length1==1 && input[0]=='0')output[0]=0;ol=1; if(length1==1 && input[0]=='0')output[0]=0;ol=1; karatsuba(input1,input2,output,0,length1,0,length2); for(int i=0;i<length1+length2+1;i++)output[i]+='0'; for(int i=0;i<ol;i++)putchar(output[i-1]); printf("\n"); } return 0; }
[ "annumarch@gmail.com" ]
annumarch@gmail.com
b7cab04ae17a96e46f3ccde71408f4a9e9fde720
243af6f697c16c54af3613988ddaef62a2b29212
/firmware/uvc_controller/mbed-os/features/nanostack/mbed-mesh-api/source/NanostackEMACInterface.cpp
467495367526796b5305e8c78e59aa173425e86e
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "MIT" ]
permissive
davewhiiite/uvc
0020fcc99d279a70878baf7cdc5c02c19b08499a
fd45223097eed5a824294db975b3c74aa5f5cc8f
refs/heads/main
2023-05-29T10:18:08.520756
2021-06-12T13:06:40
2021-06-12T13:06:40
376,287,264
1
0
null
null
null
null
UTF-8
C++
false
false
6,733
cpp
/* * Copyright (c) 2017 ARM Limited. All rights reserved. */ #include "NanostackEthernetInterface.h" #include "NanostackEthernetPhy.h" #include "nsdynmemLIB.h" #include "arm_hal_phy.h" #include "EMAC.h" #include "enet_tasklet.h" #include "mbed_interface.h" class EMACPhy : public NanostackEthernetPhy { public: EMACPhy(NanostackMemoryManager &mem, EMAC &m); int8_t phy_register() override; void get_mac_address(uint8_t *mac) override; void set_mac_address(uint8_t *mac) override; int8_t address_write(phy_address_type_e, uint8_t *); int8_t tx(uint8_t *data_ptr, uint16_t data_len, uint8_t tx_handle, data_protocol_e data_flow); void emac_phy_rx(emac_mem_buf_t *mem); private: NanostackMemoryManager &memory_manager; EMAC &emac; uint8_t mac_addr[6]; int8_t device_id = -1; phy_device_driver_s phy; }; // GAH! no handles on the callback. Force a single interface static EMACPhy *single_phy; extern "C" { static int8_t emac_phy_address_write(phy_address_type_e address_type, uint8_t *address_ptr) { return single_phy->address_write(address_type, address_ptr); } static int8_t emac_phy_interface_state_control(phy_interface_state_e, uint8_t) { return -1; } static int8_t emac_phy_tx(uint8_t *data_ptr, uint16_t data_len, uint8_t tx_handle, data_protocol_e data_flow) { return single_phy->tx(data_ptr, data_len, tx_handle, data_flow); } EMACPhy::EMACPhy(NanostackMemoryManager &mem, EMAC &m) : memory_manager(mem), emac(m) { /* Same default address logic as lwIP glue uses */ #if (MBED_MAC_ADDRESS_SUM != MBED_MAC_ADDR_INTERFACE) mac_addr[0] = MBED_MAC_ADDR_0; mac_addr[1] = MBED_MAC_ADDR_1; mac_addr[2] = MBED_MAC_ADDR_2; mac_addr[3] = MBED_MAC_ADDR_3; mac_addr[4] = MBED_MAC_ADDR_4; mac_addr[5] = MBED_MAC_ADDR_5; #else mbed_mac_address((char *) mac_addr); #endif /* We have a default MAC address, so do don't force them to supply one */ /* They may or may not update hwaddr with their address */ emac.get_hwaddr(mac_addr); } void EMACPhy::emac_phy_rx(emac_mem_buf_t *mem) { const uint8_t *ptr = NULL; uint8_t *tmpbuf = NULL; uint32_t total_len; if (memory_manager.get_next(mem) == NULL) { // Easy contiguous case ptr = static_cast<const uint8_t *>(memory_manager.get_ptr(mem)); total_len = memory_manager.get_len(mem); } else { // Nanostack can't accept chunked data - make temporary contiguous copy total_len = memory_manager.get_total_len(mem); ptr = tmpbuf = static_cast<uint8_t *>(ns_dyn_mem_temporary_alloc(total_len)); if (tmpbuf) { memory_manager.copy_from_buf(tmpbuf, total_len, mem); } } if (ptr && phy.phy_rx_cb) { phy.phy_rx_cb(ptr, total_len, 0xff, 0, device_id); } ns_dyn_mem_free(tmpbuf); memory_manager.free(mem); } } // extern "C" int8_t EMACPhy::address_write(phy_address_type_e address_type, uint8_t *address_ptr) { if (address_type != PHY_MAC_48BIT) { return -1; } memcpy(mac_addr, address_ptr, 6); emac.set_hwaddr(address_ptr); return 0; } int8_t EMACPhy::tx(uint8_t *data_ptr, uint16_t data_len, uint8_t tx_handle, data_protocol_e data_flow) { emac_mem_buf_t *mem = memory_manager.alloc_pool(data_len, 0); if (!mem) { return -1; } memory_manager.copy_to_buf(mem, data_ptr, data_len); // They take ownership - their responsibility to free emac.link_out(mem); return 0; } int8_t EMACPhy::phy_register() { if (device_id < 0) { phy.PHY_MAC = mac_addr; phy.address_write = emac_phy_address_write; phy.driver_description = const_cast<char *>("ETH"); phy.link_type = PHY_LINK_ETHERNET_TYPE; phy.phy_MTU = 0; phy.phy_header_length = 0; phy.phy_tail_length = 0; phy.state_control = emac_phy_interface_state_control; phy.tx = emac_phy_tx; phy.phy_rx_cb = NULL; phy.phy_tx_done_cb = NULL; emac.set_memory_manager(memory_manager); emac.set_link_input_cb(mbed::callback(this, &EMACPhy::emac_phy_rx)); emac.set_link_state_cb(enet_tasklet_link_state_changed); if (!emac.power_up()) { return -1; } phy.phy_MTU = emac.get_mtu_size(); /* Set the address - this could be either board default, what they * told us with EMAC::get_mac_address, or something manually specified * with EMACPhy::set_mac_address */ emac.set_hwaddr(mac_addr); emac.set_all_multicast(true); device_id = arm_net_phy_register(&phy); // driver_readiness_status_callback = driver_status_cb; if (device_id < 0) { //tr_error("Ethernet Driver failed to register with Stack. RetCode=%i", eth_driver_enabled); //driver_readiness_status_callback(0, eth_interface_id); emac.power_down(); return -1; } } return device_id; } void EMACPhy::get_mac_address(uint8_t *mac) { memcpy(mac, mac_addr, sizeof mac_addr); } void EMACPhy::set_mac_address(uint8_t *mac) { memcpy(mac_addr, mac, sizeof mac_addr); } nsapi_error_t Nanostack::add_ethernet_interface(EMAC &emac, bool default_if, Nanostack::EthernetInterface **interface_out, const uint8_t *mac_addr) { if (single_phy) { return NSAPI_ERROR_DEVICE_ERROR; } single_phy = new (std::nothrow) EMACPhy(this->memory_manager, emac); if (!single_phy) { return NSAPI_ERROR_NO_MEMORY; } if (mac_addr) { single_phy->set_mac_address(const_cast<uint8_t *>(mac_addr)); } Nanostack::EthernetInterface *interface; interface = new (std::nothrow) Nanostack::EthernetInterface(*single_phy); if (!interface) { return NSAPI_ERROR_NO_MEMORY; } nsapi_error_t err = interface->initialize(); if (err) { delete interface; return err; } *interface_out = interface; return NSAPI_ERROR_OK; } nsapi_error_t Nanostack::add_ethernet_interface(EMAC &emac, bool default_if, OnboardNetworkStack::Interface **interface_out) { Nanostack::EthernetInterface *interface; nsapi_error_t err = add_ethernet_interface(emac, default_if, &interface); *interface_out = interface; return err; }
[ "13125501+davewhiiite@users.noreply.github.com" ]
13125501+davewhiiite@users.noreply.github.com
c0d4b6f4af4211385031c2d0e00b0a01e0c2a89c
35be930e6da806a7642fd2668230bb434bd8031c
/template/compiler.h
5445232cc95d10a3c11bb9d21886ae8a43a391b0
[]
no_license
hhelibebc/DataStruct-learn
2aafa8a21d26ea568d94203874a53a00cc701c05
af26238f3141c7960744779c4ddf4e624e78571c
refs/heads/master
2022-12-03T21:00:47.568532
2020-08-21T13:30:20
2020-08-21T13:30:20
276,140,065
0
0
null
null
null
null
UTF-8
C++
false
false
729
h
#pragma once #include "template.h" using namespace std; typedef enum { CHAR_NULL, CHAR_EOF, CHAR_DIGIT, CHAR_LETTER, CHAR_SYMBOL, CHAR_BLANK, }CHAR_TYPE; typedef enum { TOKEN_NULL, TOKEN_SINGLE_NOTE, TOKEN_MULTI_NOTE, TOKEN_CHAR, TOKEN_STRING, TOKEN_VARNAME, TOKEN_SYMBOL, TOKEN_DIGIT, TOKEN_HEX, TOKEN_FLOAT, }TOKEN_TYPE; typedef enum { }EXP_TYPE; typedef enum { }BLOCK_TYPE; typedef struct{ TOKEN_TYPE type; string token; } Record; class Base { }; class WordWrap { public: void Open(CPCHAR filename); void GetToken(); void Classify(); public: vector<Record> tokens; vector<int> idxs; int total; private: char* buf; int len; }; extern WordWrap ww; extern CPCHAR keywords[]; extern CPCHAR symbols;
[ "50080470+hhelibebc@users.noreply.github.com" ]
50080470+hhelibebc@users.noreply.github.com
33f4dce155009e60f9131bce8b206362bd08dfed
feed18dd891fdae460777b886db8acaee33a97ee
/oprating-system/OSTEP/examples/conditional-variable/main.cpp
2f587eadfa56f7ff3d5014422b478b7a373ad7c3
[]
no_license
JX-Wang/myNotes
daa8a82a696896f3e286b7594ad134e7dff11c8a
ea783741a526ac0774221dcb8bc89062cfcc4bdb
refs/heads/master
2020-04-20T16:01:14.899199
2018-02-08T09:12:12
2018-02-08T09:12:12
168,947,431
1
0
null
null
null
null
UTF-8
C++
false
false
949
cpp
#include <chrono> #include <condition_variable> #include <iostream> #include <mutex> #include <thread> #include <vector> using namespace std; mutex m; condition_variable cv; int data; void wait_thread(int num) { unique_lock<mutex> lock(m); cout << "ChildThread " << num << ",lock acquired." << endl; // while (data != 12345) // cv.wait(lock); cv.wait(lock, []() { return data == 12345; }); cout << "ChildThread " << num << ",data recved:" << data << endl; } void signal_thread(int time) { // this_thread::sleep_for(chrono::seconds(time)); unique_lock<mutex> lock(m); data = 12345; cout << "SignalThread, notifying" << endl; cv.notify_all(); } int main() { vector<thread> threads; thread signal; for (int i = 0; i != 5; ++i) { if (i == 3) signal = thread(signal_thread, 3); threads.push_back(thread(wait_thread, i)); } for (auto &x : threads) x.join(); signal.join(); return 0; }
[ "zn.moon2016@gmail.com" ]
zn.moon2016@gmail.com
a7c5a571e1c1e4a7248cbd12b1a298501780c673
e85cf20c41c3a0c264d82c335090d86690fa195d
/Camera.cpp
915862711a8a85abacda38973196a132a85cea3f
[]
no_license
thanhpd/Rubik
ffa0d761dce62d51de6692234c720e0779205a53
5336f198c58a928b17e1f01a680b2a73e9098249
refs/heads/master
2016-09-06T14:14:22.205467
2015-05-21T06:47:15
2015-05-21T06:47:15
34,130,195
1
0
null
null
null
null
UTF-8
C++
false
false
4,326
cpp
#include "GL/glu.h" #include <cmath> #include "Camera.h" Camera::Camera() { setDefaultCamera(); } Camera::~Camera() { } void Camera::setModelViewMatrix() { float m[16]; Vector3D eVec(eye.getX(), eye.getY(), eye.getZ()); m[0] = u.getX(); m[4] = u.getY(); m[8] = u.getZ(); m[12] = -eVec.dot(u); m[1] = v.getX(); m[5] = v.getY(); m[9] = v.getZ(); m[13] = -eVec.dot(v); m[2] = n.getX(); m[6] = n.getY(); m[10] = n.getZ(); m[14] = -eVec.dot(n); m[3] = 0; m[7] = 0; m[11] = 0; m[15] = 1.0; glMatrixMode(GL_MODELVIEW); glLoadMatrixf(m); } /* create a modelview matrix and send it to OpenGL */ void Camera:: set(Point3D eye, Point3D look, Vector3D up) { this->eye.set(eye); // store the given eye position n.set(eye.getX() - look.getX(), eye.getY() - look.getY(), eye.getZ() - look.getZ()); // make n u.set(up.cross(n)); // make u = up X n n.normalize(); u.normalize(); // make them unit v.set(n.cross(u)); // make v = n X u setModelViewMatrix(); // tell OpenGL } void Camera::set(float eyeX, float eyeY, float eyeZ, float lookX, float lookY, float lookZ, float upX, float upY, float upZ) { Point3D eye = Point3D(eyeX, eyeY, eyeZ); Point3D look = Point3D(lookX, lookY, lookZ); Vector3D up = Vector3D(upX, upY, upZ); set(eye, look, up); } void Camera::setShape(float vAngle, float asp, float nearD, float farD) { viewAngle = vAngle; aspect = asp; nearDist = nearD; farDist = farD; glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(viewAngle, aspect, nearDist, farDist); glMatrixMode(GL_MODELVIEW); } void Camera::setAspect(float asp) { aspect = asp; } void Camera::getShape(float &vAng, float &asp, float &nearD, float &farD) { vAng = viewAngle; asp = aspect; nearD = nearDist; farD = farDist; } void Camera::pitch(float angle) { float cs = cos(3.14159265/180 * angle); //convert degrees to radians float sn = sin(3.14159265/180 * angle); Vector3D t(v); v.set(cs*t.getX() - sn*n.getX(), cs*t.getY() - sn*n.getY(), cs*t.getZ() - sn*n.getZ()); n.set(sn*t.getX() + cs*n.getX(), sn*t.getY() + cs*n.getY(), sn*t.getZ() + cs*n.getZ()); setModelViewMatrix(); } void Camera::roll(float angle) { float cs = cos(3.14159265/180 * angle); //convert degrees to radians float sn = sin(3.14159265/180 * angle); Vector3D t(u); // remember old u u.set(cs*t.getX() - sn*v.getX(), cs*t.getY() - sn*v.getY(), cs*t.getZ() - sn*v.getZ()); v.set(sn*t.getX() + cs*v.getX(), sn*t.getY() + cs*v.getY(), sn*t.getZ() + cs*v.getZ()); setModelViewMatrix(); } void Camera::yaw(float angle) { float cs = cos(3.14159265/180 * angle); //convert degrees to radians float sn = sin(3.14159265/180 * angle); Vector3D t(n); n.set(cs*t.getX() - sn*u.getX(), cs*t.getY() - sn*u.getY(), cs*t.getZ() - sn*u.getZ()); u.set(sn*t.getX() + cs*u.getX(), sn*t.getY() + cs*u.getY(), sn*t.getZ() + cs*u.getZ()); setModelViewMatrix(); } void Camera::slide(float delU, float delV, float delN) { float delx = delU*u.getX() + delV*v.getX() + delN*n.getX(); float dely = delU*u.getY() + delV*v.getY() + delN*n.getY(); float delz = delU*u.getZ() + delV*v.getZ() + delN*n.getZ(); eye.set(eye.getX() + delx, eye.getY() + dely, eye.getZ() + delz); setModelViewMatrix(); } void Camera::rotAxes(Vector3D& a, Vector3D& b, float angle) { float ang = angle*M_PI/180; float C = cos(ang); float S = sin(ang); a.set(C * a.getX() + S * b.getX(), C * a.getY() + S * b.getY(), C * a.getZ() + S * b.getZ()); b.set(-S * a.getX() + C * b.getX(), -S * a.getY() + C * b.getY(), -S * a.getZ() + C * b.getZ()); } void Camera::setDefaultCamera() { setShape(45.0f, 1.0f, 0.1f, 200.0f); Point3D eyePoint = Point3D( 10.0, 10.0, 10.0 ); Point3D lookPoint = Point3D( 0.0, 0.0, 0.0 ); Vector3D upVector = Vector3D( 0, 1, 0 ); set( eyePoint, lookPoint, upVector ); } void Camera::up(float angle) { Vector3D temp(eye.getX(), eye.getY(), eye.getZ()); float dist = temp.length(); eye.set(0, 0, 0); pitch(angle); slide(0, 0, dist); } void Camera::right(float angle) { Vector3D temp(eye.getX(), eye.getY(), eye.getZ()); float dist = temp.length(); eye.set(0, 0, 0); yaw(angle); slide(0, 0, dist); } void Camera::rotate(float angle) { Vector3D temp(eye.getX(), eye.getY(), eye.getZ()); float dist = temp.length(); eye.set(0, 0, 0); roll(angle); slide(0, 0, dist); }
[ "ntlam94@gmail.com" ]
ntlam94@gmail.com
a46aa3bfdfb451815119f42818388a8f2f8e0c24
2ba8763af1e918668f38698da4be720c0a5272ec
/Classes/Effects/TuoYuanRotateNode.h
cb2c78a14dd647b1d8e727f85fbb766b5685a98d
[]
no_license
linger2334/Grow
1c4a2e47162c555481dfb28eda2b33ddade19483
0c4e253959bbba58aef3a58239a7a7bab277bc1b
refs/heads/master
2021-01-20T09:32:44.260387
2014-12-30T15:54:52
2014-12-30T15:54:52
24,794,483
1
1
null
null
null
null
UTF-8
C++
false
false
3,333
h
#ifndef __Grow_Beta_01__TuoYuanRotateNode__ #define __Grow_Beta_01__TuoYuanRotateNode__ #include <cocos2d.h> #include "RandomHelper.h" using namespace cocos2d; typedef struct OvalConfig { //椭圆a长半轴 float a; //椭圆b短半轴 float b; //中心点坐标 Vec2 centerPosition; //是否逆时针运动 bool moveInAnticlockwise; } lOvalConfig; #define PIX2 6.2831852f class TuoYuanRotateNode : public Node { public: CREATE_FUNC(TuoYuanRotateNode); virtual bool init(); virtual void update(float dt); bool isRotate(){return _isRotate;} void startRotate(){_isRotate = true;} void stopRotate(){_isRotate = false;} void initOvalConfig(Vec2 centerPosition,float OneCycle,float a,float b,float isclock=true); void updateRotatePosition(float dt); void updatePosition(); void resetOvalConfig(const OvalConfig& config); float getTime(){return _timeNow;} void setTime(float value){_timeNow = value;} float getALength(){return _config.a;} void setALength(float value){_config.a = value;} float getBLength(){return _config.b;} void setBLength(float value){_config.b = value;} float getOneCycleTime(){return _config.a;} void setOneCycleTime(float value){_config.a = value;} Vec2 getContorlPosition(){return _config.centerPosition;} void setContorlPosition(Vec2 pt){_config.centerPosition = pt;} void changeClockwise(){_config.moveInAnticlockwise = _config.moveInAnticlockwise == true ? false : true;} void setClockwise(bool isclockwise) {_config.moveInAnticlockwise = isclockwise;} bool isClockwise(){return _config.moveInAnticlockwise;} float randTime() { return RandomHelper::randFloat(0.0,_timeByOneCycle); } float randSubTime() { float time = 0.0f; if(_config.moveInAnticlockwise) time= RandomHelper::randFloat(0.5f * _timeByOneCycle,_timeByOneCycle); else time= RandomHelper::randFloat(_timeByOneCycle,0.5f * _timeByOneCycle); return time; } Vec2 getNowTimeTargetPosition() { return getTargetPositionByTime(getNowPositionTime()); } Vec2 getNowTimeTargetPositionInWorld() { Vec2 pt = getTargetPositionByTime(getNowPositionTime()); auto p = this->getParent(); if(p)pt = p->convertToWorldSpace(pt); return pt; } float getNowPositionTime() { return _timeNow/_timeByOneCycle; } inline Vec2 getTargetPositionByTime(float t) { float x = getPositionXAtOval(t);//调用之前的坐标计算函数来计算出坐标值 float y = getPositionYAtOval(t); return _config.centerPosition+ Vec2(x,y); } //x = a * cos(t) t = [0, 2Pi] inline float getPositionXAtOval(float t ){//返回X坐标 //参数方程 return _config.a * cos(6.2831852 * t); } //y = b * sin(t) t = [0, 2Pi] inline float getPositionYAtOval(float t ){//返回Y坐标 return _config.b * sin(6.2831852 * t); } bool _isRotate; //单位秒 float _timeNow; //单位秒 float _timeByOneCycle; OvalConfig _config; }; #endif /* defined(__Grow_Beta_01__TuoYuanRotateNode__) */
[ "pinle2006@163.com" ]
pinle2006@163.com
c4acb85796aad70146406f6b348638c49ac32803
e6cf1c7b30207e0f3fe3bda1bf6dc18a585b721a
/Data-Structures/Strings/SubsequenceAndSubstring/8- count-distinct-subsequences/countDistinctSubsequences.cpp
d6253d0e5645b549a0b6143a5e66720464c87aa5
[]
no_license
tege3000/geeksforgeeks-algorithmic-challenges
30cd4439b2bcd0a49100cac56f159370086d6226
da57108fbe12a941f45368eefc11d3499328ce05
refs/heads/master
2023-01-29T03:21:54.921574
2020-12-05T09:11:10
2020-12-05T09:11:10
280,691,606
0
0
null
null
null
null
UTF-8
C++
false
false
2,331
cpp
/* * Topic: Count Distinct Subsequences * * Description: Given a string, find the count * of distinct subsequences of it. */ #include <iostream> #include <vector> #include <math.h> #include <set> using namespace std; // For a string of numbers, get all subsequences // NOTE: This is a naive approach, learn better way later. vector <string> getAllSubsequences(string s) { vector<string> subsequences; // for n characters, there are 2^n possibilities int numSubs = pow(2, s.size()); vector<vector<int>> truthTable; for(int i = 0; i < numSubs; i++) { vector <int> inner; for(int j = 0; j < s.size(); j++) { inner.push_back(0); } truthTable.push_back(inner); } // generate truth table for(int i = 0; i < s.size(); i++) { int numRecurring = pow(2, s.size()-(i+1)); int start = 0; int end = numRecurring; for(int j = 0; j < pow(2, i+1); j++) { end = numRecurring + start; if(j % 2 == 0) { // fill up with zeros for(int k = start; k < end; k++) { truthTable[k][i] = 0; } } else { // fill up with 1s for(int k = start; k < end; k++) { truthTable[k][i] = 1; } } start += numRecurring; } } for(int i = 0; i < numSubs; i++) { string num = ""; for(int j = 0; j < s.size(); j++) { if(truthTable[i][j] == 1) { num += s[j]; } } if(num.size() >= 1) { subsequences.push_back(num); } } return subsequences; } // NOTE: This includes empty substring // Naive Solution int countDistinctSubsequences(string a) { // get all subsequences first vector<string> allSubsequences = getAllSubsequences(a); set<string> distinct; for(int i = 0; i < allSubsequences.size(); i++) { distinct.insert(allSubsequences[i]); } return distinct.size()+1; } int main() { string a = "gfg"; cout << countDistinctSubsequences(a) << endl; string a2 = "ggg"; cout << countDistinctSubsequences(a2) << endl; return 0; }
[ "teetoegeonu@gmail.com" ]
teetoegeonu@gmail.com
18a5b6070559b29acd31cd0946620dfdaa9e8f15
e750354074de25de034a4427b48802164e7b30ce
/device/port.h
9de5be9872bb1a189933fd12d8b345cebca8d6c3
[]
no_license
madsen-git/NTools
62a65e51547ea89cdba48a2d5553c30c4da76ab5
c7b1244a4e9b93cdff939f4f608a269f307aa37e
refs/heads/master
2021-01-01T03:35:46.030354
2018-09-29T00:48:31
2018-09-29T00:48:31
58,266,851
0
7
null
null
null
null
GB18030
C++
false
false
3,201
h
#ifndef __DEV_PORT_H__ #define __DEV_PORT_H__ #pragma once #include "device.h" namespace dev { //////////////////////////////////////////////////////////////////////////////////////////////////////// // IChannel 类 2016-1-12 // 通讯设备接口 //////////////////////////////////////////////////////////////////////////////////////////////////////// class IChannel { public: virtual ~IChannel() {} virtual bool open() = 0; virtual void close() = 0; virtual bool isOpened() const = 0; virtual bool write(uint8_t *pdata, uint32_t datalen) = 0; virtual int read(uint8_t *pbuf, uint32_t buflen) = 0; }; //////////////////////////////////////////////////////////////////////////////////////////////////////// // serialPort 类 2016-1-12 // 通讯端口基类 //////////////////////////////////////////////////////////////////////////////////////////////////////// class serialPort : public device, public IChannel { public: serialPort(); virtual ~serialPort(); public: ////////////////////////////////////////////////////////////////////////// // 2016-1-12 IChannel virtual bool open(); virtual void close(); virtual bool isOpened() const; virtual bool write(uint8_t *pdata, uint32_t datalen); virtual int read(uint8_t *pbuf, uint32_t buflen); //virtual void* getChannelHandle(); //virtual std::wstring getPortName() const; //virtual int32_t getChannelPort() const; public: ////////////////////////////////////////////////////////////////////////// // 2016-1-24 枚举系统可用的串口 static IntSetType enumPort(bool bIgnoreBusyPorts = true); // 数据读取线程 static unsigned int WINAPI threadReadData(LPVOID pParam); //protected: void start(); void stop(); public: // 属性 uint8_t getDatabit() const { return m_nDatabit; } void setDatabit(uint8_t databit) { if(databit >= 5 && databit <= 8) m_nDatabit = databit; else m_nDatabit = 8; } int8_t getStopbit() const { return m_cStopbit; } void setStopbit(int8_t stopbit) { m_cStopbit = stopbit==1?1:2; } int8_t getParity() const { return m_cParity; } void setParity(int8_t parity) { if(parity == 'O' || parity == 'o') parity = 'O'; else if(parity == 'E' || parity == 'e') parity = 'E'; else parity = 'N'; m_cParity = parity; } int32_t getBaudrate() const { return m_iBaud; } void setBaudrate(int32_t baud) { switch(baud) { case 110: case 300: case 600: case 1200: case 2400: case 4800: case 9600: case 19200: case 38400: case 57600: case 115200: m_iBaud = baud; break; default: m_iBaud = 9600; break; } } int32_t getPort() const { return m_iPort; } void setPort(int32_t port) { m_iPort = port < 0?0:port; } private: uint8_t m_nDatabit; // 数据位的个数 int8_t m_cStopbit; // 停止位的个数;如: 1=ONESTOPBIT,2=TWOSTOPBITS int8_t m_cParity; // 奇偶校验位;如:'N', 'O', 'E' int32_t m_iBaud; // 波特率;如:9600, 19200, 57600, 115200, etc int32_t m_iPort; // 端口号;如:0=com1,1=com2... // 端口句柄 void *m_hPort; HANDLE m_threadRead; volatile LONG m_switchRead; }; } // dev #endif // __DEV_PORT_H__
[ "xu_ping_2003@163.com" ]
xu_ping_2003@163.com
cfa54c5a628fbf72ae47f9e32f6fb0db70124cc3
bed61e3f302058e7ad6997132ed82783393112fd
/mfand/upnptest.cc
05e874c356daca01917841c1a9e0cffaa025390e
[]
no_license
mlkazar/cazamar
f780004d04e8a6bac3bbf3a2c4b378e46ec88898
7afe34909394bac12514d861c3edda32b698e280
refs/heads/master
2023-07-19T20:11:19.764086
2023-07-05T17:18:49
2023-07-05T17:18:49
136,724,635
0
0
null
null
null
null
UTF-8
C++
false
false
4,655
cc
#include <sys/socket.h> #include <arpa/inet.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <netinet/udp.h> #include <errno.h> #include <string> #include <stdio.h> #include <dqueue.h> #include "bufsocket.h" #include "rst.h" #include "json.h" #include "xapi.h" #include "oasha1.h" #include <xgml.h> #include "upnp.h" static int32_t mainPrintCallback(void *callbackContextp, void *arecordp) { UpnpDBase::Record *recordp = (UpnpDBase::Record *) arecordp; printf("Item title=%s artist=%s album=%s url=%s genre=%s artUrl=%s tag=%d\n", recordp->_title.c_str(), recordp->_artist.c_str(), recordp->_album.c_str(), recordp->_url.c_str(), recordp->_genre.c_str(), recordp->_artUrl.c_str(), recordp->_tag); return 0; } int main(int argc, char **argv) { UpnpProbe probe; UpnpAv av; UpnpDBase dbase; int32_t code; char cmdBuffer[1024]; char cmd[128]; char arg0[128]; char arg1[128]; const char *obIdp; UpnpDevice *devp; const char *hostp; const char *servicep; char *linep; int ix; int i; int scanItems; while(1) { printf("\n>> "); fflush(stdout); linep = fgets(cmdBuffer, sizeof(cmdBuffer)-1, stdin); if (!linep) { if (feof(stdin)) { printf("short read\n"); return -1; } else continue; } scanItems = sscanf(cmdBuffer, "%128s %128s %128s", cmd, arg0, arg1); if (scanItems <= 0) continue; if (strcmp(cmd, "p") == 0) { code = probe.init(); printf("All done with probe, code = %d\n", code); code = probe.contactAllDevices(); printf("All done with probe/contact code=%d\n\n", code); } else if (strcmp(cmd, "r") == 0) { if (strcmp(arg0, "on") == 0) { av.setRecurse(1); } else { av.setRecurse(0); } } else if (strcmp(cmd, "save") == 0) { code = probe.saveToFile("foo.json"); printf("Dev save done, code=%d\n", code); code = dbase.saveToFile("dbase.json"); printf("DBase save done, code=%d\n", code); } else if (strcmp(cmd, "restore") == 0) { probe.clearAll(); code = probe.restoreFromFile("foo.json"); printf("Restore done, code=%d\n", code); code = dbase.restoreFromFile("dbase.json"); printf("DBase restore done, code=%d\n", code); } else if (strcmp(cmd, "b") == 0) { if (scanItems < 2) { printf("usage: b <count>\n"); continue; } ix = atoi(arg0); for(devp = probe.getFirstDevice(); devp; devp=devp->_dqNextp) { if (devp->_controlPathKnown) { if (ix <= 0) break; ix--; } } if (!devp) { printf("index too large\n"); continue; } hostp = devp->_host.c_str(); servicep = devp->_controlRelativePath.c_str(); printf("Using host=%s service=%s\n", hostp, servicep); code = av.init(devp); printf("Av init code=%d\n", code); if (scanItems > 2) obIdp = arg1; else obIdp = "0"; code = av.browse(&dbase, obIdp); printf("Av browse code=%d\n", code); } else if (strcmp(cmd, "l") == 0) { for(i=0, devp = probe._allDevices.head(); devp; devp=devp->_dqNextp, i++) { printf("%d: host=%s servicePath=%s tag=%d\n", i, devp->_host.c_str(), devp->_controlRelativePath.c_str(), devp->_tag); } } else if (strcmp(cmd, "ld") == 0) { dbase._titleTree.apply(mainPrintCallback, NULL); } else if (strcmp(cmd, "dl") == 0) { UpnpDevice *devp; if (scanItems < 2) { printf("out of range\n"); continue; } ix = atoi(arg0); devp = probe.getNthDevice(ix); if (devp) { dbase.deleteByTag(devp->_tag); probe.deleteNthDevice(ix); } } else if (strcmp(cmd, "q") == 0) break; else { printf("Unknown command '%s'\n", cmd); } } /* while loop */ return 0; }
[ "michael.kazar@verizon.net" ]
michael.kazar@verizon.net
6c2940c2776188852a8be8b6e38ce94bb37c0d61
04599ada39282ca9ae9368c3ba65bfbb0b371cc1
/Sort Algorithm/merge_sort.cc
fc7cca6d01df342c19a1e201af983046cdfc2550
[]
no_license
gaooz/AlgorithmandDS
877a52fb2068b89e58dbb7b50f6ec865b287b832
a32507bf7224a6cf07d376924bf5708247de9b02
refs/heads/master
2021-01-11T06:06:56.817526
2016-09-24T14:12:26
2016-09-24T14:12:26
69,072,509
1
0
null
null
null
null
GB18030
C++
false
false
709
cc
/** date: 2012年09月 author: gaooz.com */ void Merge(Sqlist L,Sqlist &T,int i,int m,int n) {//将顺序表L中的[1....m-1]和[m...n]归并为顺序表T int j,k; for(j=m+1,k=i;i<=m&&j<=n;k++) { if(L.data[i]<L.data[j]) T.data[k]=L.data[i++]; else T.data[k]=L.data[j++]; } if(i<=m) for(;i<=m;) T.data[k++]=L.data[i++]; if(j<=n) for(;j<=n;) T.data[k++]=L.data[j++]; } void MSort(Sqlist L,Sqlist &T,int s,int t) {//2-路归并排序利用递归实现效率较低。时间复杂度为O(nlog2n) int m;Sqlist S;S.length=0; if(s==t) T.data[s]=L.data[s]; else { m=(s+t)/2; MSort(L,S,s,m); MSort(L,S,m+1,t); Merge(S,T,s,m,t); } } void MergeSort(Sqlist &L) { MSort(L,L,1,L.length); }
[ "5611085@qq.com" ]
5611085@qq.com
d88ff0b2958cad8954bad0746426c9ed14cc5944
2ac428cdbaf107456dd4da40de8006b14d662d0e
/src/41_bitmap_fonts.cpp
7ecd03e239752343a401d66b51ec5dccda15fc75
[]
no_license
gongluck/SDL2-study
06f1e769da280af542fec0ca1cdf8698b215dfe2
db253516876cb034eea93bc9c7e369bcf439e349
refs/heads/master
2020-05-25T03:46:54.210858
2019-06-19T06:58:07
2019-06-19T06:58:07
187,612,050
0
0
null
null
null
null
UTF-8
C++
false
false
16,142
cpp
/*This source code copyrighted by Lazy Foo' Productions (2004-2019) and may not be redistributed without written permission.*/ //Using SDL, SDL_image, SDL_ttf, standard IO, math, strings, and string streams #include <SDL.h> #include <SDL_image.h> #include <stdio.h> #include <string> //Screen dimension constants const int SCREEN_WIDTH = 640; const int SCREEN_HEIGHT = 480; //Texture wrapper class class LTexture_bitmap_fonts { public: //Initializes variables LTexture_bitmap_fonts(); //Deallocates memory ~LTexture_bitmap_fonts(); //Loads image at specified path bool loadFromFile( std::string path ); #if defined(_SDL_TTF_H) || defined(SDL_TTF_H) //Creates image from font string bool loadFromRenderedText( std::string textureText, SDL_Color textColor ); #endif //Deallocates texture void free(); //Set color modulation void setColor( Uint8 red, Uint8 green, Uint8 blue ); //Set blending void setBlendMode( SDL_BlendMode blending ); //Set alpha modulation void setAlpha( Uint8 alpha ); //Renders texture at given point void render( int x, int y, SDL_Rect* clip = NULL, double angle = 0.0, SDL_Point* center = NULL, SDL_RendererFlip flip = SDL_FLIP_NONE ); //Gets image dimensions int getWidth(); int getHeight(); //Pixel manipulators bool lockTexture(); bool unlockTexture(); void* getPixels(); int getPitch(); Uint32 getPixel32( unsigned int x, unsigned int y ); private: //The actual hardware texture SDL_Texture* mTexture; void* mPixels; int mPitch; //Image dimensions int mWidth; int mHeight; }; //Our bitmap font class LBitmapFont_bitmap_fonts { public: //The default constructor LBitmapFont_bitmap_fonts(); //Generates the font bool buildFont( LTexture_bitmap_fonts*bitmap ); //Shows the text void renderText( int x, int y, std::string text ); private: //The font texture LTexture_bitmap_fonts* mBitmap; //The individual characters in the surface SDL_Rect mChars[ 256 ]; //Spacing Variables int mNewLine, mSpace; }; //Starts up SDL and creates window bool init_bitmap_fonts(); //Loads media bool loadMedia_bitmap_fonts(); //Frees media and shuts down SDL void close_bitmap_fonts(); //The window we'll be rendering to SDL_Window* gWindow_bitmap_fonts = NULL; //The window renderer SDL_Renderer* gRenderer_bitmap_fonts = NULL; //Scene textures LTexture_bitmap_fonts gBitmapTexture_bitmap_fonts; LBitmapFont_bitmap_fonts gBitmapFont_bitmap_fonts; LTexture_bitmap_fonts::LTexture_bitmap_fonts() { //Initialize mTexture = NULL; mWidth = 0; mHeight = 0; mPixels = NULL; mPitch = 0; } LTexture_bitmap_fonts::~LTexture_bitmap_fonts() { //Deallocate free(); } bool LTexture_bitmap_fonts::loadFromFile( std::string path ) { //Get rid of preexisting texture free(); //The final texture SDL_Texture* newTexture = NULL; //Load image at specified path SDL_Surface* loadedSurface = IMG_Load( path.c_str() ); if( loadedSurface == NULL ) { printf( "Unable to load image %s! SDL_image Error: %s\n", path.c_str(), IMG_GetError() ); } else { //Convert surface to display format SDL_Surface* formattedSurface = SDL_ConvertSurfaceFormat( loadedSurface, SDL_PIXELFORMAT_RGBA8888, NULL ); if( formattedSurface == NULL ) { printf( "Unable to convert loaded surface to display format! %s\n", SDL_GetError() ); } else { //Create blank streamable texture newTexture = SDL_CreateTexture( gRenderer_bitmap_fonts, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_STREAMING, formattedSurface->w, formattedSurface->h ); if( newTexture == NULL ) { printf( "Unable to create blank texture! SDL Error: %s\n", SDL_GetError() ); } else { //Enable blending on texture SDL_SetTextureBlendMode( newTexture, SDL_BLENDMODE_BLEND ); //Lock texture for manipulation SDL_LockTexture( newTexture, &formattedSurface->clip_rect, &mPixels, &mPitch ); //Copy loaded/formatted surface pixels memcpy( mPixels, formattedSurface->pixels, formattedSurface->pitch * formattedSurface->h ); //Get image dimensions mWidth = formattedSurface->w; mHeight = formattedSurface->h; //Get pixel data in editable format Uint32* pixels = (Uint32*)mPixels; int pixelCount = ( mPitch / 4 ) * mHeight; //Map colors Uint32 colorKey = SDL_MapRGB( formattedSurface->format, 0, 0xFF, 0xFF ); Uint32 transparent = SDL_MapRGBA( formattedSurface->format, 0x00, 0xFF, 0xFF, 0x00 ); //Color key pixels for( int i = 0; i < pixelCount; ++i ) { if( pixels[ i ] == colorKey ) { pixels[ i ] = transparent; } } //Unlock texture to update SDL_UnlockTexture( newTexture ); mPixels = NULL; } //Get rid of old formatted surface SDL_FreeSurface( formattedSurface ); } //Get rid of old loaded surface SDL_FreeSurface( loadedSurface ); } //Return success mTexture = newTexture; return mTexture != NULL; } #if defined(_SDL_TTF_H) || defined(SDL_TTF_H) bool LTexture_bitmap_fonts::loadFromRenderedText( std::string textureText, SDL_Color textColor ) { //Get rid of preexisting texture free(); //Render text surface SDL_Surface* textSurface = TTF_RenderText_Solid( gFont, textureText.c_str(), textColor ); if( textSurface != NULL ) { //Create texture from surface pixels mTexture = SDL_CreateTextureFromSurface( gRenderer, textSurface ); if( mTexture == NULL ) { printf( "Unable to create texture from rendered text! SDL Error: %s\n", SDL_GetError() ); } else { //Get image dimensions mWidth = textSurface->w; mHeight = textSurface->h; } //Get rid of old surface SDL_FreeSurface( textSurface ); } else { printf( "Unable to render text surface! SDL_ttf Error: %s\n", TTF_GetError() ); } //Return success return mTexture != NULL; } #endif void LTexture_bitmap_fonts::free() { //Free texture if it exists if( mTexture != NULL ) { SDL_DestroyTexture( mTexture ); mTexture = NULL; mWidth = 0; mHeight = 0; mPixels = NULL; mPitch = 0; } } void LTexture_bitmap_fonts::setColor( Uint8 red, Uint8 green, Uint8 blue ) { //Modulate texture rgb SDL_SetTextureColorMod( mTexture, red, green, blue ); } void LTexture_bitmap_fonts::setBlendMode( SDL_BlendMode blending ) { //Set blending function SDL_SetTextureBlendMode( mTexture, blending ); } void LTexture_bitmap_fonts::setAlpha( Uint8 alpha ) { //Modulate texture alpha SDL_SetTextureAlphaMod( mTexture, alpha ); } void LTexture_bitmap_fonts::render( int x, int y, SDL_Rect* clip, double angle, SDL_Point* center, SDL_RendererFlip flip ) { //Set rendering space and render to screen SDL_Rect renderQuad = { x, y, mWidth, mHeight }; //Set clip rendering dimensions if( clip != NULL ) { renderQuad.w = clip->w; renderQuad.h = clip->h; } //Render to screen SDL_RenderCopyEx( gRenderer_bitmap_fonts, mTexture, clip, &renderQuad, angle, center, flip ); } int LTexture_bitmap_fonts::getWidth() { return mWidth; } int LTexture_bitmap_fonts::getHeight() { return mHeight; } bool LTexture_bitmap_fonts::lockTexture() { bool success = true; //Texture is already locked if( mPixels != NULL ) { printf( "Texture is already locked!\n" ); success = false; } //Lock texture else { if( SDL_LockTexture( mTexture, NULL, &mPixels, &mPitch ) != 0 ) { printf( "Unable to lock texture! %s\n", SDL_GetError() ); success = false; } } return success; } bool LTexture_bitmap_fonts::unlockTexture() { bool success = true; //Texture is not locked if( mPixels == NULL ) { printf( "Texture is not locked!\n" ); success = false; } //Unlock texture else { SDL_UnlockTexture( mTexture ); mPixels = NULL; mPitch = 0; } return success; } void* LTexture_bitmap_fonts::getPixels() { return mPixels; } int LTexture_bitmap_fonts::getPitch() { return mPitch; } Uint32 LTexture_bitmap_fonts::getPixel32( unsigned int x, unsigned int y ) { //Convert the pixels to 32 bit Uint32 *pixels = (Uint32*)mPixels; //Get the pixel requested return pixels[ ( y * ( mPitch / 4 ) ) + x ]; } LBitmapFont_bitmap_fonts::LBitmapFont_bitmap_fonts() { //Initialize variables mBitmap = NULL; mNewLine = 0; mSpace = 0; } bool LBitmapFont_bitmap_fonts::buildFont( LTexture_bitmap_fonts* bitmap ) { bool success = true; //Lock pixels for access if( !bitmap->lockTexture() ) { printf( "Unable to lock bitmap font texture!\n" ); success = false; } else { //Set the background color Uint32 bgColor = bitmap->getPixel32( 0, 0 ); //Set the cell dimensions int cellW = bitmap->getWidth() / 16; int cellH = bitmap->getHeight() / 16; //New line variables int top = cellH; int baseA = cellH; //The current character we're setting int currentChar = 0; //Go through the cell rows for( int rows = 0; rows < 16; ++rows ) { //Go through the cell columns for( int cols = 0; cols < 16; ++cols ) { //Set the character offset mChars[ currentChar ].x = cellW * cols; mChars[ currentChar ].y = cellH * rows; //Set the dimensions of the character mChars[ currentChar ].w = cellW; mChars[ currentChar ].h = cellH; //Find Left Side //Go through pixel columns for( int pCol = 0; pCol < cellW; ++pCol ) { //Go through pixel rows for( int pRow = 0; pRow < cellH; ++pRow ) { //Get the pixel offsets int pX = ( cellW * cols ) + pCol; int pY = ( cellH * rows ) + pRow; //If a non colorkey pixel is found if( bitmap->getPixel32( pX, pY ) != bgColor ) { //Set the x offset mChars[ currentChar ].x = pX; //Break the loops pCol = cellW; pRow = cellH; } } } //Find Right Side //Go through pixel columns for( int pColW = cellW - 1; pColW >= 0; --pColW ) { //Go through pixel rows for( int pRowW = 0; pRowW < cellH; ++pRowW ) { //Get the pixel offsets int pX = ( cellW * cols ) + pColW; int pY = ( cellH * rows ) + pRowW; //If a non colorkey pixel is found if( bitmap->getPixel32( pX, pY ) != bgColor ) { //Set the width mChars[ currentChar ].w = ( pX - mChars[ currentChar ].x ) + 1; //Break the loops pColW = -1; pRowW = cellH; } } } //Find Top //Go through pixel rows for( int pRow = 0; pRow < cellH; ++pRow ) { //Go through pixel columns for( int pCol = 0; pCol < cellW; ++pCol ) { //Get the pixel offsets int pX = ( cellW * cols ) + pCol; int pY = ( cellH * rows ) + pRow; //If a non colorkey pixel is found if( bitmap->getPixel32( pX, pY ) != bgColor ) { //If new top is found if( pRow < top ) { top = pRow; } //Break the loops pCol = cellW; pRow = cellH; } } } //Find Bottom of A if( currentChar == 'A' ) { //Go through pixel rows for( int pRow = cellH - 1; pRow >= 0; --pRow ) { //Go through pixel columns for( int pCol = 0; pCol < cellW; ++pCol ) { //Get the pixel offsets int pX = ( cellW * cols ) + pCol; int pY = ( cellH * rows ) + pRow; //If a non colorkey pixel is found if( bitmap->getPixel32( pX, pY ) != bgColor ) { //Bottom of a is found baseA = pRow; //Break the loops pCol = cellW; pRow = -1; } } } } //Go to the next character ++currentChar; } } //Calculate space mSpace = cellW / 2; //Calculate new line mNewLine = baseA - top; //Lop off excess top pixels for( int i = 0; i < 256; ++i ) { mChars[ i ].y += top; mChars[ i ].h -= top; } bitmap->unlockTexture(); mBitmap = bitmap; } return success; } void LBitmapFont_bitmap_fonts::renderText( int x, int y, std::string text ) { //If the font has been built if( mBitmap != NULL ) { //Temp offsets int curX = x, curY = y; //Go through the text for( int i = 0; i < text.length(); ++i ) { //If the current character is a space if( text[ i ] == ' ' ) { //Move over curX += mSpace; } //If the current character is a newline else if( text[ i ] == '\n' ) { //Move down curY += mNewLine; //Move back curX = x; } else { //Get the ASCII value of the character int ascii = (unsigned char)text[ i ]; //Show the character mBitmap->render( curX, curY, &mChars[ ascii ] ); //Move over the width of the character with one pixel of padding curX += mChars[ ascii ].w + 1; } } } } bool init_bitmap_fonts() { //Initialization flag bool success = true; //Initialize SDL if( SDL_Init( SDL_INIT_VIDEO ) < 0 ) { printf( "SDL could not initialize! SDL Error: %s\n", SDL_GetError() ); success = false; } else { //Set texture filtering to linear if( !SDL_SetHint( SDL_HINT_RENDER_SCALE_QUALITY, "1" ) ) { printf( "Warning: Linear texture filtering not enabled!" ); } //Seed random srand( SDL_GetTicks() ); //Create window gWindow_bitmap_fonts = SDL_CreateWindow( "SDL Tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN ); if( gWindow_bitmap_fonts == NULL ) { printf( "Window could not be created! SDL Error: %s\n", SDL_GetError() ); success = false; } else { //Create renderer for window gRenderer_bitmap_fonts = SDL_CreateRenderer( gWindow_bitmap_fonts, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC ); if( gRenderer_bitmap_fonts == NULL ) { printf( "Renderer could not be created! SDL Error: %s\n", SDL_GetError() ); success = false; } else { //Initialize renderer color SDL_SetRenderDrawColor( gRenderer_bitmap_fonts, 0xFF, 0xFF, 0xFF, 0xFF ); //Initialize PNG loading int imgFlags = IMG_INIT_PNG; if( !( IMG_Init( imgFlags ) & imgFlags ) ) { printf( "SDL_image could not initialize! SDL_image Error: %s\n", IMG_GetError() ); success = false; } } } } return success; } bool loadMedia_bitmap_fonts() { //Loading success flag bool success = true; //Load font texture if( !gBitmapTexture_bitmap_fonts.loadFromFile( "lazyfont.png" ) ) { printf( "Failed to load corner texture!\n" ); success = false; } else { //Build font from texture gBitmapFont_bitmap_fonts.buildFont( &gBitmapTexture_bitmap_fonts); } return success; } void close_bitmap_fonts() { //Free loaded images gBitmapTexture_bitmap_fonts.free(); //Destroy window SDL_DestroyRenderer( gRenderer_bitmap_fonts); SDL_DestroyWindow( gWindow_bitmap_fonts); gWindow_bitmap_fonts = NULL; gRenderer_bitmap_fonts = NULL; //Quit SDL subsystems IMG_Quit(); SDL_Quit(); } int main_bitmap_fonts( int argc, char* args[] ) { //Start up SDL and create window if( !init_bitmap_fonts() ) { printf( "Failed to initialize!\n" ); } else { //Load media if( !loadMedia_bitmap_fonts() ) { printf( "Failed to load media!\n" ); } else { //Main loop flag bool quit = false; //Event handler SDL_Event e; //While application is running while( !quit ) { //Handle events on queue while( SDL_PollEvent( &e ) != 0 ) { //User requests quit if( e.type == SDL_QUIT ) { quit = true; } } //Clear screen SDL_SetRenderDrawColor( gRenderer_bitmap_fonts, 0xFF, 0xFF, 0xFF, 0xFF ); SDL_RenderClear( gRenderer_bitmap_fonts); //Render test text gBitmapFont_bitmap_fonts.renderText( 0, 0, "Bitmap Font:\nABDCEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n0123456789" ); //Update screen SDL_RenderPresent( gRenderer_bitmap_fonts); } } } //Free resources and close SDL close_bitmap_fonts(); return 0; }
[ "1039994845@qq.com" ]
1039994845@qq.com
2e95d026af971b17afdc99fb3beafe995eefcb08
ebe3283aa61ec59341f64bf0bdef21065b67bb0e
/src/model/header/Environment/Body/Pose.h
b5738bea92e9d7a7c3de0a52dde171d0e451f069
[]
no_license
Menta25/awareHouse
d6eac4248f1fd6436f71431c8dbe2b9fd559458c
748e00c0d10640bbf5056b965ebce61c33339b53
refs/heads/master
2023-08-23T22:50:22.886357
2021-09-28T21:09:10
2021-09-28T21:09:10
411,421,192
0
0
null
null
null
null
UTF-8
C++
false
false
1,724
h
#ifndef POSE__H #define POSE__H #include "DirectionVector.h" #include "Point.h" /***************************************************************** * @brief A type that aggregates a position and an orientation. * * @tparam PointCoordT Type of position coordinates. * @tparam VectorCoordT Type of orientation coordinates. *****************************************************************/ template <typename PointCoordT = int, typename VectorCoordT = int> class Pose { public: /****************** TYPES ************** * @brief Type of position Point */ using Position = Point<PointCoordT>; /****************** * @brief Type of orientation vector */ using Orientation = DirectionVector<VectorCoordT>; private: Position position; Orientation orientation; public: //################### Constructors,Destructor ##################### Pose(const Position &position, const Orientation &orientation) : position(position), orientation(orientation) {} Pose(const Pose &other) : position(other.position), orientation(other.orientation) {} virtual ~Pose() = default; //############################ Getter ############################# const Position &getPosition() const { return position; } const Orientation &getOrientation() const { return orientation; } Position &getPosition() { return position; } Orientation &getOrientation() { return orientation; } //############################ Setter ############################# void setPosition(const Position &position) { this->position = position; } void setOrientation(const Orientation &orientation) { this->orientation = orientation; } }; #endif /* POSE__H */
[ "vmt982@inf.elte.hu" ]
vmt982@inf.elte.hu
b6ebe724c73dc41217050a5d445383dd25f7ac34
cc40d6b758088e9ba56641e91c35e1ea85b64e07
/third_party/spirv-tools/source/val/validate_capability.cpp
bb97ded2cc4a06f9a35571c83f1c9c0696ed963f
[ "LicenseRef-scancode-generic-cla", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
chinmaygarde/filament
1091b664f1ba4cc9b63c31c73f63ec8b449acd22
030ba324e0db96dfd31c0c1e016ae44001d92b00
refs/heads/master
2020-03-26T00:25:48.310901
2018-08-13T22:26:23
2018-08-13T22:26:23
144,320,013
1
0
Apache-2.0
2018-08-10T18:29:11
2018-08-10T18:29:11
null
UTF-8
C++
false
false
10,723
cpp
// Copyright (c) 2017 Google Inc. // // 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. // Validates OpCapability instruction. #include "source/val/validate.h" #include <cassert> #include <unordered_set> #include "source/diagnostic.h" #include "source/opcode.h" #include "source/val/instruction.h" #include "source/val/validation_state.h" namespace spvtools { namespace val { namespace { bool IsSupportGuaranteedVulkan_1_0(uint32_t capability) { switch (capability) { case SpvCapabilityMatrix: case SpvCapabilityShader: case SpvCapabilityInputAttachment: case SpvCapabilitySampled1D: case SpvCapabilityImage1D: case SpvCapabilitySampledBuffer: case SpvCapabilityImageBuffer: case SpvCapabilityImageQuery: case SpvCapabilityDerivativeControl: return true; } return false; } bool IsSupportGuaranteedVulkan_1_1(uint32_t capability) { if (IsSupportGuaranteedVulkan_1_0(capability)) return true; switch (capability) { case SpvCapabilityDeviceGroup: case SpvCapabilityMultiView: return true; } return false; } bool IsSupportOptionalVulkan_1_0(uint32_t capability) { switch (capability) { case SpvCapabilityGeometry: case SpvCapabilityTessellation: case SpvCapabilityFloat64: case SpvCapabilityInt64: case SpvCapabilityInt16: case SpvCapabilityTessellationPointSize: case SpvCapabilityGeometryPointSize: case SpvCapabilityImageGatherExtended: case SpvCapabilityStorageImageMultisample: case SpvCapabilityUniformBufferArrayDynamicIndexing: case SpvCapabilitySampledImageArrayDynamicIndexing: case SpvCapabilityStorageBufferArrayDynamicIndexing: case SpvCapabilityStorageImageArrayDynamicIndexing: case SpvCapabilityClipDistance: case SpvCapabilityCullDistance: case SpvCapabilityImageCubeArray: case SpvCapabilitySampleRateShading: case SpvCapabilitySparseResidency: case SpvCapabilityMinLod: case SpvCapabilitySampledCubeArray: case SpvCapabilityImageMSArray: case SpvCapabilityStorageImageExtendedFormats: case SpvCapabilityInterpolationFunction: case SpvCapabilityStorageImageReadWithoutFormat: case SpvCapabilityStorageImageWriteWithoutFormat: case SpvCapabilityMultiViewport: return true; } return false; } bool IsSupportOptionalVulkan_1_1(uint32_t capability) { if (IsSupportOptionalVulkan_1_0(capability)) return true; switch (capability) { case SpvCapabilityGroupNonUniform: case SpvCapabilityGroupNonUniformVote: case SpvCapabilityGroupNonUniformArithmetic: case SpvCapabilityGroupNonUniformBallot: case SpvCapabilityGroupNonUniformShuffle: case SpvCapabilityGroupNonUniformShuffleRelative: case SpvCapabilityGroupNonUniformClustered: case SpvCapabilityGroupNonUniformQuad: case SpvCapabilityDrawParameters: // Alias SpvCapabilityStorageBuffer16BitAccess. case SpvCapabilityStorageUniformBufferBlock16: // Alias SpvCapabilityUniformAndStorageBuffer16BitAccess. case SpvCapabilityStorageUniform16: case SpvCapabilityStoragePushConstant16: case SpvCapabilityStorageInputOutput16: case SpvCapabilityDeviceGroup: case SpvCapabilityMultiView: case SpvCapabilityVariablePointersStorageBuffer: case SpvCapabilityVariablePointers: return true; } return false; } bool IsSupportGuaranteedOpenCL_1_2(uint32_t capability, bool embedded_profile) { switch (capability) { case SpvCapabilityAddresses: case SpvCapabilityFloat16Buffer: case SpvCapabilityGroups: case SpvCapabilityInt16: case SpvCapabilityInt8: case SpvCapabilityKernel: case SpvCapabilityLinkage: case SpvCapabilityVector16: return true; case SpvCapabilityInt64: return !embedded_profile; case SpvCapabilityPipes: return embedded_profile; } return false; } bool IsSupportGuaranteedOpenCL_2_0(uint32_t capability, bool embedded_profile) { if (IsSupportGuaranteedOpenCL_1_2(capability, embedded_profile)) return true; switch (capability) { case SpvCapabilityDeviceEnqueue: case SpvCapabilityGenericPointer: case SpvCapabilityPipes: return true; } return false; } bool IsSupportGuaranteedOpenCL_2_2(uint32_t capability, bool embedded_profile) { if (IsSupportGuaranteedOpenCL_2_0(capability, embedded_profile)) return true; switch (capability) { case SpvCapabilitySubgroupDispatch: case SpvCapabilityPipeStorage: return true; } return false; } bool IsSupportOptionalOpenCL_1_2(uint32_t capability) { switch (capability) { case SpvCapabilityImageBasic: case SpvCapabilityFloat64: return true; } return false; } // Checks if |capability| was enabled by extension. bool IsEnabledByExtension(ValidationState_t& _, uint32_t capability) { spv_operand_desc operand_desc = nullptr; _.grammar().lookupOperand(SPV_OPERAND_TYPE_CAPABILITY, capability, &operand_desc); // operand_desc is expected to be not null, otherwise validator would have // failed at an earlier stage. This 'assert' is 'just in case'. assert(operand_desc); ExtensionSet operand_exts(operand_desc->numExtensions, operand_desc->extensions); if (operand_exts.IsEmpty()) return false; return _.HasAnyOfExtensions(operand_exts); } bool IsEnabledByCapabilityOpenCL_1_2(ValidationState_t& _, uint32_t capability) { if (_.HasCapability(SpvCapabilityImageBasic)) { switch (capability) { case SpvCapabilityLiteralSampler: case SpvCapabilitySampled1D: case SpvCapabilityImage1D: case SpvCapabilitySampledBuffer: case SpvCapabilityImageBuffer: return true; } return false; } return false; } bool IsEnabledByCapabilityOpenCL_2_0(ValidationState_t& _, uint32_t capability) { if (_.HasCapability(SpvCapabilityImageBasic)) { switch (capability) { case SpvCapabilityImageReadWrite: case SpvCapabilityLiteralSampler: case SpvCapabilitySampled1D: case SpvCapabilityImage1D: case SpvCapabilitySampledBuffer: case SpvCapabilityImageBuffer: return true; } return false; } return false; } } // namespace // Validates that capability declarations use operands allowed in the current // context. spv_result_t CapabilityPass(ValidationState_t& _, const Instruction* inst) { if (inst->opcode() != SpvOpCapability) return SPV_SUCCESS; assert(inst->operands().size() == 1); const spv_parsed_operand_t& operand = inst->operand(0); assert(operand.num_words == 1); assert(operand.offset < inst->words().size()); const uint32_t capability = inst->word(operand.offset); const auto capability_str = [&_, capability]() { spv_operand_desc desc = nullptr; if (_.grammar().lookupOperand(SPV_OPERAND_TYPE_CAPABILITY, capability, &desc) != SPV_SUCCESS || !desc) { return std::string("Unknown"); } return std::string(desc->name); }; const auto env = _.context()->target_env; const bool opencl_embedded = env == SPV_ENV_OPENCL_EMBEDDED_1_2 || env == SPV_ENV_OPENCL_EMBEDDED_2_0 || env == SPV_ENV_OPENCL_EMBEDDED_2_1 || env == SPV_ENV_OPENCL_EMBEDDED_2_2; const std::string opencl_profile = opencl_embedded ? "Embedded" : "Full"; if (env == SPV_ENV_VULKAN_1_0) { if (!IsSupportGuaranteedVulkan_1_0(capability) && !IsSupportOptionalVulkan_1_0(capability) && !IsEnabledByExtension(_, capability)) { return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst) << "Capability " << capability_str() << " is not allowed by Vulkan 1.0 specification" << " (or requires extension)"; } } else if (env == SPV_ENV_VULKAN_1_1) { if (!IsSupportGuaranteedVulkan_1_1(capability) && !IsSupportOptionalVulkan_1_1(capability) && !IsEnabledByExtension(_, capability)) { return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst) << "Capability " << capability_str() << " is not allowed by Vulkan 1.1 specification" << " (or requires extension)"; } } else if (env == SPV_ENV_OPENCL_1_2 || env == SPV_ENV_OPENCL_EMBEDDED_1_2) { if (!IsSupportGuaranteedOpenCL_1_2(capability, opencl_embedded) && !IsSupportOptionalOpenCL_1_2(capability) && !IsEnabledByExtension(_, capability) && !IsEnabledByCapabilityOpenCL_1_2(_, capability)) { return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst) << "Capability " << capability_str() << " is not allowed by OpenCL 1.2 " << opencl_profile << " Profile specification" << " (or requires extension or capability)"; } } else if (env == SPV_ENV_OPENCL_2_0 || env == SPV_ENV_OPENCL_EMBEDDED_2_0 || env == SPV_ENV_OPENCL_2_1 || env == SPV_ENV_OPENCL_EMBEDDED_2_1) { if (!IsSupportGuaranteedOpenCL_2_0(capability, opencl_embedded) && !IsSupportOptionalOpenCL_1_2(capability) && !IsEnabledByExtension(_, capability) && !IsEnabledByCapabilityOpenCL_2_0(_, capability)) { return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst) << "Capability " << capability_str() << " is not allowed by OpenCL 2.0/2.1 " << opencl_profile << " Profile specification" << " (or requires extension or capability)"; } } else if (env == SPV_ENV_OPENCL_2_2 || env == SPV_ENV_OPENCL_EMBEDDED_2_2) { if (!IsSupportGuaranteedOpenCL_2_2(capability, opencl_embedded) && !IsSupportOptionalOpenCL_1_2(capability) && !IsEnabledByExtension(_, capability) && !IsEnabledByCapabilityOpenCL_2_0(_, capability)) { return _.diag(SPV_ERROR_INVALID_CAPABILITY, inst) << "Capability " << capability_str() << " is not allowed by OpenCL 2.2 " << opencl_profile << " Profile specification" << " (or requires extension or capability)"; } } return SPV_SUCCESS; } } // namespace val } // namespace spvtools
[ "romainguy@google.com" ]
romainguy@google.com
031456d38d464afaa8476108f0679019fae80edf
fedcd61f23899ad757a95fbe82fd43b03f867c22
/UVa00900.cpp
5f699d708f277b7e2d0f54b740a58499f88a7094
[]
no_license
ric113/OnlineAlgoPractice
f77bbaa36ddfbb04549fd9685f92b8aeea93935a
2c8904fb1df4c31ab7c0c1762738250c7a74bd66
refs/heads/master
2020-07-02T22:08:50.322977
2018-02-26T13:45:21
2018-02-26T13:45:21
74,280,007
0
0
null
null
null
null
UTF-8
C++
false
false
411
cpp
#include <iostream> #include <string> #include <stdlib.h> using namespace std; int main(int argc, const char * argv[]) { int n = 1 ; long long fib[51] ; fib[1] = 1; fib[2] = 2; /* 需建表 , 否則單純跑 recursive 會 timeout */ for(int i = 3 ; i <= 50 ; i ++) { fib[i] = fib[i-1] + fib[i-2]; } while( n != 0 ) { cin >> n ; if(n == 0) break; cout << fib[n] << endl ; } return 0; }
[ "ricky@Rickyde-MacBook-Pro.local" ]
ricky@Rickyde-MacBook-Pro.local
9e508bc11ace785339b6fd2b0d773e0aeb2625b3
d3aa092d471d90ab7b374c65407749a4c6c5b147
/Inne/Laboratorium9/consoleLogger.h
e0e2004a10a4c56afc5faf8ae645327772f0675a
[]
no_license
klasycznienielogiczny/PodstawyProgramowania2
70aa94242a34cd1e8700dabaa4fd316b3a7ed7b3
0caa4069eecdb200739eb8a493a8d11e3c9fe60f
refs/heads/main
2023-05-27T21:58:41.796451
2021-06-11T06:52:29
2021-06-11T06:52:29
346,115,028
0
0
null
null
null
null
UTF-8
C++
false
false
530
h
#ifndef LABORATORIUM9_CONSOLELOGGER_H #define LABORATORIUM9_CONSOLELOGGER_H #include "logger.h" namespace loggers{ class ConsoleLogger:public Logger{ private: ConsoleLogger() = default; ~ConsoleLogger() = default; public: friend std::ostream& operator<<(std::ostream &os, const std::string& log){ os << log << std::endl; return os; }; void log(std::string text) override; static Logger& instance(); }; } #endif //LABORATORIUM9_CONSOLELOGGER_H
[ "ppaluch@student.agh.edu.pl" ]
ppaluch@student.agh.edu.pl
25de590edcf845269fd58024d2adc2e2f0f3f540
46201d4f09a2f94228bd01c13be507fce283d0c9
/cpp/Runoob/defaultparameter.cpp
0b6260c3ff7ff770fff1dfe52fdb572a05025d1e
[]
no_license
VimIcewind/Code
43b858e65cd20be9a8cab9f756eb7acee4b2bd6f
c83e5cb7d55ec3a19c0284e416450334547ff303
refs/heads/master
2023-08-03T10:30:44.748670
2023-08-02T08:56:15
2023-08-02T08:56:15
87,601,193
2
0
null
2022-12-16T00:44:34
2017-04-08T02:11:49
JavaScript
UTF-8
C++
false
false
402
cpp
#include <iostream> using namespace std; int sum(int a, int b = 20) { int result; result = a + b; return (result); } int main() { // 局部变量声明 int a = 100; int b = 200; int result; // 调用函数来添加值 result = sum(a, b); cout << "Total value is :" << result << endl; // 再次调用函数 result = sum(a); cout << "Total value is :" << result << endl; return 0; }
[ "VimIcewind@gmail.com" ]
VimIcewind@gmail.com
28a6e1b1a9d75db5313384232a7158bc3a6e16a1
8d74aca63f7154522dc28b064da03af12b7d29b5
/src/qt/iancoin.cpp
68f4e8f5c8faed351b12408b121f73afebf8c748
[ "MIT" ]
permissive
PayQ/iancoin
c4695c5830f63f774fb3138e025dd8c40b8e15ab
f55c56d3a0ae773b1d88f0cea56d33e6fb164d52
refs/heads/master
2020-04-13T06:50:59.866808
2018-12-17T06:34:12
2018-12-17T06:34:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
23,449
cpp
// Copyright (c) 2009-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Copyright (c) 2018-2019 The IanCoin Core developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #if defined(HAVE_CONFIG_H) #include "config/iancoin-config.h" #endif #include "bitcoingui.h" #include "clientmodel.h" #include "guiconstants.h" #include "guiutil.h" #include "intro.h" #include "net.h" #include "networkstyle.h" #include "optionsmodel.h" #include "splashscreen.h" #include "utilitydialog.h" #include "winshutdownmonitor.h" #ifdef ENABLE_WALLET #include "paymentserver.h" #include "walletmodel.h" #endif #include "masternodeconfig.h" #include "init.h" #include "main.h" #include "rpcserver.h" #include "ui_interface.h" #include "util.h" #ifdef ENABLE_WALLET #include "wallet.h" #endif #include <stdint.h> #include <boost/filesystem/operations.hpp> #include <boost/thread.hpp> #include <QApplication> #include <QDebug> #include <QLibraryInfo> #include <QLocale> #include <QMessageBox> #include <QProcess> #include <QSettings> #include <QThread> #include <QTimer> #include <QTranslator> #if defined(QT_STATICPLUGIN) #include <QtPlugin> #if QT_VERSION < 0x050000 Q_IMPORT_PLUGIN(qcncodecs) Q_IMPORT_PLUGIN(qjpcodecs) Q_IMPORT_PLUGIN(qtwcodecs) Q_IMPORT_PLUGIN(qkrcodecs) Q_IMPORT_PLUGIN(qtaccessiblewidgets) #else #if QT_VERSION < 0x050400 Q_IMPORT_PLUGIN(AccessibleFactory) #endif #if defined(QT_QPA_PLATFORM_XCB) Q_IMPORT_PLUGIN(QXcbIntegrationPlugin); #elif defined(QT_QPA_PLATFORM_WINDOWS) Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin); #elif defined(QT_QPA_PLATFORM_COCOA) Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin); #endif #endif #endif #if QT_VERSION < 0x050000 #include <QTextCodec> #endif // Declare meta types used for QMetaObject::invokeMethod Q_DECLARE_METATYPE(bool*) Q_DECLARE_METATYPE(CAmount) static void InitMessage(const std::string& message) { LogPrintf("init message: %s\n", message); } /* Translate string to current locale using Qt. */ static std::string Translate(const char* psz) { return QCoreApplication::translate("iancoin-core", psz).toStdString(); } static QString GetLangTerritory() { QSettings settings; // Get desired locale (e.g. "de_DE") // 1) System default language QString lang_territory = QLocale::system().name(); // 2) Language from QSettings QString lang_territory_qsettings = settings.value("language", "").toString(); if (!lang_territory_qsettings.isEmpty()) lang_territory = lang_territory_qsettings; // 3) -lang command line argument lang_territory = QString::fromStdString(GetArg("-lang", lang_territory.toStdString())); return lang_territory; } /** Set up translations */ static void initTranslations(QTranslator& qtTranslatorBase, QTranslator& qtTranslator, QTranslator& translatorBase, QTranslator& translator) { // Remove old translators QApplication::removeTranslator(&qtTranslatorBase); QApplication::removeTranslator(&qtTranslator); QApplication::removeTranslator(&translatorBase); QApplication::removeTranslator(&translator); // Get desired locale (e.g. "de_DE") // 1) System default language QString lang_territory = GetLangTerritory(); // Convert to "de" only by truncating "_DE" QString lang = lang_territory; lang.truncate(lang_territory.lastIndexOf('_')); // Load language files for configured locale: // - First load the translator for the base language, without territory // - Then load the more specific locale translator // Load e.g. qt_de.qm if (qtTranslatorBase.load("qt_" + lang, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) QApplication::installTranslator(&qtTranslatorBase); // Load e.g. qt_de_DE.qm if (qtTranslator.load("qt_" + lang_territory, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) QApplication::installTranslator(&qtTranslator); // Load e.g. bitcoin_de.qm (shortcut "de" needs to be defined in iancoin.qrc) if (translatorBase.load(lang, ":/translations/")) QApplication::installTranslator(&translatorBase); // Load e.g. bitcoin_de_DE.qm (shortcut "de_DE" needs to be defined in iancoin.qrc) if (translator.load(lang_territory, ":/translations/")) QApplication::installTranslator(&translator); } /* qDebug() message handler --> debug.log */ #if QT_VERSION < 0x050000 void DebugMessageHandler(QtMsgType type, const char* msg) { const char* category = (type == QtDebugMsg) ? "qt" : NULL; LogPrint(category, "GUI: %s\n", msg); } #else void DebugMessageHandler(QtMsgType type, const QMessageLogContext& context, const QString& msg) { Q_UNUSED(context); const char* category = (type == QtDebugMsg) ? "qt" : NULL; LogPrint(category, "GUI: %s\n", msg.toStdString()); } #endif /** Class encapsulating IanCoin Core startup and shutdown. * Allows running startup and shutdown in a different thread from the UI thread. */ class BitcoinCore : public QObject { Q_OBJECT public: explicit BitcoinCore(); public slots: void initialize(); void shutdown(); void restart(QStringList args); signals: void initializeResult(int retval); void shutdownResult(int retval); void runawayException(const QString& message); private: boost::thread_group threadGroup; /// Flag indicating a restart bool execute_restart; /// Pass fatal exception message to UI thread void handleRunawayException(std::exception* e); }; /** Main IanCoin application object */ class BitcoinApplication : public QApplication { Q_OBJECT public: explicit BitcoinApplication(int& argc, char** argv); ~BitcoinApplication(); #ifdef ENABLE_WALLET /// Create payment server void createPaymentServer(); #endif /// Create options model void createOptionsModel(); /// Create main window void createWindow(const NetworkStyle* networkStyle); /// Create splash screen void createSplashScreen(const NetworkStyle* networkStyle); /// Request core initialization void requestInitialize(); /// Request core shutdown void requestShutdown(); /// Get process return value int getReturnValue() { return returnValue; } /// Get window identifier of QMainWindow (BitcoinGUI) WId getMainWinId() const; public slots: void initializeResult(int retval); void shutdownResult(int retval); /// Handle runaway exceptions. Shows a message box with the problem and quits the program. void handleRunawayException(const QString& message); signals: void requestedInitialize(); void requestedRestart(QStringList args); void requestedShutdown(); void stopThread(); void splashFinished(QWidget* window); private: QThread* coreThread; OptionsModel* optionsModel; ClientModel* clientModel; BitcoinGUI* window; QTimer* pollShutdownTimer; #ifdef ENABLE_WALLET PaymentServer* paymentServer; WalletModel* walletModel; #endif int returnValue; void startThread(); }; #include "iancoin.moc" BitcoinCore::BitcoinCore() : QObject() { } void BitcoinCore::handleRunawayException(std::exception* e) { PrintExceptionContinue(e, "Runaway exception"); emit runawayException(QString::fromStdString(strMiscWarning)); } void BitcoinCore::initialize() { execute_restart = true; try { qDebug() << __func__ << ": Running AppInit2 in thread"; int rv = AppInit2(threadGroup); if (rv) { /* Start a dummy RPC thread if no RPC thread is active yet * to handle timeouts. */ StartDummyRPCThread(); } emit initializeResult(rv); } catch (std::exception& e) { handleRunawayException(&e); } catch (...) { handleRunawayException(NULL); } } void BitcoinCore::restart(QStringList args) { if (execute_restart) { // Only restart 1x, no matter how often a user clicks on a restart-button execute_restart = false; try { qDebug() << __func__ << ": Running Restart in thread"; threadGroup.interrupt_all(); threadGroup.join_all(); PrepareShutdown(); qDebug() << __func__ << ": Shutdown finished"; emit shutdownResult(1); CExplicitNetCleanup::callCleanup(); QProcess::startDetached(QApplication::applicationFilePath(), args); qDebug() << __func__ << ": Restart initiated..."; QApplication::quit(); } catch (std::exception& e) { handleRunawayException(&e); } catch (...) { handleRunawayException(NULL); } } } void BitcoinCore::shutdown() { try { qDebug() << __func__ << ": Running Shutdown in thread"; threadGroup.interrupt_all(); threadGroup.join_all(); Shutdown(); qDebug() << __func__ << ": Shutdown finished"; emit shutdownResult(1); } catch (std::exception& e) { handleRunawayException(&e); } catch (...) { handleRunawayException(NULL); } } BitcoinApplication::BitcoinApplication(int& argc, char** argv) : QApplication(argc, argv), coreThread(0), optionsModel(0), clientModel(0), window(0), pollShutdownTimer(0), #ifdef ENABLE_WALLET paymentServer(0), walletModel(0), #endif returnValue(0) { setQuitOnLastWindowClosed(false); } BitcoinApplication::~BitcoinApplication() { if (coreThread) { qDebug() << __func__ << ": Stopping thread"; emit stopThread(); coreThread->wait(); qDebug() << __func__ << ": Stopped thread"; } delete window; window = 0; #ifdef ENABLE_WALLET delete paymentServer; paymentServer = 0; #endif // Delete Qt-settings if user clicked on "Reset Options" QSettings settings; if (optionsModel && optionsModel->resetSettings) { settings.clear(); settings.sync(); } delete optionsModel; optionsModel = 0; } #ifdef ENABLE_WALLET void BitcoinApplication::createPaymentServer() { paymentServer = new PaymentServer(this); } #endif void BitcoinApplication::createOptionsModel() { optionsModel = new OptionsModel(); } void BitcoinApplication::createWindow(const NetworkStyle* networkStyle) { window = new BitcoinGUI(networkStyle, 0); pollShutdownTimer = new QTimer(window); connect(pollShutdownTimer, SIGNAL(timeout()), window, SLOT(detectShutdown())); pollShutdownTimer->start(200); } void BitcoinApplication::createSplashScreen(const NetworkStyle* networkStyle) { SplashScreen* splash = new SplashScreen(0, networkStyle); // We don't hold a direct pointer to the splash screen after creation, so use // Qt::WA_DeleteOnClose to make sure that the window will be deleted eventually. splash->setAttribute(Qt::WA_DeleteOnClose); splash->show(); connect(this, SIGNAL(splashFinished(QWidget*)), splash, SLOT(slotFinish(QWidget*))); } void BitcoinApplication::startThread() { if (coreThread) return; coreThread = new QThread(this); BitcoinCore* executor = new BitcoinCore(); executor->moveToThread(coreThread); /* communication to and from thread */ connect(executor, SIGNAL(initializeResult(int)), this, SLOT(initializeResult(int))); connect(executor, SIGNAL(shutdownResult(int)), this, SLOT(shutdownResult(int))); connect(executor, SIGNAL(runawayException(QString)), this, SLOT(handleRunawayException(QString))); connect(this, SIGNAL(requestedInitialize()), executor, SLOT(initialize())); connect(this, SIGNAL(requestedShutdown()), executor, SLOT(shutdown())); connect(window, SIGNAL(requestedRestart(QStringList)), executor, SLOT(restart(QStringList))); /* make sure executor object is deleted in its own thread */ connect(this, SIGNAL(stopThread()), executor, SLOT(deleteLater())); connect(this, SIGNAL(stopThread()), coreThread, SLOT(quit())); coreThread->start(); } void BitcoinApplication::requestInitialize() { qDebug() << __func__ << ": Requesting initialize"; startThread(); emit requestedInitialize(); } void BitcoinApplication::requestShutdown() { qDebug() << __func__ << ": Requesting shutdown"; startThread(); window->hide(); window->setClientModel(0); pollShutdownTimer->stop(); #ifdef ENABLE_WALLET window->removeAllWallets(); delete walletModel; walletModel = 0; #endif delete clientModel; clientModel = 0; // Show a simple window indicating shutdown status ShutdownWindow::showShutdownWindow(window); // Request shutdown from core thread emit requestedShutdown(); } void BitcoinApplication::initializeResult(int retval) { qDebug() << __func__ << ": Initialization result: " << retval; // Set exit result: 0 if successful, 1 if failure returnValue = retval ? 0 : 1; if (retval) { #ifdef ENABLE_WALLET PaymentServer::LoadRootCAs(); paymentServer->setOptionsModel(optionsModel); #endif clientModel = new ClientModel(optionsModel); window->setClientModel(clientModel); #ifdef ENABLE_WALLET if (pwalletMain) { walletModel = new WalletModel(pwalletMain, optionsModel); window->addWallet(BitcoinGUI::DEFAULT_WALLET, walletModel); window->setCurrentWallet(BitcoinGUI::DEFAULT_WALLET); connect(walletModel, SIGNAL(coinsSent(CWallet*, SendCoinsRecipient, QByteArray)), paymentServer, SLOT(fetchPaymentACK(CWallet*, const SendCoinsRecipient&, QByteArray))); } #endif // If -min option passed, start window minimized. if (GetBoolArg("-min", false)) { window->showMinimized(); } else { window->show(); } emit splashFinished(window); #ifdef ENABLE_WALLET // Now that initialization/startup is done, process any command-line // IanCoin: URIs or payment requests: connect(paymentServer, SIGNAL(receivedPaymentRequest(SendCoinsRecipient)), window, SLOT(handlePaymentRequest(SendCoinsRecipient))); connect(window, SIGNAL(receivedURI(QString)), paymentServer, SLOT(handleURIOrFile(QString))); connect(paymentServer, SIGNAL(message(QString, QString, unsigned int)), window, SLOT(message(QString, QString, unsigned int))); QTimer::singleShot(100, paymentServer, SLOT(uiReady())); #endif } else { quit(); // Exit main loop } } void BitcoinApplication::shutdownResult(int retval) { qDebug() << __func__ << ": Shutdown result: " << retval; quit(); // Exit main loop after shutdown finished } void BitcoinApplication::handleRunawayException(const QString& message) { QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. IanCoin can no longer continue safely and will quit.") + QString("\n\n") + message); ::exit(1); } WId BitcoinApplication::getMainWinId() const { if (!window) return 0; return window->winId(); } #ifndef BITCOIN_QT_TEST int main(int argc, char* argv[]) { SetupEnvironment(); /// 1. Parse command-line options. These take precedence over anything else. // Command-line options take precedence: ParseParameters(argc, argv); // Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory /// 2. Basic Qt initialization (not dependent on parameters or configuration) #if QT_VERSION < 0x050000 // Internal string conversion is all UTF-8 QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8")); QTextCodec::setCodecForCStrings(QTextCodec::codecForTr()); #endif Q_INIT_RESOURCE(iancoin_locale); Q_INIT_RESOURCE(iancoin); BitcoinApplication app(argc, argv); #if QT_VERSION > 0x050100 // Generate high-dpi pixmaps QApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #endif #if QT_VERSION >= 0x050600 QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #ifdef Q_OS_MAC QApplication::setAttribute(Qt::AA_DontShowIconsInMenus); #endif // Register meta types used for QMetaObject::invokeMethod qRegisterMetaType<bool*>(); // Need to pass name here as CAmount is a typedef (see http://qt-project.org/doc/qt-5/qmetatype.html#qRegisterMetaType) // IMPORTANT if it is no longer a typedef use the normal variant above qRegisterMetaType<CAmount>("CAmount"); /// 3. Application identification // must be set before OptionsModel is initialized or translations are loaded, // as it is used to locate QSettings QApplication::setOrganizationName(QAPP_ORG_NAME); QApplication::setOrganizationDomain(QAPP_ORG_DOMAIN); QApplication::setApplicationName(QAPP_APP_NAME_DEFAULT); GUIUtil::SubstituteFonts(GetLangTerritory()); /// 4. Initialization of translations, so that intro dialog is in user's language // Now that QSettings are accessible, initialize translations QTranslator qtTranslatorBase, qtTranslator, translatorBase, translator; initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator); uiInterface.Translate.connect(Translate); #ifdef Q_OS_MAC #if __clang_major__ < 4 QString s = QSysInfo::kernelVersion(); std::string ver_info = s.toStdString(); // ver_info will be like 17.2.0 for High Sierra. Check if true and exit if build via cross-compile if (ver_info[0] == '1' && ver_info[1] == '7') { QMessageBox::critical(0, "Unsupported", BitcoinGUI::tr("High Sierra not supported with this build") + QString("\n\n")); ::exit(1); } #endif #endif // Show help message immediately after parsing command-line options (for "-lang") and setting locale, // but before showing splash screen. if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) { HelpMessageDialog help(NULL, mapArgs.count("-version")); help.showOrPrint(); return 1; } /// 5. Now that settings and translations are available, ask user for data directory // User language is set up: pick a data directory if (!Intro::pickDataDirectory()) return 0; /// 6. Determine availability of data directory and parse iancoin.conf /// - Do not call GetDataDir(true) before this step finishes if (!boost::filesystem::is_directory(GetDataDir(false))) { QMessageBox::critical(0, QObject::tr("IanCoin Core"), QObject::tr("Error: Specified data directory \"%1\" does not exist.").arg(QString::fromStdString(mapArgs["-datadir"]))); return 1; } try { ReadConfigFile(mapArgs, mapMultiArgs); } catch (std::exception& e) { QMessageBox::critical(0, QObject::tr("IanCoin Core"), QObject::tr("Error: Cannot parse configuration file: %1. Only use key=value syntax.").arg(e.what())); return 0; } /// 7. Determine network (and switch to network specific options) // - Do not call Params() before this step // - Do this after parsing the configuration file, as the network can be switched there // - QSettings() will use the new application name after this, resulting in network-specific settings // - Needs to be done before createOptionsModel // Check for -testnet or -regtest parameter (Params() calls are only valid after this clause) if (!SelectParamsFromCommandLine()) { QMessageBox::critical(0, QObject::tr("IanCoin Core"), QObject::tr("Error: Invalid combination of -regtest and -testnet.")); return 1; } #ifdef ENABLE_WALLET // Parse URIs on command line -- this can affect Params() PaymentServer::ipcParseCommandLine(argc, argv); #endif QScopedPointer<const NetworkStyle> networkStyle(NetworkStyle::instantiate(QString::fromStdString(Params().NetworkIDString()))); assert(!networkStyle.isNull()); // Allow for separate UI settings for testnets QApplication::setApplicationName(networkStyle->getAppName()); // Re-initialize translations after changing application name (language in network-specific settings can be different) initTranslations(qtTranslatorBase, qtTranslator, translatorBase, translator); #ifdef ENABLE_WALLET /// 7a. parse masternode.conf string strErr; if (!masternodeConfig.read(strErr)) { QMessageBox::critical(0, QObject::tr("IanCoin Core"), QObject::tr("Error reading masternode configuration file: %1").arg(strErr.c_str())); return 0; } /// 8. URI IPC sending // - Do this early as we don't want to bother initializing if we are just calling IPC // - Do this *after* setting up the data directory, as the data directory hash is used in the name // of the server. // - Do this after creating app and setting up translations, so errors are // translated properly. if (PaymentServer::ipcSendCommandLine()) exit(0); // Start up the payment server early, too, so impatient users that click on // iancoin: links repeatedly have their payment requests routed to this process: app.createPaymentServer(); #endif /// 9. Main GUI initialization // Install global event filter that makes sure that long tooltips can be word-wrapped app.installEventFilter(new GUIUtil::ToolTipToRichTextFilter(TOOLTIP_WRAP_THRESHOLD, &app)); #if QT_VERSION < 0x050000 // Install qDebug() message handler to route to debug.log qInstallMsgHandler(DebugMessageHandler); #else #if defined(Q_OS_WIN) // Install global event filter for processing Windows session related Windows messages (WM_QUERYENDSESSION and WM_ENDSESSION) qApp->installNativeEventFilter(new WinShutdownMonitor()); #endif // Install qDebug() message handler to route to debug.log qInstallMessageHandler(DebugMessageHandler); #endif // Load GUI settings from QSettings app.createOptionsModel(); // Subscribe to global signals from core uiInterface.InitMessage.connect(InitMessage); if (GetBoolArg("-splash", true) && !GetBoolArg("-min", false)) app.createSplashScreen(networkStyle.data()); try { app.createWindow(networkStyle.data()); app.requestInitialize(); #if defined(Q_OS_WIN) && QT_VERSION >= 0x050000 WinShutdownMonitor::registerShutdownBlockReason(QObject::tr("IanCoin Core didn't yet exit safely..."), (HWND)app.getMainWinId()); #endif app.exec(); app.requestShutdown(); app.exec(); } catch (std::exception& e) { PrintExceptionContinue(&e, "Runaway exception"); app.handleRunawayException(QString::fromStdString(strMiscWarning)); } catch (...) { PrintExceptionContinue(NULL, "Runaway exception"); app.handleRunawayException(QString::fromStdString(strMiscWarning)); } return app.getReturnValue(); } #endif // BITCOIN_QT_TEST
[ "iancoin11@gmail.com" ]
iancoin11@gmail.com
e2f9fb2012df0ca5e163643a6487120fb424e6b1
4a9305839059ae4ed91815ac2bb3c6dd1a6c68c5
/VideoCapture/grabbers/abstractframecapture.h
13ae78ce48216770feef27570a53be34e0753525
[]
no_license
Tags80/Invision
5df38e4509bbd13fbe4c99f7890205354f22b824
9a2a40e8059fcec87310aaefef6c0a61f609fddc
refs/heads/master
2021-01-20T04:29:01.642692
2016-12-30T07:51:02
2016-12-30T07:51:02
76,693,033
0
0
null
null
null
null
UTF-8
C++
false
false
1,824
h
#ifndef ABSTRACTFRAMECAPTURE_H #define ABSTRACTFRAMECAPTURE_H #include <QObject> #include <QRect> #include <QPixmap> #include <QImage> #include <QScreen> #include <QGuiApplication> #include <QPainter> //may move to openglpainter for hw accel #include <QCursor> #include <QPoint> #include <QDateTime> #include <QThread> #include <QTimer> #include <QtMath> #include <QDebug> #ifdef Q_OS_LINUX #include <QtX11Extras/QX11Info> #include <QtX11Extras/qx11info_x11.h> #endif class AbstractFrameCapture : public QObject { Q_OBJECT public: AbstractFrameCapture(QRect * recordingRegion, double fps = 25); ~AbstractFrameCapture(); double getFPS(); virtual QList<double> getAllFPS() = 0; virtual double getPreferredFPS() = 0; void setFPS(double); QRect *getRegion(); void setRegion(QRect *); void setDrawCursor(bool); void setPreviewCount(int); int getFrameCount(); virtual bool startRecording() = 0; virtual bool stopRecording() = 0; virtual bool isAvailable() = 0; virtual QString stringID() = 0; static AbstractFrameCapture* fromStringID(); signals: /// /// \brief QImagePrepped Pass a BGRA8888 QImage to the Encoder, the time of the capture. /// This will allow a simple subtraction to determine the time in the video e.g. time (in ms) = timestamp - starttime. a zero will indicate a constant frame rate /// \param timestamp time since epoch in ms /// void QImagePrepped(QImage &, qint64 timestamp); protected: QPixmap capture; QTimer *timer; QList<double> allFPS; QRect *recordingRegion; bool drawCursor; bool isRecording; double fps; int previewCount; int framesCaptured; //CaptureMode mode; protected slots: virtual void captureFrame() = 0; }; #endif // ABSTRACTFRAMECAPTURE_H
[ "wtangney@iastate.edu" ]
wtangney@iastate.edu
32a77e74776ce999bb461a5eb7db82a49bb73982
90d39aa2f36783b89a17e0687980b1139b6c71ce
/Project Euler/43.cpp
a43c65486db4468be25d1233663fbfc4f57b8728
[]
no_license
nims11/coding
634983b21ad98694ef9badf56ec8dfc950f33539
390d64aff1f0149e740629c64e1d00cd5fb59042
refs/heads/master
2021-03-22T08:15:29.770903
2018-05-28T23:27:37
2018-05-28T23:27:37
247,346,971
4
0
null
null
null
null
UTF-8
C++
false
false
1,246
cpp
/* Nimesh Ghelani (nims11) */ #include<iostream> #include<cstdio> #include<cmath> #include<algorithm> #include<map> #include<string> #include<vector> #include<queue> #include<cstring> #include<cstdlib> #include<cassert> #include<cmath> #include<stack> #include<set> #include<utility> #define in_T int t;for(scanf("%d",&t);t--;) #define in_I(a) scanf("%d",&a) #define in_F(a) scanf("%lf",&a) #define in_L(a) scanf("%lld",&a) #define in_S(a) scanf("%s",a) #define newline printf("\n") #define MAX(a,b) a>b?a:b #define MIN(a,b) a<b?a:b #define SWAP(a,b) {int tmp=a;a=b;b=tmp;} #define P_I(a) printf("%d",a) using namespace std; vector<int> p = {1, 2, 3, 5, 7, 11, 13, 17}; bool isFoo(vector<int> &perm){ for(int i = 1;i<p.size();i++){ int x = 0; for(int j = i;j<i+3;j++) x = x*10 + perm[j]; if(x%p[i] != 0) return false; } return true; } int main() { long long res = 0; vector<int> perm = {0,1,2,3,4,5,6,7,8,9}; do{ if(perm[0] == 0) continue; long long p = 0; for(int i:perm){ p = p*10+i; } if(isFoo(perm)) res += p; }while(next_permutation(perm.begin(), perm.end())); cout<<res<<endl; }
[ "nimeshghelani@gmail.com" ]
nimeshghelani@gmail.com
420b40bd6205c360a1dc5e6bc14a84805297b2ad
70238f403826253b36323e0c4700795788c61187
/thirdparty/iPlug2/WDL/win7filedialog.h
636916c40599b33864f12973580ad31c85039eab
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
tommitytom/RetroPlug
d4d1c9d671cec7373bf3e27030bc0d29b46191be
40c6f01352d50cb31b1d4f31b7cc17fd2cf47ce8
refs/heads/main
2023-06-30T00:28:58.282288
2022-11-01T02:03:57
2022-11-01T02:03:57
185,368,230
262
11
MIT
2021-08-15T04:15:59
2019-05-07T09:23:48
C++
UTF-8
C++
false
false
72,152
h
#ifndef _WIN7FILEDIALOG_H #define _WIN7FILEDIALOG_H #ifdef _WIN32 #include <comdef.h> #include "wdlstring.h" #ifndef __RPC__in_opt //defines for msvc6 #define __RPC__in_opt #define __RPC__in #define __RPC__out #define __RPC__deref_out_opt #define __RPC__deref_out_opt_string #define __RPC__in_ecount_full(x) #define __RPC__out_ecount_part(x,y) #ifndef __in #define __in #endif typedef ULONG SFGAOF; typedef /* [v1_enum] */ enum tagFDE_OVERWRITE_RESPONSE { FDEOR_DEFAULT = 0, FDEOR_ACCEPT = 0x1, FDEOR_REFUSE = 0x2 } FDE_OVERWRITE_RESPONSE; typedef /* [v1_enum] */ enum tagFDE_SHAREVIOLATION_RESPONSE { FDESVR_DEFAULT = 0, FDESVR_ACCEPT = 0x1, FDESVR_REFUSE = 0x2 } FDE_SHAREVIOLATION_RESPONSE; typedef /* [v1_enum] */ enum tagFDAP { FDAP_BOTTOM = 0, FDAP_TOP = 0x1 } FDAP; typedef struct _COMDLG_FILTERSPEC { LPCWSTR pszName; LPCWSTR pszSpec; } COMDLG_FILTERSPEC; typedef enum tagSHCONTF { SHCONTF_FOLDERS = 0x20, SHCONTF_NONFOLDERS = 0x40, SHCONTF_INCLUDEHIDDEN = 0x80, SHCONTF_INIT_ON_FIRST_NEXT = 0x100, SHCONTF_NETPRINTERSRCH = 0x200, SHCONTF_SHAREABLE = 0x400, SHCONTF_STORAGE = 0x800, SHCONTF_FASTITEMS = 0x2000, SHCONTF_FLATLIST = 0x4000, SHCONTF_ENABLE_ASYNC = 0x8000 } SHCONT; typedef DWORD SHCONTF; enum tagGETPROPERTYSTOREFLAGS { GPS_DEFAULT = 0, GPS_HANDLERPROPERTIESONLY = 0x1, GPS_READWRITE = 0x2, GPS_TEMPORARY = 0x4, GPS_FASTPROPERTIESONLY = 0x8, GPS_OPENSLOWITEM = 0x10, GPS_DELAYCREATION = 0x20, GPS_BESTEFFORT = 0x40, GPS_MASK_VALID = 0x7f } ; typedef int GETPROPERTYSTOREFLAGS; typedef /* [v1_enum] */ enum tagCDCONTROLSTATE { CDCS_INACTIVE = 0, CDCS_ENABLED = 0x1, CDCS_VISIBLE = 0x2 } CDCONTROLSTATE; typedef DWORD CDCONTROLSTATEF; typedef void *REFPROPERTYKEY; class IPropertyStore; class IPropertyDescriptionList; class IFileOperationProgressSink; //msvc6 #else #if defined(_MSC_VER) && _MSC_VER >= 1600 #include <shobjidl.h> #endif #endif #ifndef __IFileDialog_FWD_DEFINED__ #define __IFileDialog_FWD_DEFINED__ typedef interface IFileDialog IFileDialog; #endif /* __IFileDialog_FWD_DEFINED__ */ #ifndef __IShellItem_INTERFACE_DEFINED__ #define __IShellItem_INTERFACE_DEFINED__ /* interface IShellItem */ /* [unique][object][uuid][helpstring] */ typedef /* [v1_enum] */ enum tagSIGDN { SIGDN_NORMALDISPLAY = 0, SIGDN_PARENTRELATIVEPARSING = ( int )0x80018001, SIGDN_DESKTOPABSOLUTEPARSING = ( int )0x80028000, SIGDN_PARENTRELATIVEEDITING = ( int )0x80031001, SIGDN_DESKTOPABSOLUTEEDITING = ( int )0x8004c000, SIGDN_FILESYSPATH = ( int )0x80058000, SIGDN_URL = ( int )0x80068000, SIGDN_PARENTRELATIVEFORADDRESSBAR = ( int )0x8007c001, SIGDN_PARENTRELATIVE = ( int )0x80080001 } SIGDN; /* [v1_enum] */ enum tagSHELLITEMCOMPAREHINTF { SICHINT_DISPLAY = 0, SICHINT_ALLFIELDS = ( int )0x80000000, SICHINT_CANONICAL = 0x10000000 } ; typedef DWORD SICHINTF; EXTERN_C const IID IID_IShellItem; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("43826d1e-e718-42ee-bc55-a1e261c37bfe") IShellItem : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BindToHandler( /* [unique][in] */ __RPC__in_opt IBindCtx *pbc, /* [in] */ __RPC__in REFGUID bhid, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0; virtual HRESULT STDMETHODCALLTYPE GetParent( /* [out] */ __RPC__deref_out_opt IShellItem **ppsi) = 0; virtual HRESULT STDMETHODCALLTYPE GetDisplayName( /* [in] */ SIGDN sigdnName, /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *ppszName) = 0; virtual HRESULT STDMETHODCALLTYPE GetAttributes( /* [in] */ SFGAOF sfgaoMask, /* [out] */ __RPC__out SFGAOF *psfgaoAttribs) = 0; virtual HRESULT STDMETHODCALLTYPE Compare( /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ SICHINTF hint, /* [out] */ __RPC__out int *piOrder) = 0; }; #else /* C style interface */ typedef struct IShellItemVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IShellItem * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IShellItem * This); ULONG ( STDMETHODCALLTYPE *Release )( IShellItem * This); HRESULT ( STDMETHODCALLTYPE *BindToHandler )( IShellItem * This, /* [unique][in] */ __RPC__in_opt IBindCtx *pbc, /* [in] */ __RPC__in REFGUID bhid, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv); HRESULT ( STDMETHODCALLTYPE *GetParent )( IShellItem * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *GetDisplayName )( IShellItem * This, /* [in] */ SIGDN sigdnName, /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *ppszName); HRESULT ( STDMETHODCALLTYPE *GetAttributes )( IShellItem * This, /* [in] */ SFGAOF sfgaoMask, /* [out] */ __RPC__out SFGAOF *psfgaoAttribs); HRESULT ( STDMETHODCALLTYPE *Compare )( IShellItem * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ SICHINTF hint, /* [out] */ __RPC__out int *piOrder); END_INTERFACE } IShellItemVtbl; interface IShellItem { CONST_VTBL struct IShellItemVtbl *lpVtbl; }; #ifdef COBJMACROS #define IShellItem_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IShellItem_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IShellItem_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IShellItem_BindToHandler(This,pbc,bhid,riid,ppv) \ ( (This)->lpVtbl -> BindToHandler(This,pbc,bhid,riid,ppv) ) #define IShellItem_GetParent(This,ppsi) \ ( (This)->lpVtbl -> GetParent(This,ppsi) ) #define IShellItem_GetDisplayName(This,sigdnName,ppszName) \ ( (This)->lpVtbl -> GetDisplayName(This,sigdnName,ppszName) ) #define IShellItem_GetAttributes(This,sfgaoMask,psfgaoAttribs) \ ( (This)->lpVtbl -> GetAttributes(This,sfgaoMask,psfgaoAttribs) ) #define IShellItem_Compare(This,psi,hint,piOrder) \ ( (This)->lpVtbl -> Compare(This,psi,hint,piOrder) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IShellItem_INTERFACE_DEFINED__ */ #ifndef __IFileDialogEvents_INTERFACE_DEFINED__ #define __IFileDialogEvents_INTERFACE_DEFINED__ /* interface IFileDialogEvents */ /* [unique][object][uuid] */ EXTERN_C const IID IID_IFileDialogEvents; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("973510db-7d7f-452b-8975-74a85828d354") IFileDialogEvents : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE OnFileOk( /* [in] */ __RPC__in_opt IFileDialog *pfd) = 0; virtual HRESULT STDMETHODCALLTYPE OnFolderChanging( /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psiFolder) = 0; virtual HRESULT STDMETHODCALLTYPE OnFolderChange( /* [in] */ __RPC__in_opt IFileDialog *pfd) = 0; virtual HRESULT STDMETHODCALLTYPE OnSelectionChange( /* [in] */ __RPC__in_opt IFileDialog *pfd) = 0; virtual HRESULT STDMETHODCALLTYPE OnShareViolation( /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out FDE_SHAREVIOLATION_RESPONSE *pResponse) = 0; virtual HRESULT STDMETHODCALLTYPE OnTypeChange( /* [in] */ __RPC__in_opt IFileDialog *pfd) = 0; virtual HRESULT STDMETHODCALLTYPE OnOverwrite( /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out FDE_OVERWRITE_RESPONSE *pResponse) = 0; }; #else /* C style interface */ typedef struct IFileDialogEventsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IFileDialogEvents * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IFileDialogEvents * This); ULONG ( STDMETHODCALLTYPE *Release )( IFileDialogEvents * This); HRESULT ( STDMETHODCALLTYPE *OnFileOk )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd); HRESULT ( STDMETHODCALLTYPE *OnFolderChanging )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psiFolder); HRESULT ( STDMETHODCALLTYPE *OnFolderChange )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd); HRESULT ( STDMETHODCALLTYPE *OnSelectionChange )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd); HRESULT ( STDMETHODCALLTYPE *OnShareViolation )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out FDE_SHAREVIOLATION_RESPONSE *pResponse); HRESULT ( STDMETHODCALLTYPE *OnTypeChange )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd); HRESULT ( STDMETHODCALLTYPE *OnOverwrite )( IFileDialogEvents * This, /* [in] */ __RPC__in_opt IFileDialog *pfd, /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out FDE_OVERWRITE_RESPONSE *pResponse); END_INTERFACE } IFileDialogEventsVtbl; interface IFileDialogEvents { CONST_VTBL struct IFileDialogEventsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IFileDialogEvents_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IFileDialogEvents_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IFileDialogEvents_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IFileDialogEvents_OnFileOk(This,pfd) \ ( (This)->lpVtbl -> OnFileOk(This,pfd) ) #define IFileDialogEvents_OnFolderChanging(This,pfd,psiFolder) \ ( (This)->lpVtbl -> OnFolderChanging(This,pfd,psiFolder) ) #define IFileDialogEvents_OnFolderChange(This,pfd) \ ( (This)->lpVtbl -> OnFolderChange(This,pfd) ) #define IFileDialogEvents_OnSelectionChange(This,pfd) \ ( (This)->lpVtbl -> OnSelectionChange(This,pfd) ) #define IFileDialogEvents_OnShareViolation(This,pfd,psi,pResponse) \ ( (This)->lpVtbl -> OnShareViolation(This,pfd,psi,pResponse) ) #define IFileDialogEvents_OnTypeChange(This,pfd) \ ( (This)->lpVtbl -> OnTypeChange(This,pfd) ) #define IFileDialogEvents_OnOverwrite(This,pfd,psi,pResponse) \ ( (This)->lpVtbl -> OnOverwrite(This,pfd,psi,pResponse) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IFileDialogEvents_INTERFACE_DEFINED__ */ #ifndef __IModalWindow_INTERFACE_DEFINED__ #define __IModalWindow_INTERFACE_DEFINED__ /* interface IModalWindow */ /* [unique][object][uuid][helpstring] */ EXTERN_C const IID IID_IModalWindow; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("b4db1657-70d7-485e-8e3e-6fcb5a5c1802") IModalWindow : public IUnknown { public: virtual /* [local] */ HRESULT STDMETHODCALLTYPE Show( /* [in] */ __in HWND hwndParent) = 0; }; #else /* C style interface */ typedef struct IModalWindowVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IModalWindow * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IModalWindow * This); ULONG ( STDMETHODCALLTYPE *Release )( IModalWindow * This); /* [local] */ HRESULT ( STDMETHODCALLTYPE *Show )( IModalWindow * This, /* [in] */ __in HWND hwndParent); END_INTERFACE } IModalWindowVtbl; interface IModalWindow { CONST_VTBL struct IModalWindowVtbl *lpVtbl; }; #ifdef COBJMACROS #define IModalWindow_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IModalWindow_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IModalWindow_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IModalWindow_Show(This,hwndParent) \ ( (This)->lpVtbl -> Show(This,hwndParent) ) #endif /* COBJMACROS */ #endif /* C style interface */ /* [call_as] */ HRESULT STDMETHODCALLTYPE IModalWindow_RemoteShow_Proxy( IModalWindow * This, /* [in] */ __RPC__in HWND hwndParent); void __RPC_STUB IModalWindow_RemoteShow_Stub( IRpcStubBuffer *This, IRpcChannelBuffer *_pRpcChannelBuffer, PRPC_MESSAGE _pRpcMessage, DWORD *_pdwStubPhase); #endif /* __IModalWindow_INTERFACE_DEFINED__ */ #ifndef __IShellItemFilter_INTERFACE_DEFINED__ #define __IShellItemFilter_INTERFACE_DEFINED__ /* interface IShellItemFilter */ /* [unique][uuid][object] */ EXTERN_C const IID IID_IShellItemFilter; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("2659B475-EEB8-48b7-8F07-B378810F48CF") IShellItemFilter : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE IncludeItem( /* [in] */ __RPC__in_opt IShellItem *psi) = 0; virtual HRESULT STDMETHODCALLTYPE GetEnumFlagsForItem( /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out SHCONTF *pgrfFlags) = 0; }; #else /* C style interface */ typedef struct IShellItemFilterVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IShellItemFilter * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IShellItemFilter * This); ULONG ( STDMETHODCALLTYPE *Release )( IShellItemFilter * This); HRESULT ( STDMETHODCALLTYPE *IncludeItem )( IShellItemFilter * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *GetEnumFlagsForItem )( IShellItemFilter * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [out] */ __RPC__out SHCONTF *pgrfFlags); END_INTERFACE } IShellItemFilterVtbl; interface IShellItemFilter { CONST_VTBL struct IShellItemFilterVtbl *lpVtbl; }; #ifdef COBJMACROS #define IShellItemFilter_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IShellItemFilter_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IShellItemFilter_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IShellItemFilter_IncludeItem(This,psi) \ ( (This)->lpVtbl -> IncludeItem(This,psi) ) #define IShellItemFilter_GetEnumFlagsForItem(This,psi,pgrfFlags) \ ( (This)->lpVtbl -> GetEnumFlagsForItem(This,psi,pgrfFlags) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IShellItemFilter_INTERFACE_DEFINED__ */ #ifndef __IFileDialog_INTERFACE_DEFINED__ #define __IFileDialog_INTERFACE_DEFINED__ /* interface IFileDialog */ /* [unique][object][uuid] */ enum tagFILEOPENDIALOGOPTIONS { FOS_OVERWRITEPROMPT = 0x2, FOS_STRICTFILETYPES = 0x4, FOS_NOCHANGEDIR = 0x8, FOS_PICKFOLDERS = 0x20, FOS_FORCEFILESYSTEM = 0x40, FOS_ALLNONSTORAGEITEMS = 0x80, FOS_NOVALIDATE = 0x100, FOS_ALLOWMULTISELECT = 0x200, FOS_PATHMUSTEXIST = 0x800, FOS_FILEMUSTEXIST = 0x1000, FOS_CREATEPROMPT = 0x2000, FOS_SHAREAWARE = 0x4000, FOS_NOREADONLYRETURN = 0x8000, FOS_NOTESTFILECREATE = 0x10000, FOS_HIDEMRUPLACES = 0x20000, FOS_HIDEPINNEDPLACES = 0x40000, FOS_NODEREFERENCELINKS = 0x100000, FOS_DONTADDTORECENT = 0x2000000, FOS_FORCESHOWHIDDEN = 0x10000000, FOS_DEFAULTNOMINIMODE = 0x20000000, FOS_FORCEPREVIEWPANEON = 0x40000000 } ; EXTERN_C const IID IID_IFileDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("42f85136-db7e-439c-85f1-e4075d135fc8") IFileDialog : public IModalWindow { public: virtual HRESULT STDMETHODCALLTYPE SetFileTypes( /* [in] */ UINT cFileTypes, /* [size_is][in] */ __RPC__in_ecount_full(cFileTypes) const COMDLG_FILTERSPEC *rgFilterSpec) = 0; virtual HRESULT STDMETHODCALLTYPE SetFileTypeIndex( /* [in] */ UINT iFileType) = 0; virtual HRESULT STDMETHODCALLTYPE GetFileTypeIndex( /* [out] */ __RPC__out UINT *piFileType) = 0; virtual HRESULT STDMETHODCALLTYPE Advise( /* [in] */ __RPC__in_opt IFileDialogEvents *pfde, /* [out] */ __RPC__out DWORD *pdwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE Unadvise( /* [in] */ DWORD dwCookie) = 0; virtual HRESULT STDMETHODCALLTYPE SetOptions( /* [in] */ DWORD fos) = 0; virtual HRESULT STDMETHODCALLTYPE GetOptions( /* [out] */ __RPC__out DWORD *pfos) = 0; virtual HRESULT STDMETHODCALLTYPE SetDefaultFolder( /* [in] */ __RPC__in_opt IShellItem *psi) = 0; virtual HRESULT STDMETHODCALLTYPE SetFolder( /* [in] */ __RPC__in_opt IShellItem *psi) = 0; virtual HRESULT STDMETHODCALLTYPE GetFolder( /* [out] */ __RPC__deref_out_opt IShellItem **ppsi) = 0; virtual HRESULT STDMETHODCALLTYPE GetCurrentSelection( /* [out] */ __RPC__deref_out_opt IShellItem **ppsi) = 0; virtual HRESULT STDMETHODCALLTYPE SetFileName( /* [string][in] */ __RPC__in LPCWSTR pszName) = 0; virtual HRESULT STDMETHODCALLTYPE GetFileName( /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *pszName) = 0; virtual HRESULT STDMETHODCALLTYPE SetTitle( /* [string][in] */ __RPC__in LPCWSTR pszTitle) = 0; virtual HRESULT STDMETHODCALLTYPE SetOkButtonLabel( /* [string][in] */ __RPC__in LPCWSTR pszText) = 0; virtual HRESULT STDMETHODCALLTYPE SetFileNameLabel( /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE GetResult( /* [out] */ __RPC__deref_out_opt IShellItem **ppsi) = 0; virtual HRESULT STDMETHODCALLTYPE AddPlace( /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ FDAP fdap) = 0; virtual HRESULT STDMETHODCALLTYPE SetDefaultExtension( /* [string][in] */ __RPC__in LPCWSTR pszDefaultExtension) = 0; virtual HRESULT STDMETHODCALLTYPE Close( /* [in] */ HRESULT hr) = 0; virtual HRESULT STDMETHODCALLTYPE SetClientGuid( /* [in] */ __RPC__in REFGUID guid) = 0; virtual HRESULT STDMETHODCALLTYPE ClearClientData( void) = 0; virtual HRESULT STDMETHODCALLTYPE SetFilter( /* [in] */ __RPC__in_opt IShellItemFilter *pFilter) = 0; }; #else /* C style interface */ typedef struct IFileDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IFileDialog * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IFileDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( IFileDialog * This); /* [local] */ HRESULT ( STDMETHODCALLTYPE *Show )( IFileDialog * This, /* [in] */ __in HWND hwndParent); HRESULT ( STDMETHODCALLTYPE *SetFileTypes )( IFileDialog * This, /* [in] */ UINT cFileTypes, /* [size_is][in] */ __RPC__in_ecount_full(cFileTypes) const COMDLG_FILTERSPEC *rgFilterSpec); HRESULT ( STDMETHODCALLTYPE *SetFileTypeIndex )( IFileDialog * This, /* [in] */ UINT iFileType); HRESULT ( STDMETHODCALLTYPE *GetFileTypeIndex )( IFileDialog * This, /* [out] */ __RPC__out UINT *piFileType); HRESULT ( STDMETHODCALLTYPE *Advise )( IFileDialog * This, /* [in] */ __RPC__in_opt IFileDialogEvents *pfde, /* [out] */ __RPC__out DWORD *pdwCookie); HRESULT ( STDMETHODCALLTYPE *Unadvise )( IFileDialog * This, /* [in] */ DWORD dwCookie); HRESULT ( STDMETHODCALLTYPE *SetOptions )( IFileDialog * This, /* [in] */ DWORD fos); HRESULT ( STDMETHODCALLTYPE *GetOptions )( IFileDialog * This, /* [out] */ __RPC__out DWORD *pfos); HRESULT ( STDMETHODCALLTYPE *SetDefaultFolder )( IFileDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *SetFolder )( IFileDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *GetFolder )( IFileDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *GetCurrentSelection )( IFileDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *SetFileName )( IFileDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszName); HRESULT ( STDMETHODCALLTYPE *GetFileName )( IFileDialog * This, /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *pszName); HRESULT ( STDMETHODCALLTYPE *SetTitle )( IFileDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszTitle); HRESULT ( STDMETHODCALLTYPE *SetOkButtonLabel )( IFileDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *SetFileNameLabel )( IFileDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *GetResult )( IFileDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *AddPlace )( IFileDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ FDAP fdap); HRESULT ( STDMETHODCALLTYPE *SetDefaultExtension )( IFileDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszDefaultExtension); HRESULT ( STDMETHODCALLTYPE *Close )( IFileDialog * This, /* [in] */ HRESULT hr); HRESULT ( STDMETHODCALLTYPE *SetClientGuid )( IFileDialog * This, /* [in] */ __RPC__in REFGUID guid); HRESULT ( STDMETHODCALLTYPE *ClearClientData )( IFileDialog * This); HRESULT ( STDMETHODCALLTYPE *SetFilter )( IFileDialog * This, /* [in] */ __RPC__in_opt IShellItemFilter *pFilter); END_INTERFACE } IFileDialogVtbl; interface IFileDialog { CONST_VTBL struct IFileDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IFileDialog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IFileDialog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IFileDialog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IFileDialog_Show(This,hwndParent) \ ( (This)->lpVtbl -> Show(This,hwndParent) ) #define IFileDialog_SetFileTypes(This,cFileTypes,rgFilterSpec) \ ( (This)->lpVtbl -> SetFileTypes(This,cFileTypes,rgFilterSpec) ) #define IFileDialog_SetFileTypeIndex(This,iFileType) \ ( (This)->lpVtbl -> SetFileTypeIndex(This,iFileType) ) #define IFileDialog_GetFileTypeIndex(This,piFileType) \ ( (This)->lpVtbl -> GetFileTypeIndex(This,piFileType) ) #define IFileDialog_Advise(This,pfde,pdwCookie) \ ( (This)->lpVtbl -> Advise(This,pfde,pdwCookie) ) #define IFileDialog_Unadvise(This,dwCookie) \ ( (This)->lpVtbl -> Unadvise(This,dwCookie) ) #define IFileDialog_SetOptions(This,fos) \ ( (This)->lpVtbl -> SetOptions(This,fos) ) #define IFileDialog_GetOptions(This,pfos) \ ( (This)->lpVtbl -> GetOptions(This,pfos) ) #define IFileDialog_SetDefaultFolder(This,psi) \ ( (This)->lpVtbl -> SetDefaultFolder(This,psi) ) #define IFileDialog_SetFolder(This,psi) \ ( (This)->lpVtbl -> SetFolder(This,psi) ) #define IFileDialog_GetFolder(This,ppsi) \ ( (This)->lpVtbl -> GetFolder(This,ppsi) ) #define IFileDialog_GetCurrentSelection(This,ppsi) \ ( (This)->lpVtbl -> GetCurrentSelection(This,ppsi) ) #define IFileDialog_SetFileName(This,pszName) \ ( (This)->lpVtbl -> SetFileName(This,pszName) ) #define IFileDialog_GetFileName(This,pszName) \ ( (This)->lpVtbl -> GetFileName(This,pszName) ) #define IFileDialog_SetTitle(This,pszTitle) \ ( (This)->lpVtbl -> SetTitle(This,pszTitle) ) #define IFileDialog_SetOkButtonLabel(This,pszText) \ ( (This)->lpVtbl -> SetOkButtonLabel(This,pszText) ) #define IFileDialog_SetFileNameLabel(This,pszLabel) \ ( (This)->lpVtbl -> SetFileNameLabel(This,pszLabel) ) #define IFileDialog_GetResult(This,ppsi) \ ( (This)->lpVtbl -> GetResult(This,ppsi) ) #define IFileDialog_AddPlace(This,psi,fdap) \ ( (This)->lpVtbl -> AddPlace(This,psi,fdap) ) #define IFileDialog_SetDefaultExtension(This,pszDefaultExtension) \ ( (This)->lpVtbl -> SetDefaultExtension(This,pszDefaultExtension) ) #define IFileDialog_Close(This,hr) \ ( (This)->lpVtbl -> Close(This,hr) ) #define IFileDialog_SetClientGuid(This,guid) \ ( (This)->lpVtbl -> SetClientGuid(This,guid) ) #define IFileDialog_ClearClientData(This) \ ( (This)->lpVtbl -> ClearClientData(This) ) #define IFileDialog_SetFilter(This,pFilter) \ ( (This)->lpVtbl -> SetFilter(This,pFilter) ) #endif /* COBJMACROS */ #endif /* C style interface */ #ifndef __IEnumShellItems_INTERFACE_DEFINED__ #define __IEnumShellItems_INTERFACE_DEFINED__ /* interface IEnumShellItems */ /* [unique][object][uuid][helpstring] */ EXTERN_C const IID IID_IEnumShellItems; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("70629033-e363-4a28-a567-0db78006e6d7") IEnumShellItems : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE Next( /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IShellItem **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched) = 0; virtual HRESULT STDMETHODCALLTYPE Skip( /* [in] */ ULONG celt) = 0; virtual HRESULT STDMETHODCALLTYPE Reset( void) = 0; virtual HRESULT STDMETHODCALLTYPE Clone( /* [out] */ __RPC__deref_out_opt IEnumShellItems **ppenum) = 0; }; #else /* C style interface */ typedef struct IEnumShellItemsVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IEnumShellItems * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IEnumShellItems * This); ULONG ( STDMETHODCALLTYPE *Release )( IEnumShellItems * This); HRESULT ( STDMETHODCALLTYPE *Next )( IEnumShellItems * This, /* [in] */ ULONG celt, /* [length_is][size_is][out] */ __RPC__out_ecount_part(celt, *pceltFetched) IShellItem **rgelt, /* [out] */ __RPC__out ULONG *pceltFetched); HRESULT ( STDMETHODCALLTYPE *Skip )( IEnumShellItems * This, /* [in] */ ULONG celt); HRESULT ( STDMETHODCALLTYPE *Reset )( IEnumShellItems * This); HRESULT ( STDMETHODCALLTYPE *Clone )( IEnumShellItems * This, /* [out] */ __RPC__deref_out_opt IEnumShellItems **ppenum); END_INTERFACE } IEnumShellItemsVtbl; interface IEnumShellItems { CONST_VTBL struct IEnumShellItemsVtbl *lpVtbl; }; #ifdef COBJMACROS #define IEnumShellItems_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IEnumShellItems_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IEnumShellItems_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IEnumShellItems_Next(This,celt,rgelt,pceltFetched) \ ( (This)->lpVtbl -> Next(This,celt,rgelt,pceltFetched) ) #define IEnumShellItems_Skip(This,celt) \ ( (This)->lpVtbl -> Skip(This,celt) ) #define IEnumShellItems_Reset(This) \ ( (This)->lpVtbl -> Reset(This) ) #define IEnumShellItems_Clone(This,ppenum) \ ( (This)->lpVtbl -> Clone(This,ppenum) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IEnumShellItems_INTERFACE_DEFINED__ */ #ifndef __IShellItemArray_INTERFACE_DEFINED__ #define __IShellItemArray_INTERFACE_DEFINED__ /* interface IShellItemArray */ /* [unique][object][uuid][helpstring] */ typedef /* [v1_enum] */ enum tagSIATTRIBFLAGS { SIATTRIBFLAGS_AND = 0x1, SIATTRIBFLAGS_OR = 0x2, SIATTRIBFLAGS_APPCOMPAT = 0x3, SIATTRIBFLAGS_MASK = 0x3 } SIATTRIBFLAGS; EXTERN_C const IID IID_IShellItemArray; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("b63ea76d-1f85-456f-a19c-48159efa858b") IShellItemArray : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE BindToHandler( /* [unique][in] */ __RPC__in_opt IBindCtx *pbc, /* [in] */ __RPC__in REFGUID rbhid, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvOut) = 0; virtual HRESULT STDMETHODCALLTYPE GetPropertyStore( /* [in] */ GETPROPERTYSTOREFLAGS flags, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0; virtual HRESULT STDMETHODCALLTYPE GetPropertyDescriptionList( /* [in] */ __RPC__in REFPROPERTYKEY keyType, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv) = 0; virtual HRESULT STDMETHODCALLTYPE GetAttributes( /* [in] */ SIATTRIBFLAGS dwAttribFlags, /* [in] */ SFGAOF sfgaoMask, /* [out] */ __RPC__out SFGAOF *psfgaoAttribs) = 0; virtual HRESULT STDMETHODCALLTYPE GetCount( /* [out] */ __RPC__out DWORD *pdwNumItems) = 0; virtual HRESULT STDMETHODCALLTYPE GetItemAt( /* [in] */ DWORD dwIndex, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi) = 0; virtual HRESULT STDMETHODCALLTYPE EnumItems( /* [out] */ __RPC__deref_out_opt IEnumShellItems **ppenumShellItems) = 0; }; #else /* C style interface */ typedef struct IShellItemArrayVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IShellItemArray * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IShellItemArray * This); ULONG ( STDMETHODCALLTYPE *Release )( IShellItemArray * This); HRESULT ( STDMETHODCALLTYPE *BindToHandler )( IShellItemArray * This, /* [unique][in] */ __RPC__in_opt IBindCtx *pbc, /* [in] */ __RPC__in REFGUID rbhid, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppvOut); HRESULT ( STDMETHODCALLTYPE *GetPropertyStore )( IShellItemArray * This, /* [in] */ GETPROPERTYSTOREFLAGS flags, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv); HRESULT ( STDMETHODCALLTYPE *GetPropertyDescriptionList )( IShellItemArray * This, /* [in] */ __RPC__in REFPROPERTYKEY keyType, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out_opt void **ppv); HRESULT ( STDMETHODCALLTYPE *GetAttributes )( IShellItemArray * This, /* [in] */ SIATTRIBFLAGS dwAttribFlags, /* [in] */ SFGAOF sfgaoMask, /* [out] */ __RPC__out SFGAOF *psfgaoAttribs); HRESULT ( STDMETHODCALLTYPE *GetCount )( IShellItemArray * This, /* [out] */ __RPC__out DWORD *pdwNumItems); HRESULT ( STDMETHODCALLTYPE *GetItemAt )( IShellItemArray * This, /* [in] */ DWORD dwIndex, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *EnumItems )( IShellItemArray * This, /* [out] */ __RPC__deref_out_opt IEnumShellItems **ppenumShellItems); END_INTERFACE } IShellItemArrayVtbl; interface IShellItemArray { CONST_VTBL struct IShellItemArrayVtbl *lpVtbl; }; #ifdef COBJMACROS #define IShellItemArray_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IShellItemArray_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IShellItemArray_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IShellItemArray_BindToHandler(This,pbc,rbhid,riid,ppvOut) \ ( (This)->lpVtbl -> BindToHandler(This,pbc,rbhid,riid,ppvOut) ) #define IShellItemArray_GetPropertyStore(This,flags,riid,ppv) \ ( (This)->lpVtbl -> GetPropertyStore(This,flags,riid,ppv) ) #define IShellItemArray_GetPropertyDescriptionList(This,keyType,riid,ppv) \ ( (This)->lpVtbl -> GetPropertyDescriptionList(This,keyType,riid,ppv) ) #define IShellItemArray_GetAttributes(This,dwAttribFlags,sfgaoMask,psfgaoAttribs) \ ( (This)->lpVtbl -> GetAttributes(This,dwAttribFlags,sfgaoMask,psfgaoAttribs) ) #define IShellItemArray_GetCount(This,pdwNumItems) \ ( (This)->lpVtbl -> GetCount(This,pdwNumItems) ) #define IShellItemArray_GetItemAt(This,dwIndex,ppsi) \ ( (This)->lpVtbl -> GetItemAt(This,dwIndex,ppsi) ) #define IShellItemArray_EnumItems(This,ppenumShellItems) \ ( (This)->lpVtbl -> EnumItems(This,ppenumShellItems) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IShellItemArray_INTERFACE_DEFINED__ */ #endif /* __IFileDialog_INTERFACE_DEFINED__ */ #ifndef __IFileOpenDialog_INTERFACE_DEFINED__ #define __IFileOpenDialog_INTERFACE_DEFINED__ /* interface IFileOpenDialog */ /* [unique][object][uuid] */ EXTERN_C const IID IID_IFileOpenDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("d57c7288-d4ad-4768-be02-9d969532d960") IFileOpenDialog : public IFileDialog { public: virtual HRESULT STDMETHODCALLTYPE GetResults( /* [out] */ __RPC__deref_out_opt IShellItemArray **ppenum) = 0; virtual HRESULT STDMETHODCALLTYPE GetSelectedItems( /* [out] */ __RPC__deref_out_opt IShellItemArray **ppsai) = 0; }; #else /* C style interface */ typedef struct IFileOpenDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IFileOpenDialog * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IFileOpenDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( IFileOpenDialog * This); /* [local] */ HRESULT ( STDMETHODCALLTYPE *Show )( IFileOpenDialog * This, /* [in] */ __in HWND hwndParent); HRESULT ( STDMETHODCALLTYPE *SetFileTypes )( IFileOpenDialog * This, /* [in] */ UINT cFileTypes, /* [size_is][in] */ __RPC__in_ecount_full(cFileTypes) const COMDLG_FILTERSPEC *rgFilterSpec); HRESULT ( STDMETHODCALLTYPE *SetFileTypeIndex )( IFileOpenDialog * This, /* [in] */ UINT iFileType); HRESULT ( STDMETHODCALLTYPE *GetFileTypeIndex )( IFileOpenDialog * This, /* [out] */ __RPC__out UINT *piFileType); HRESULT ( STDMETHODCALLTYPE *Advise )( IFileOpenDialog * This, /* [in] */ __RPC__in_opt IFileDialogEvents *pfde, /* [out] */ __RPC__out DWORD *pdwCookie); HRESULT ( STDMETHODCALLTYPE *Unadvise )( IFileOpenDialog * This, /* [in] */ DWORD dwCookie); HRESULT ( STDMETHODCALLTYPE *SetOptions )( IFileOpenDialog * This, /* [in] */ DWORD fos); HRESULT ( STDMETHODCALLTYPE *GetOptions )( IFileOpenDialog * This, /* [out] */ __RPC__out DWORD *pfos); HRESULT ( STDMETHODCALLTYPE *SetDefaultFolder )( IFileOpenDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *SetFolder )( IFileOpenDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *GetFolder )( IFileOpenDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *GetCurrentSelection )( IFileOpenDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *SetFileName )( IFileOpenDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszName); HRESULT ( STDMETHODCALLTYPE *GetFileName )( IFileOpenDialog * This, /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *pszName); HRESULT ( STDMETHODCALLTYPE *SetTitle )( IFileOpenDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszTitle); HRESULT ( STDMETHODCALLTYPE *SetOkButtonLabel )( IFileOpenDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *SetFileNameLabel )( IFileOpenDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *GetResult )( IFileOpenDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *AddPlace )( IFileOpenDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ FDAP fdap); HRESULT ( STDMETHODCALLTYPE *SetDefaultExtension )( IFileOpenDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszDefaultExtension); HRESULT ( STDMETHODCALLTYPE *Close )( IFileOpenDialog * This, /* [in] */ HRESULT hr); HRESULT ( STDMETHODCALLTYPE *SetClientGuid )( IFileOpenDialog * This, /* [in] */ __RPC__in REFGUID guid); HRESULT ( STDMETHODCALLTYPE *ClearClientData )( IFileOpenDialog * This); HRESULT ( STDMETHODCALLTYPE *SetFilter )( IFileOpenDialog * This, /* [in] */ __RPC__in_opt IShellItemFilter *pFilter); HRESULT ( STDMETHODCALLTYPE *GetResults )( IFileOpenDialog * This, /* [out] */ __RPC__deref_out_opt IShellItemArray **ppenum); HRESULT ( STDMETHODCALLTYPE *GetSelectedItems )( IFileOpenDialog * This, /* [out] */ __RPC__deref_out_opt IShellItemArray **ppsai); END_INTERFACE } IFileOpenDialogVtbl; interface IFileOpenDialog { CONST_VTBL struct IFileOpenDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IFileOpenDialog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IFileOpenDialog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IFileOpenDialog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IFileOpenDialog_Show(This,hwndParent) \ ( (This)->lpVtbl -> Show(This,hwndParent) ) #define IFileOpenDialog_SetFileTypes(This,cFileTypes,rgFilterSpec) \ ( (This)->lpVtbl -> SetFileTypes(This,cFileTypes,rgFilterSpec) ) #define IFileOpenDialog_SetFileTypeIndex(This,iFileType) \ ( (This)->lpVtbl -> SetFileTypeIndex(This,iFileType) ) #define IFileOpenDialog_GetFileTypeIndex(This,piFileType) \ ( (This)->lpVtbl -> GetFileTypeIndex(This,piFileType) ) #define IFileOpenDialog_Advise(This,pfde,pdwCookie) \ ( (This)->lpVtbl -> Advise(This,pfde,pdwCookie) ) #define IFileOpenDialog_Unadvise(This,dwCookie) \ ( (This)->lpVtbl -> Unadvise(This,dwCookie) ) #define IFileOpenDialog_SetOptions(This,fos) \ ( (This)->lpVtbl -> SetOptions(This,fos) ) #define IFileOpenDialog_GetOptions(This,pfos) \ ( (This)->lpVtbl -> GetOptions(This,pfos) ) #define IFileOpenDialog_SetDefaultFolder(This,psi) \ ( (This)->lpVtbl -> SetDefaultFolder(This,psi) ) #define IFileOpenDialog_SetFolder(This,psi) \ ( (This)->lpVtbl -> SetFolder(This,psi) ) #define IFileOpenDialog_GetFolder(This,ppsi) \ ( (This)->lpVtbl -> GetFolder(This,ppsi) ) #define IFileOpenDialog_GetCurrentSelection(This,ppsi) \ ( (This)->lpVtbl -> GetCurrentSelection(This,ppsi) ) #define IFileOpenDialog_SetFileName(This,pszName) \ ( (This)->lpVtbl -> SetFileName(This,pszName) ) #define IFileOpenDialog_GetFileName(This,pszName) \ ( (This)->lpVtbl -> GetFileName(This,pszName) ) #define IFileOpenDialog_SetTitle(This,pszTitle) \ ( (This)->lpVtbl -> SetTitle(This,pszTitle) ) #define IFileOpenDialog_SetOkButtonLabel(This,pszText) \ ( (This)->lpVtbl -> SetOkButtonLabel(This,pszText) ) #define IFileOpenDialog_SetFileNameLabel(This,pszLabel) \ ( (This)->lpVtbl -> SetFileNameLabel(This,pszLabel) ) #define IFileOpenDialog_GetResult(This,ppsi) \ ( (This)->lpVtbl -> GetResult(This,ppsi) ) #define IFileOpenDialog_AddPlace(This,psi,fdap) \ ( (This)->lpVtbl -> AddPlace(This,psi,fdap) ) #define IFileOpenDialog_SetDefaultExtension(This,pszDefaultExtension) \ ( (This)->lpVtbl -> SetDefaultExtension(This,pszDefaultExtension) ) #define IFileOpenDialog_Close(This,hr) \ ( (This)->lpVtbl -> Close(This,hr) ) #define IFileOpenDialog_SetClientGuid(This,guid) \ ( (This)->lpVtbl -> SetClientGuid(This,guid) ) #define IFileOpenDialog_ClearClientData(This) \ ( (This)->lpVtbl -> ClearClientData(This) ) #define IFileOpenDialog_SetFilter(This,pFilter) \ ( (This)->lpVtbl -> SetFilter(This,pFilter) ) #define IFileOpenDialog_GetResults(This,ppenum) \ ( (This)->lpVtbl -> GetResults(This,ppenum) ) #define IFileOpenDialog_GetSelectedItems(This,ppsai) \ ( (This)->lpVtbl -> GetSelectedItems(This,ppsai) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IFileOpenDialog_INTERFACE_DEFINED__ */ #ifndef __IFileDialogCustomize_INTERFACE_DEFINED__ #define __IFileDialogCustomize_INTERFACE_DEFINED__ /* interface IFileDialogCustomize */ /* [unique][object][uuid] */ EXTERN_C const IID IID_IFileDialogCustomize; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("e6fdd21a-163f-4975-9c8c-a69f1ba37034") IFileDialogCustomize : public IUnknown { public: virtual HRESULT STDMETHODCALLTYPE EnableOpenDropDown( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE AddMenu( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE AddPushButton( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE AddComboBox( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE AddRadioButtonList( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE AddCheckButton( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel, /* [in] */ BOOL bChecked) = 0; virtual HRESULT STDMETHODCALLTYPE AddEditBox( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText) = 0; virtual HRESULT STDMETHODCALLTYPE AddSeparator( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE AddText( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText) = 0; virtual HRESULT STDMETHODCALLTYPE SetControlLabel( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE GetControlState( /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out CDCONTROLSTATEF *pdwState) = 0; virtual HRESULT STDMETHODCALLTYPE SetControlState( /* [in] */ DWORD dwIDCtl, /* [in] */ CDCONTROLSTATEF dwState) = 0; virtual HRESULT STDMETHODCALLTYPE GetEditBoxText( /* [in] */ DWORD dwIDCtl, /* [string][out] */ __RPC__deref_out_opt_string WCHAR **ppszText) = 0; virtual HRESULT STDMETHODCALLTYPE SetEditBoxText( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText) = 0; virtual HRESULT STDMETHODCALLTYPE GetCheckButtonState( /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out BOOL *pbChecked) = 0; virtual HRESULT STDMETHODCALLTYPE SetCheckButtonState( /* [in] */ DWORD dwIDCtl, /* [in] */ BOOL bChecked) = 0; virtual HRESULT STDMETHODCALLTYPE AddControlItem( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveControlItem( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem) = 0; virtual HRESULT STDMETHODCALLTYPE RemoveAllControlItems( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE GetControlItemState( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [out] */ __RPC__out CDCONTROLSTATEF *pdwState) = 0; virtual HRESULT STDMETHODCALLTYPE SetControlItemState( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [in] */ CDCONTROLSTATEF dwState) = 0; virtual HRESULT STDMETHODCALLTYPE GetSelectedControlItem( /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out DWORD *pdwIDItem) = 0; virtual HRESULT STDMETHODCALLTYPE SetSelectedControlItem( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem) = 0; virtual HRESULT STDMETHODCALLTYPE StartVisualGroup( /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; virtual HRESULT STDMETHODCALLTYPE EndVisualGroup( void) = 0; virtual HRESULT STDMETHODCALLTYPE MakeProminent( /* [in] */ DWORD dwIDCtl) = 0; virtual HRESULT STDMETHODCALLTYPE SetControlItemText( /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [string][in] */ __RPC__in LPCWSTR pszLabel) = 0; }; #else /* C style interface */ typedef struct IFileDialogCustomizeVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IFileDialogCustomize * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IFileDialogCustomize * This); ULONG ( STDMETHODCALLTYPE *Release )( IFileDialogCustomize * This); HRESULT ( STDMETHODCALLTYPE *EnableOpenDropDown )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *AddMenu )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *AddPushButton )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *AddComboBox )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *AddRadioButtonList )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *AddCheckButton )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel, /* [in] */ BOOL bChecked); HRESULT ( STDMETHODCALLTYPE *AddEditBox )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *AddSeparator )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *AddText )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *SetControlLabel )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *GetControlState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out CDCONTROLSTATEF *pdwState); HRESULT ( STDMETHODCALLTYPE *SetControlState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ CDCONTROLSTATEF dwState); HRESULT ( STDMETHODCALLTYPE *GetEditBoxText )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][out] */ __RPC__deref_out_opt_string WCHAR **ppszText); HRESULT ( STDMETHODCALLTYPE *SetEditBoxText )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *GetCheckButtonState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out BOOL *pbChecked); HRESULT ( STDMETHODCALLTYPE *SetCheckButtonState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ BOOL bChecked); HRESULT ( STDMETHODCALLTYPE *AddControlItem )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *RemoveControlItem )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem); HRESULT ( STDMETHODCALLTYPE *RemoveAllControlItems )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *GetControlItemState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [out] */ __RPC__out CDCONTROLSTATEF *pdwState); HRESULT ( STDMETHODCALLTYPE *SetControlItemState )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [in] */ CDCONTROLSTATEF dwState); HRESULT ( STDMETHODCALLTYPE *GetSelectedControlItem )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [out] */ __RPC__out DWORD *pdwIDItem); HRESULT ( STDMETHODCALLTYPE *SetSelectedControlItem )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem); HRESULT ( STDMETHODCALLTYPE *StartVisualGroup )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *EndVisualGroup )( IFileDialogCustomize * This); HRESULT ( STDMETHODCALLTYPE *MakeProminent )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl); HRESULT ( STDMETHODCALLTYPE *SetControlItemText )( IFileDialogCustomize * This, /* [in] */ DWORD dwIDCtl, /* [in] */ DWORD dwIDItem, /* [string][in] */ __RPC__in LPCWSTR pszLabel); END_INTERFACE } IFileDialogCustomizeVtbl; interface IFileDialogCustomize { CONST_VTBL struct IFileDialogCustomizeVtbl *lpVtbl; }; #ifdef COBJMACROS #define IFileDialogCustomize_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IFileDialogCustomize_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IFileDialogCustomize_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IFileDialogCustomize_EnableOpenDropDown(This,dwIDCtl) \ ( (This)->lpVtbl -> EnableOpenDropDown(This,dwIDCtl) ) #define IFileDialogCustomize_AddMenu(This,dwIDCtl,pszLabel) \ ( (This)->lpVtbl -> AddMenu(This,dwIDCtl,pszLabel) ) #define IFileDialogCustomize_AddPushButton(This,dwIDCtl,pszLabel) \ ( (This)->lpVtbl -> AddPushButton(This,dwIDCtl,pszLabel) ) #define IFileDialogCustomize_AddComboBox(This,dwIDCtl) \ ( (This)->lpVtbl -> AddComboBox(This,dwIDCtl) ) #define IFileDialogCustomize_AddRadioButtonList(This,dwIDCtl) \ ( (This)->lpVtbl -> AddRadioButtonList(This,dwIDCtl) ) #define IFileDialogCustomize_AddCheckButton(This,dwIDCtl,pszLabel,bChecked) \ ( (This)->lpVtbl -> AddCheckButton(This,dwIDCtl,pszLabel,bChecked) ) #define IFileDialogCustomize_AddEditBox(This,dwIDCtl,pszText) \ ( (This)->lpVtbl -> AddEditBox(This,dwIDCtl,pszText) ) #define IFileDialogCustomize_AddSeparator(This,dwIDCtl) \ ( (This)->lpVtbl -> AddSeparator(This,dwIDCtl) ) #define IFileDialogCustomize_AddText(This,dwIDCtl,pszText) \ ( (This)->lpVtbl -> AddText(This,dwIDCtl,pszText) ) #define IFileDialogCustomize_SetControlLabel(This,dwIDCtl,pszLabel) \ ( (This)->lpVtbl -> SetControlLabel(This,dwIDCtl,pszLabel) ) #define IFileDialogCustomize_GetControlState(This,dwIDCtl,pdwState) \ ( (This)->lpVtbl -> GetControlState(This,dwIDCtl,pdwState) ) #define IFileDialogCustomize_SetControlState(This,dwIDCtl,dwState) \ ( (This)->lpVtbl -> SetControlState(This,dwIDCtl,dwState) ) #define IFileDialogCustomize_GetEditBoxText(This,dwIDCtl,ppszText) \ ( (This)->lpVtbl -> GetEditBoxText(This,dwIDCtl,ppszText) ) #define IFileDialogCustomize_SetEditBoxText(This,dwIDCtl,pszText) \ ( (This)->lpVtbl -> SetEditBoxText(This,dwIDCtl,pszText) ) #define IFileDialogCustomize_GetCheckButtonState(This,dwIDCtl,pbChecked) \ ( (This)->lpVtbl -> GetCheckButtonState(This,dwIDCtl,pbChecked) ) #define IFileDialogCustomize_SetCheckButtonState(This,dwIDCtl,bChecked) \ ( (This)->lpVtbl -> SetCheckButtonState(This,dwIDCtl,bChecked) ) #define IFileDialogCustomize_AddControlItem(This,dwIDCtl,dwIDItem,pszLabel) \ ( (This)->lpVtbl -> AddControlItem(This,dwIDCtl,dwIDItem,pszLabel) ) #define IFileDialogCustomize_RemoveControlItem(This,dwIDCtl,dwIDItem) \ ( (This)->lpVtbl -> RemoveControlItem(This,dwIDCtl,dwIDItem) ) #define IFileDialogCustomize_RemoveAllControlItems(This,dwIDCtl) \ ( (This)->lpVtbl -> RemoveAllControlItems(This,dwIDCtl) ) #define IFileDialogCustomize_GetControlItemState(This,dwIDCtl,dwIDItem,pdwState) \ ( (This)->lpVtbl -> GetControlItemState(This,dwIDCtl,dwIDItem,pdwState) ) #define IFileDialogCustomize_SetControlItemState(This,dwIDCtl,dwIDItem,dwState) \ ( (This)->lpVtbl -> SetControlItemState(This,dwIDCtl,dwIDItem,dwState) ) #define IFileDialogCustomize_GetSelectedControlItem(This,dwIDCtl,pdwIDItem) \ ( (This)->lpVtbl -> GetSelectedControlItem(This,dwIDCtl,pdwIDItem) ) #define IFileDialogCustomize_SetSelectedControlItem(This,dwIDCtl,dwIDItem) \ ( (This)->lpVtbl -> SetSelectedControlItem(This,dwIDCtl,dwIDItem) ) #define IFileDialogCustomize_StartVisualGroup(This,dwIDCtl,pszLabel) \ ( (This)->lpVtbl -> StartVisualGroup(This,dwIDCtl,pszLabel) ) #define IFileDialogCustomize_EndVisualGroup(This) \ ( (This)->lpVtbl -> EndVisualGroup(This) ) #define IFileDialogCustomize_MakeProminent(This,dwIDCtl) \ ( (This)->lpVtbl -> MakeProminent(This,dwIDCtl) ) #define IFileDialogCustomize_SetControlItemText(This,dwIDCtl,dwIDItem,pszLabel) \ ( (This)->lpVtbl -> SetControlItemText(This,dwIDCtl,dwIDItem,pszLabel) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IFileDialogCustomize_INTERFACE_DEFINED__ */ #ifndef __IFileSaveDialog_INTERFACE_DEFINED__ #define __IFileSaveDialog_INTERFACE_DEFINED__ /* interface IFileSaveDialog */ /* [unique][object][uuid] */ EXTERN_C const IID IID_IFileSaveDialog; #if defined(__cplusplus) && !defined(CINTERFACE) MIDL_INTERFACE("84bccd23-5fde-4cdb-aea4-af64b83d78ab") IFileSaveDialog : public IFileDialog { public: virtual HRESULT STDMETHODCALLTYPE SetSaveAsItem( /* [in] */ __RPC__in_opt IShellItem *psi) = 0; virtual HRESULT STDMETHODCALLTYPE SetProperties( /* [in] */ __RPC__in_opt IPropertyStore *pStore) = 0; virtual HRESULT STDMETHODCALLTYPE SetCollectedProperties( /* [in] */ __RPC__in_opt IPropertyDescriptionList *pList, /* [in] */ BOOL fAppendDefault) = 0; virtual HRESULT STDMETHODCALLTYPE GetProperties( /* [out] */ __RPC__deref_out_opt IPropertyStore **ppStore) = 0; virtual HRESULT STDMETHODCALLTYPE ApplyProperties( /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ __RPC__in_opt IPropertyStore *pStore, /* [unique][in] */ __RPC__in_opt HWND hwnd, /* [unique][in] */ __RPC__in_opt IFileOperationProgressSink *pSink) = 0; }; #else /* C style interface */ typedef struct IFileSaveDialogVtbl { BEGIN_INTERFACE HRESULT ( STDMETHODCALLTYPE *QueryInterface )( IFileSaveDialog * This, /* [in] */ __RPC__in REFIID riid, /* [iid_is][out] */ __RPC__deref_out void **ppvObject); ULONG ( STDMETHODCALLTYPE *AddRef )( IFileSaveDialog * This); ULONG ( STDMETHODCALLTYPE *Release )( IFileSaveDialog * This); /* [local] */ HRESULT ( STDMETHODCALLTYPE *Show )( IFileSaveDialog * This, /* [in] */ __in HWND hwndParent); HRESULT ( STDMETHODCALLTYPE *SetFileTypes )( IFileSaveDialog * This, /* [in] */ UINT cFileTypes, /* [size_is][in] */ __RPC__in_ecount_full(cFileTypes) const COMDLG_FILTERSPEC *rgFilterSpec); HRESULT ( STDMETHODCALLTYPE *SetFileTypeIndex )( IFileSaveDialog * This, /* [in] */ UINT iFileType); HRESULT ( STDMETHODCALLTYPE *GetFileTypeIndex )( IFileSaveDialog * This, /* [out] */ __RPC__out UINT *piFileType); HRESULT ( STDMETHODCALLTYPE *Advise )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IFileDialogEvents *pfde, /* [out] */ __RPC__out DWORD *pdwCookie); HRESULT ( STDMETHODCALLTYPE *Unadvise )( IFileSaveDialog * This, /* [in] */ DWORD dwCookie); HRESULT ( STDMETHODCALLTYPE *SetOptions )( IFileSaveDialog * This, /* [in] */ DWORD fos); HRESULT ( STDMETHODCALLTYPE *GetOptions )( IFileSaveDialog * This, /* [out] */ __RPC__out DWORD *pfos); HRESULT ( STDMETHODCALLTYPE *SetDefaultFolder )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *SetFolder )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *GetFolder )( IFileSaveDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *GetCurrentSelection )( IFileSaveDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *SetFileName )( IFileSaveDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszName); HRESULT ( STDMETHODCALLTYPE *GetFileName )( IFileSaveDialog * This, /* [string][out] */ __RPC__deref_out_opt_string LPWSTR *pszName); HRESULT ( STDMETHODCALLTYPE *SetTitle )( IFileSaveDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszTitle); HRESULT ( STDMETHODCALLTYPE *SetOkButtonLabel )( IFileSaveDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszText); HRESULT ( STDMETHODCALLTYPE *SetFileNameLabel )( IFileSaveDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszLabel); HRESULT ( STDMETHODCALLTYPE *GetResult )( IFileSaveDialog * This, /* [out] */ __RPC__deref_out_opt IShellItem **ppsi); HRESULT ( STDMETHODCALLTYPE *AddPlace )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ FDAP fdap); HRESULT ( STDMETHODCALLTYPE *SetDefaultExtension )( IFileSaveDialog * This, /* [string][in] */ __RPC__in LPCWSTR pszDefaultExtension); HRESULT ( STDMETHODCALLTYPE *Close )( IFileSaveDialog * This, /* [in] */ HRESULT hr); HRESULT ( STDMETHODCALLTYPE *SetClientGuid )( IFileSaveDialog * This, /* [in] */ __RPC__in REFGUID guid); HRESULT ( STDMETHODCALLTYPE *ClearClientData )( IFileSaveDialog * This); HRESULT ( STDMETHODCALLTYPE *SetFilter )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItemFilter *pFilter); HRESULT ( STDMETHODCALLTYPE *SetSaveAsItem )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi); HRESULT ( STDMETHODCALLTYPE *SetProperties )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IPropertyStore *pStore); HRESULT ( STDMETHODCALLTYPE *SetCollectedProperties )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IPropertyDescriptionList *pList, /* [in] */ BOOL fAppendDefault); HRESULT ( STDMETHODCALLTYPE *GetProperties )( IFileSaveDialog * This, /* [out] */ __RPC__deref_out_opt IPropertyStore **ppStore); HRESULT ( STDMETHODCALLTYPE *ApplyProperties )( IFileSaveDialog * This, /* [in] */ __RPC__in_opt IShellItem *psi, /* [in] */ __RPC__in_opt IPropertyStore *pStore, /* [unique][in] */ __RPC__in_opt HWND hwnd, /* [unique][in] */ __RPC__in_opt IFileOperationProgressSink *pSink); END_INTERFACE } IFileSaveDialogVtbl; interface IFileSaveDialog { CONST_VTBL struct IFileSaveDialogVtbl *lpVtbl; }; #ifdef COBJMACROS #define IFileSaveDialog_QueryInterface(This,riid,ppvObject) \ ( (This)->lpVtbl -> QueryInterface(This,riid,ppvObject) ) #define IFileSaveDialog_AddRef(This) \ ( (This)->lpVtbl -> AddRef(This) ) #define IFileSaveDialog_Release(This) \ ( (This)->lpVtbl -> Release(This) ) #define IFileSaveDialog_Show(This,hwndParent) \ ( (This)->lpVtbl -> Show(This,hwndParent) ) #define IFileSaveDialog_SetFileTypes(This,cFileTypes,rgFilterSpec) \ ( (This)->lpVtbl -> SetFileTypes(This,cFileTypes,rgFilterSpec) ) #define IFileSaveDialog_SetFileTypeIndex(This,iFileType) \ ( (This)->lpVtbl -> SetFileTypeIndex(This,iFileType) ) #define IFileSaveDialog_GetFileTypeIndex(This,piFileType) \ ( (This)->lpVtbl -> GetFileTypeIndex(This,piFileType) ) #define IFileSaveDialog_Advise(This,pfde,pdwCookie) \ ( (This)->lpVtbl -> Advise(This,pfde,pdwCookie) ) #define IFileSaveDialog_Unadvise(This,dwCookie) \ ( (This)->lpVtbl -> Unadvise(This,dwCookie) ) #define IFileSaveDialog_SetOptions(This,fos) \ ( (This)->lpVtbl -> SetOptions(This,fos) ) #define IFileSaveDialog_GetOptions(This,pfos) \ ( (This)->lpVtbl -> GetOptions(This,pfos) ) #define IFileSaveDialog_SetDefaultFolder(This,psi) \ ( (This)->lpVtbl -> SetDefaultFolder(This,psi) ) #define IFileSaveDialog_SetFolder(This,psi) \ ( (This)->lpVtbl -> SetFolder(This,psi) ) #define IFileSaveDialog_GetFolder(This,ppsi) \ ( (This)->lpVtbl -> GetFolder(This,ppsi) ) #define IFileSaveDialog_GetCurrentSelection(This,ppsi) \ ( (This)->lpVtbl -> GetCurrentSelection(This,ppsi) ) #define IFileSaveDialog_SetFileName(This,pszName) \ ( (This)->lpVtbl -> SetFileName(This,pszName) ) #define IFileSaveDialog_GetFileName(This,pszName) \ ( (This)->lpVtbl -> GetFileName(This,pszName) ) #define IFileSaveDialog_SetTitle(This,pszTitle) \ ( (This)->lpVtbl -> SetTitle(This,pszTitle) ) #define IFileSaveDialog_SetOkButtonLabel(This,pszText) \ ( (This)->lpVtbl -> SetOkButtonLabel(This,pszText) ) #define IFileSaveDialog_SetFileNameLabel(This,pszLabel) \ ( (This)->lpVtbl -> SetFileNameLabel(This,pszLabel) ) #define IFileSaveDialog_GetResult(This,ppsi) \ ( (This)->lpVtbl -> GetResult(This,ppsi) ) #define IFileSaveDialog_AddPlace(This,psi,fdap) \ ( (This)->lpVtbl -> AddPlace(This,psi,fdap) ) #define IFileSaveDialog_SetDefaultExtension(This,pszDefaultExtension) \ ( (This)->lpVtbl -> SetDefaultExtension(This,pszDefaultExtension) ) #define IFileSaveDialog_Close(This,hr) \ ( (This)->lpVtbl -> Close(This,hr) ) #define IFileSaveDialog_SetClientGuid(This,guid) \ ( (This)->lpVtbl -> SetClientGuid(This,guid) ) #define IFileSaveDialog_ClearClientData(This) \ ( (This)->lpVtbl -> ClearClientData(This) ) #define IFileSaveDialog_SetFilter(This,pFilter) \ ( (This)->lpVtbl -> SetFilter(This,pFilter) ) #define IFileSaveDialog_SetSaveAsItem(This,psi) \ ( (This)->lpVtbl -> SetSaveAsItem(This,psi) ) #define IFileSaveDialog_SetProperties(This,pStore) \ ( (This)->lpVtbl -> SetProperties(This,pStore) ) #define IFileSaveDialog_SetCollectedProperties(This,pList,fAppendDefault) \ ( (This)->lpVtbl -> SetCollectedProperties(This,pList,fAppendDefault) ) #define IFileSaveDialog_GetProperties(This,ppStore) \ ( (This)->lpVtbl -> GetProperties(This,ppStore) ) #define IFileSaveDialog_ApplyProperties(This,psi,pStore,hwnd,pSink) \ ( (This)->lpVtbl -> ApplyProperties(This,psi,pStore,hwnd,pSink) ) #endif /* COBJMACROS */ #endif /* C style interface */ #endif /* __IFileSaveDialog_INTERFACE_DEFINED__ */ class DECLSPEC_UUID("DC1C5A9C-E88A-4dde-A5A1-60F82A20AEF7") FileOpenDialog; class DECLSPEC_UUID("C0B4E2F3-BA21-4773-8DBA-335EC946EB8B") FileSaveDialog; _COM_SMARTPTR_TYPEDEF(IFileDialog, __uuidof(IFileDialog)); _COM_SMARTPTR_TYPEDEF(IFileOpenDialog, __uuidof(IFileOpenDialog)); _COM_SMARTPTR_TYPEDEF(IShellItem, __uuidof(IShellItem)); _COM_SMARTPTR_TYPEDEF(IFileDialogCustomize, __uuidof(IFileDialogCustomize)); _COM_SMARTPTR_TYPEDEF(IShellItemArray, __uuidof(IShellItemArray)); //helper class class Win7FileDialog { public: Win7FileDialog(const char *name, int issave=0); ~Win7FileDialog(); int inited() { return m_fod != NULL; } int show(HWND parent); void setFilterList(const char *list); void setDefaultExtension(const char *ext); void setFileTypeIndex(int i); //1-based void setFolder(const char *folder, int def=1); //def is for default folder void setFilename(const char *fn); void setTemplate(HINSTANCE inst, const char *dlgid, LPOFNHOOKPROC proc); void addOptions(DWORD o); void startGroup(DWORD id, char *label); void addText(DWORD id, char *txt); void addCheckbox(char *name, DWORD id, int defval); void endGroup(); int getState(DWORD id); void getResult(char *fn, int maxlen); int getResult(int i, char *fn, int maxlen); // returns the number of written bytes, including ending null-character int getResultCount(); private: IFileDialogPtr m_fod; IFileDialogCustomizePtr m_fdc; HINSTANCE m_inst; const char *m_dlgid; LPOFNHOOKPROC m_proc; WDL_String m_statictxt; }; #endif #endif
[ "tommitytom@gmail.com" ]
tommitytom@gmail.com
3164891e8cf7949376e3409e8ee1820e17e8c085
4259aa5a0ff38c24ccd0dd1f27b630511d42065a
/main/permuations.cpp
fd080804f7dfccf1dae2ee057a65372ff963f9ae
[]
no_license
Cnd96/practise
bbd24f3834c56259dd946d4ab59124ba109eaba9
4bb005dff1e4ead7c98c62eed262ed54284b4369
refs/heads/master
2022-12-14T15:21:24.540203
2020-03-19T07:38:28
2020-03-19T07:38:28
243,745,381
0
0
null
2022-12-12T02:57:01
2020-02-28T11:19:28
JavaScript
UTF-8
C++
false
false
741
cpp
#include "bits/stdc++.h" #include <iostream> #include <vector> #include <string> using namespace std; int main() { int t; cin >> t; for (int i = 1; i <= t; i++) { vector<long long> sumData; int n, tempSize; long long num; cin >> n; for (int j = 0; j < n; j++) { cin >> num; tempSize = sumData.size(); for (int k = 0; k < tempSize; k++) { sumData.push_back((num + sumData[k])); } sumData.push_back(num); } // for (int k = 0; k < sumData.size(); k++) // { // cout<<sumData[k]<<endl; // } cout<<"ss "<<sumData.size(); } return 0; }
[ "chamalnishageeth@gmail.com" ]
chamalnishageeth@gmail.com
8fb921ee44efc72526f7fdf304b8d898f5d0eee7
0f6a04063067372ce328ec0852c304aacc2c42eb
/cplus_primer/1_ch/main_for.cpp
8a16019eb0b073b1d4c3ab606372cfc81bec7b97
[]
no_license
DarkKnight1990/cplus_primer
b97ffcc79369a3cedba4ad9a4201379b952a0b9e
abbbcf006b03bb33832061bf648cdda4c969770b
refs/heads/master
2022-11-06T02:54:57.112911
2020-06-21T15:25:51
2020-06-21T15:25:51
273,930,837
1
0
null
null
null
null
UTF-8
C++
false
false
250
cpp
#include <iostream> int main() { int sum = 0; // sum of values from 1 to 10 inclusive for(int i=1; i<=10; ++i) sum += i; std::cout << "Sum of values from 1 to 10 inclusive is: " << sum << std::endl; return 0; }
[ "pikludey1990@gmail.com" ]
pikludey1990@gmail.com
141efe6b5a2eeb0dc8cbbf50dee6077e62bea0b2
79aef160e22b19d55370beb5dd3760409fd9a3b0
/core/Madam.cpp
7a888b9d838fc26da9f77e6973ddeed417b34855
[]
no_license
fixelsan/freedo
e6392ce92c979edd23cbe710aed387dc750b2da8
5e8524a14549f6dd1b4983a925be1b5ab63b8a7e
refs/heads/master
2021-01-02T09:53:34.370888
2018-09-06T15:33:57
2018-09-06T15:33:57
38,263,445
5
1
null
2018-09-06T15:34:00
2015-06-29T18:23:31
C++
WINDOWS-1252
C++
false
false
59,692
cpp
/* www.freedo.org The first and only working 3DO multiplayer emulator. The FreeDO licensed under modified GNU LGPL, with following notes: * The owners and original authors of the FreeDO have full right to develop closed source derivative work. * Any non-commercial uses of the FreeDO sources or any knowledge obtained by studying or reverse engineering of the sources, or any other material published by FreeDO have to be accompanied with full credits. * Any commercial uses of FreeDO sources or any knowledge obtained by studying or reverse engineering of the sources, or any other material published by FreeDO is strictly forbidden without owners approval. The above notes are taking precedence over GNU LGPL in conflicting situations. Project authors: Alexander Troosh Maxim Grishin Allen Wright John Sammons Felix Lazarev */ // Madam.cpp: implementation of the CMadam class. // ////////////////////////////////////////////////////////////////////// #include "freedoconfig.h" #include "Madam.h" #include "Clio.h" #include "vdlp.h" #include "arm.h" #include <math.h> #include <memory.h> #include "bitop.h" BitReaderBig bitoper; #include "freedocore.h" extern _ext_Interface io_interface; /* === CCB control word flags === */ #define CCB_SKIP 0x80000000 #define CCB_LAST 0x40000000 #define CCB_NPABS 0x20000000 #define CCB_SPABS 0x10000000 #define CCB_PPABS 0x08000000 #define CCB_LDSIZE 0x04000000 #define CCB_LDPRS 0x02000000 #define CCB_LDPPMP 0x01000000 #define CCB_LDPLUT 0x00800000 #define CCB_CCBPRE 0x00400000 #define CCB_YOXY 0x00200000 #define CCB_ACSC 0x00100000 #define CCB_ALSC 0x00080000 #define CCB_ACW 0x00040000 #define CCB_ACCW 0x00020000 #define CCB_TWD 0x00010000 #define CCB_LCE 0x00008000 #define CCB_ACE 0x00004000 #define CCB_reserved13 0x00002000 #define CCB_MARIA 0x00001000 #define CCB_PXOR 0x00000800 #define CCB_USEAV 0x00000400 #define CCB_PACKED 0x00000200 #define CCB_POVER_MASK 0x00000180 #define CCB_PLUTPOS 0x00000040 #define CCB_BGND 0x00000020 #define CCB_NOBLK 0x00000010 #define CCB_PLUTA_MASK 0x0000000F #define CCB_POVER_SHIFT 7 #define CCB_PLUTA_SHIFT 0 #define PMODE_PDC ((0x00000000)<<CCB_POVER_SHIFT) /* Normal */ #define PMODE_ZERO ((0x00000002)<<CCB_POVER_SHIFT) #define PMODE_ONE ((0x00000003)<<CCB_POVER_SHIFT) /* === Cel first preamble word flags === */ #define PRE0_LITERAL 0x80000000 #define PRE0_BGND 0x40000000 #define PREO_reservedA 0x30000000 #define PRE0_SKIPX_MASK 0x0F000000 #define PREO_reservedB 0x00FF0000 #define PRE0_VCNT_MASK 0x0000FFC0 #define PREO_reservedC 0x00000020 #define PRE0_LINEAR 0x00000010 #define PRE0_REP8 0x00000008 #define PRE0_BPP_MASK 0x00000007 #define PRE0_SKIPX_SHIFT 24 #define PRE0_VCNT_SHIFT 6 #define PRE0_BPP_SHIFT 0 /* PRE0_BPP_MASK definitions */ #define PRE0_BPP_1 0x00000001 #define PRE0_BPP_2 0x00000002 #define PRE0_BPP_4 0x00000003 #define PRE0_BPP_6 0x00000004 #define PRE0_BPP_8 0x00000005 #define PRE0_BPP_16 0x00000006 /* Subtract this value from the actual vertical source line count */ #define PRE0_VCNT_PREFETCH 1 /* === Cel second preamble word flags === */ #define PRE1_WOFFSET8_MASK 0xFF000000 #define PRE1_WOFFSET10_MASK 0x03FF0000 #define PRE1_NOSWAP 0x00004000 #define PRE1_TLLSB_MASK 0x00003000 #define PRE1_LRFORM 0x00000800 #define PRE1_TLHPCNT_MASK 0x000007FF #define PRE1_WOFFSET8_SHIFT 24 #define PRE1_WOFFSET10_SHIFT 16 #define PRE1_TLLSB_SHIFT 12 #define PRE1_TLHPCNT_SHIFT 0 #define PRE1_TLLSB_0 0x00000000 #define PRE1_TLLSB_PDC0 0x00001000 /* Normal */ #define PRE1_TLLSB_PDC4 0x00002000 #define PRE1_TLLSB_PDC5 0x00003000 /* Subtract this value from the actual word offset */ #define PRE1_WOFFSET_PREFETCH 2 /* Subtract this value from the actual pixel count */ #define PRE1_TLHPCNT_PREFETCH 1 #define PPMP_0_SHIFT 0 #define PPMP_1_SHIFT 16 #define PPMPC_1S_MASK 0x00008000 #define PPMPC_MS_MASK 0x00006000 #define PPMPC_MF_MASK 0x00001C00 #define PPMPC_SF_MASK 0x00000300 #define PPMPC_2S_MASK 0x000000C0 #define PPMPC_AV_MASK 0x0000003E #define PPMPC_2D_MASK 0x00000001 #define PPMPC_MS_SHIFT 13 #define PPMPC_MF_SHIFT 10 #define PPMPC_SF_SHIFT 8 #define PPMPC_2S_SHIFT 6 #define PPMPC_AV_SHIFT 1 /* PPMPC_1S_MASK definitions */ #define PPMPC_1S_PDC 0x00000000 #define PPMPC_1S_CFBD 0x00008000 /* PPMPC_MS_MASK definitions */ #define PPMPC_MS_CCB 0x00000000 #define PPMPC_MS_PIN 0x00002000 #define PPMPC_MS_PDC_MFONLY 0x00004000 #define PPMPC_MS_PDC 0x00004000 /* PPMPC_MF_MASK definitions */ #define PPMPC_MF_1 0x00000000 #define PPMPC_MF_2 0x00000400 #define PPMPC_MF_3 0x00000800 #define PPMPC_MF_4 0x00000C00 #define PPMPC_MF_5 0x00001000 #define PPMPC_MF_6 0x00001400 #define PPMPC_MF_7 0x00001800 #define PPMPC_MF_8 0x00001C00 /* PPMPC_SF_MASK definitions */ #define PPMPC_SF_2 0x00000100 #define PPMPC_SF_4 0x00000200 #define PPMPC_SF_8 0x00000300 #define PPMPC_SF_16 0x00000000 /* PPMPC_2S_MASK definitions */ #define PPMPC_2S_0 0x00000000 #define PPMPC_2S_CCB 0x00000040 #define PPMPC_2S_CFBD 0x00000080 #define PPMPC_2S_PDC 0x000000C0 /* PPMPC_2D_MASK definitions */ #define PPMPC_2D_1 0x00000000 #define PPMPC_2D_2 0x00000001 #pragma pack(push,1) struct cp1btag{ unsigned short c:1; unsigned short pad:15; }; struct cp2btag{ unsigned short c:2; unsigned short pad:14; }; typedef struct cp4btag{ unsigned short c:4; unsigned short pad:12; } cp4b; struct cp6btag{ unsigned short c:5; unsigned short pw:1; unsigned short pad:10; }; struct cp8btag{ unsigned short c:5; unsigned short mpw:1; unsigned short m:2; unsigned short pad:8; }; struct cp16btag{ unsigned short c:5; unsigned short mb:3; unsigned short mg:3; unsigned short mr:3; unsigned short pad:1; unsigned short pw:1; }; struct up8btag{ unsigned short b:2; unsigned short g:3; unsigned short r:3; unsigned short pad:8; }; struct up16btag{ unsigned short bw:1; unsigned short b:4; unsigned short g:5; unsigned short r:5; unsigned short p:1; }; struct res16btag{ unsigned short b:5; unsigned short g:5; unsigned short r:5; unsigned short p:1; }; union pdeco{ unsigned int raw; cp1btag c1b; cp2btag c2b; cp4btag c4b; cp6btag c6b; cp8btag c8b; cp16btag c16b; up8btag u8b; up16btag u16b; res16btag r16b; }; struct avtag { unsigned char NEG:1; unsigned char XTEND:1; unsigned char nCLIP:1; unsigned char dv3:2; unsigned char pad:3; }; union AVS{ avtag avsignal; unsigned int raw; }; struct pixctag { unsigned char dv2:1; unsigned char av:5; // why int don't work??? unsigned char s2:2; unsigned char dv1:2; unsigned char mxf:3; unsigned char ms:2; unsigned char s1:1; }; union PXC { pixctag meaning; unsigned int raw; }; #pragma pack(pop) //******************************************* #pragma pack(push,1) struct MADAMDatum { unsigned int mregs[2048+64]; unsigned short PLUT[32]; unsigned char PBUSQueue[20]; int RMOD; int WMOD; unsigned int _madam_FSM; }; #pragma pack(pop) static MADAMDatum madam; unsigned int Get_madam_FSM(){return madam._madam_FSM;}; void Set_madam_FSM(unsigned int val){madam._madam_FSM=val;}; unsigned int _madam_SaveSize() { return sizeof(MADAMDatum); } void _madam_Save(void *buff) { memcpy(buff,&madam,sizeof(MADAMDatum)); } void _madam_Load(void *buff) { memcpy(&madam,buff,sizeof(MADAMDatum)); } #define mregs madam.mregs #define PLUT madam.PLUT #define PBUSQueue madam.PBUSQueue #define RMOD madam.RMOD #define WMOD madam.WMOD #define _madam_FSM madam._madam_FSM //******************************************* unsigned int PXOR1, PXOR2; #define PDV(x) ((((x)-1)&3)+1) #define MIN(x,y) (x)+(((signed int)((y)-(x))>>31&((y)-(x)))) #define MAX(x,y) (y)-(((signed int)((y)-(x))>>31&((y)-(x)))) #define TESTCLIP(cx,cy) ( ((int)cx>=0)&&((int)cx<=((CLIPXVAL)<<16))&&((int)cy>=0)&&((int)cy<=((CLIPYVAL)<<16))) #define FLT(a) ((float)(int)(a)/65536.0) #define XY2OFF(a,b,c) ( (((int)b>>1)*c/*bitmap width*/) + (((int)(b)&1)<<1) + (a) ) #define PBMASK 0x80000000 #define KUP 0x08000000 #define KDN 0x10000000 #define KRI 0x04000000 #define KLE 0x02000000 #define KA 0x01000000 #define KB 0x00800000 #define KC 0x00400000 #define KP 0x00200000 #define KX 0x00100000 #define KRS 0x00080000 #define KLS 0x00040000 #define FIXP16_SHIFT 16 #define FIXP16_MAG 65536 #define FIXP16_DP_MASK 0x0000ffff #define FIXP16_WP_MASK 0xffff0000 #define FIXP16_ROUND_UP 0x0000ffff //0x8000 // TYPES /////////////////////////////////////////////////////////////////// // CLASSES ///////////////////////////////////////////////////////////////// unsigned int __fastcall mread(unsigned int addr); void __fastcall mwrite(unsigned int addr, unsigned int val); int TestInitVisual(int packed); int Init_Line_Map(); void Init_Scale_Map(); void Init_Arbitrary_Map(); int __fastcall TexelDraw_Line(unsigned short CURPIX, unsigned short LAMV, int xcur, int ycur, int cnt); int __fastcall TexelDraw_Scale(unsigned short CURPIX, unsigned short LAMV, int xcur, int ycur, int deltax, int deltay); int __fastcall TexelDraw_Arbitrary(unsigned short CURPIX, unsigned short LAMV, int xA, int yA, int xB, int yB, int xC, int yC, int xD, int yD); void __fastcall DrawPackedCel_New(); void __fastcall DrawLiteralCel_New(); void __fastcall DrawLRCel_New(); void HandleDMA8(); void DMAPBus(); unsigned int MAPPING; // general 3D vertex class #define INT1220(a) ((signed int)(a)>>20) #define INT1220up(a) ((signed int)((a)+(1<<19))>>20) static struct { // int mode; unsigned int plutaCCBbits; unsigned int pixelBitsMask; unsigned int pmodeORmask; unsigned int pmodeANDmask; bool tmask; } pdec; unsigned int pbus=0; unsigned char * Mem; unsigned int retuval; unsigned int BITADDR; //static unsigned int * BITPTR; //static unsigned int * BITEND; unsigned int BITBUFLEN; unsigned int BITBUF; unsigned int CCBFLAGS,/*PLUTDATA*/PIXC,PRE0,PRE1,TARGETPROJ,SRCDATA,debug; int SPRWI,SPRHI; unsigned int PLUTF,PDATF,NCCBF; int CELCYCLES,__smallcicles; bool ADD; //static SDL_Event cpuevent; int BITCALC; unsigned short bitbuf; //bit buffer unsigned char subbitbuf;// bit sub buffer int bitcount; // bit counter long compsize; // size of commpressed!!! in bytes!!! actually pixcount*bpp/8!!! unsigned int gFINISH; unsigned short RRR; int USECEL; unsigned int const BPP[8]={1,1,2,4,6,8,16,1}; unsigned char PSCALAR[8][4][32]; unsigned short MAPu8b[256+64], MAPc8bAMV[256+64], MAPc16bAMV[8*8*8+64]; int currentrow; unsigned int bpp; unsigned int pixcount; unsigned int type; unsigned int offsetl; unsigned int offset; //static unsigned int begining; unsigned int eor; int calcx; int nrows; unsigned int pix; unsigned short ttt; unsigned int OFF; unsigned int pSource; bool Transparent; //AString str; //CelEngine STATBits #define STATBITS mregs[0x28] #define SPRON 0x10 #define SPRPAU 0x20 //CelEngine Registers #define SPRSTRT 0x100 #define SPRSTOP 0x104 #define SPRCNTU 0x108 #define SPRPAUS 0x10c #define CCBCTL0 mregs[0x110] #define REGCTL0 mregs[0x130] #define REGCTL1 mregs[0x134] #define REGCTL2 mregs[0x138] #define REGCTL3 mregs[0x13c] #define CLIPXVAL ((int)mregs[0x134]&0x3ff) #define CLIPYVAL ((int)(mregs[0x134]>>16)&0x3ff) #define PIXSOURCE (mregs[0x138]) #define FBTARGET (mregs[0x13c]) #define CURRENTCCB mregs[0x5a0] //next ccb == 0 stop the engine #define NEXTCCB mregs[0x5a4] #define PLUTDATA mregs[0x5a8] #define PDATA mregs[0x5ac] #define ENGAFETCH mregs[0x5b0] #define ENGALEN mregs[0x5b4] #define ENGBFETCH mregs[0x5b8] #define ENGBLEN mregs[0x5bc] #define PAL_EXP (&mregs[0x5d0]) #define CHAR_BIT (8) int FLOAT1612(int a) { return a<<4; } ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// //void MapCoord(poly *pol); //void RenderPoly(); unsigned int __fastcall _madam_Peek(unsigned int addr) { // if((addr>=0x400)&&(addr<=0x53f)) // printf("#Madam Peek [%X]=%X\n",addr,mregs[addr]); if((addr>=0x400)&&(addr<=0x53f)) { //we need to return actual fifo status!!!! return _clio_FIFOStruct(addr); } if(addr==0x28) // STATUS OF CEL { switch(_madam_FSM) { case FSM_IDLE:return 0x0; case FSM_SUSPENDED:return 0x30; case FSM_INPROCESS:return 0x10; } } if(addr>=0x580 && addr<0x5A0) { //sprintf(str,"CLUT - MADAM Read madam[0x%X]\n",addr); //CDebug::DPrint(str); } return mregs[addr]; } void __fastcall _madam_Poke(unsigned int addr, unsigned int val) { if(addr>0x2ff && addr<0x400) { // io_interface(EXT_DEBUG_PRINT,(void*)str.print("MADAM Write madam[0x%X] = 0x%8.8X\n",addr,val).CStr()); } /* if(addr==0x13c) { sprintf(str,"Switch screen SWI 0x%8X addr 0x%8X\n",last_SWI,val); CDebug::DPrint(str); }*/ if((addr>=0x400)&&(addr<=0x53f)) { _clio_SetFIFO(addr,val); return; } else switch(addr) { case 0x4: val=0x29; mregs[addr]=val; break; case 0x8: mregs[addr]=val; HandleDMA8(); break; case 0x580: _vdl_ProcessVDL(val); return; case 0x584: case 0x588: case 0x58C: case 0x590: case 0x594: case 0x598: case 0x59C: //_3do_DPrint(str.print("CLUT - MADAM Write madam[0x%X] = 0x%8.8X\n",addr,val)); mregs[addr]=val; return; case 0x0: io_interface(EXT_KPRINT,(void*)val); return; case SPRSTRT: if(_madam_FSM==FSM_IDLE) _madam_FSM=FSM_INPROCESS; return; case SPRSTOP: _madam_FSM=FSM_IDLE; NEXTCCB=0; return; case SPRCNTU: if(_madam_FSM==FSM_SUSPENDED) _madam_FSM=FSM_INPROCESS; return; case SPRPAUS: if(_madam_FSM==FSM_INPROCESS) _madam_FSM=FSM_SUSPENDED; return; //Matrix engine macros #define M00 ((double)(signed int)mregs[0x600]) #define M01 ((double)(signed int)mregs[0x604]) #define M02 ((double)(signed int)mregs[0x608]) #define M03 ((double)(signed int)mregs[0x60C]) #define M10 ((double)(signed int)mregs[0x610]) #define M11 ((double)(signed int)mregs[0x614]) #define M12 ((double)(signed int)mregs[0x618]) #define M13 ((double)(signed int)mregs[0x61C]) #define M20 ((double)(signed int)mregs[0x620]) #define M21 ((double)(signed int)mregs[0x624]) #define M22 ((double)(signed int)mregs[0x628]) #define M23 ((double)(signed int)mregs[0x62C]) #define M30 ((double)(signed int)mregs[0x630]) #define M31 ((double)(signed int)mregs[0x634]) #define M32 ((double)(signed int)mregs[0x638]) #define M33 ((double)(signed int)mregs[0x63C]) #define V0 ((double)(signed int)mregs[0x640]) #define V1 ((double)(signed int)mregs[0x644]) #define V2 ((double)(signed int)mregs[0x648]) #define V3 ((double)(signed int)mregs[0x64C]) #define Rez0 mregs[0x660] #define Rez1 mregs[0x664] #define Rez2 mregs[0x668] #define Rez3 mregs[0x66C] //#define Nfrac16 ((__int64)mregs[0x680]<<32|(unsigned int)mregs[0x684]) #define Nfrac16 (((__int64)mregs[0x680]<<32)|(unsigned int)mregs[0x684]) // Matix engine case 0x7fc: mregs[0x7fc]=0; // Our matrix engine always ready static int Rez0T,Rez1T,Rez2T,Rez3T; // io_interface(EXT_DEBUG_PRINT,(void*)str.print("MADAM Write madam[0x%X] = 0x%8.8X\n",addr,val).CStr()); switch(val) // Cmd { case 0: //printf("#Matrix = NOP\n"); Rez0=Rez0T; Rez1=Rez1T; Rez2=Rez2T; Rez3=Rez3T; return; // NOP case 1: //multiply a 4x4 matrix of 16.16 values by a vector of 16.16 values Rez0=Rez0T; Rez1=Rez1T; Rez2=Rez2T; Rez3=Rez3T; Rez0T=(int)((M00*V0+M01*V1+M02*V2+M03*V3)/65536.0); Rez1T=(int)((M10*V0+M11*V1+M12*V2+M13*V3)/65536.0); Rez2T=(int)((M20*V0+M21*V1+M22*V2+M23*V3)/65536.0); Rez3T=(int)((M30*V0+M31*V1+M32*V2+M33*V3)/65536.0); return; case 2: //multiply a 3x3 matrix of 16.16 values by a vector of 16.16 values Rez0=Rez0T; Rez1=Rez1T; Rez2=Rez2T; Rez3=Rez3T; Rez0T=(int)((M00*V0+M01*V1+M02*V2)/65536.0); Rez1T=(int)((M10*V0+M11*V1+M12*V2)/65536.0); Rez2T=(int)((M20*V0+M21*V1+M22*V2)/65536.0); //printf("#Matrix CMD2, R0=0x%8.8X, R1=0x%8.8X, R2=0x%8.8X\n",Rez0,Rez1,Rez2); return; case 3: // Multiply a 3x3 matrix of 16.16 values by multiple vectors, then multiply x and y by n/z { // Return the result vectors {x*n/z, y*n/z, z} Rez0=Rez0T; Rez1=Rez1T; Rez2=Rez2T; Rez3=Rez3T; double M; Rez2T=(signed int)((M20*V0+M21*V1+M22*V2)/65536.0); // z if(Rez2T!=0) M=Nfrac16/(double)Rez2T; // n/z else { M=Nfrac16; io_interface(EXT_DEBUG_PRINT,(void*)"!!!Division by zero!!!\n"); } Rez0T=(signed int)((M00*V0+M01*V1+M02*V2)/65536.0); Rez1T=(signed int)((M10*V0+M11*V1+M12*V2)/65536.0); Rez0T=(int)((Rez0T*M)/65536.0/65536.0); // x * n/z Rez1T=(int)((Rez1T*M)/65536.0/65536.0); // y * n/z } return; default: //io_interface(EXT_DEBUG_PRINT,(void*)str.print("??? Unknown cmd MADAM[0x7FC]==0x%x\n", val).CStr()); return; } break; case 0x130: mregs[addr]=val; //modulo variables :) RMOD=((val&1)<<7)+((val&12)<<8)+((val&0x70)<<4); val>>=8; WMOD=((val&1)<<7)+((val&12)<<8)+((val&0x70)<<4); break; default: mregs[addr]=val; break; } } unsigned int OFFSET; unsigned int temp1; unsigned int Flag; double HDDX,HDDY,HDX,HDY,VDX,VDY,XPOS,YPOS,HDX_2,HDY_2; int HDDX1616,HDDY1616,HDX1616,HDY1616,VDX1616,VDY1616,XPOS1616,YPOS1616,HDX1616_2,HDY1616_2; char TEXEL_FUN_NUMBER; int TEXTURE_WI_START,TEXTURE_HI_START,TEXEL_INCX,TEXEL_INCY; int TEXTURE_WI_LIM, TEXTURE_HI_LIM; void LoadPLUT(unsigned int pnt,int n) { int i; for(i=0;i<n;i++) { PLUT[i]=_mem_read16((((pnt>>1)+i)^1)<<1); } } int CCBCOUNTER; int _madam_HandleCEL() { __smallcicles=CELCYCLES=0; if(NEXTCCB!=0)CCBCOUNTER=0; STATBITS|=SPRON; Flag=0; while((NEXTCCB!=0)&&(!Flag)) //if(_madam_FSM==FSM_INPROCESS) { CCBCOUNTER++; if((NEXTCCB==0)||(Flag)) { _madam_FSM=FSM_IDLE; return CELCYCLES; } //1st step -- parce CCB and load it into registers CURRENTCCB=NEXTCCB&0xfffffc; if((CURRENTCCB>>20)>2) { _madam_FSM=FSM_IDLE; return CELCYCLES; } OFFSET=CURRENTCCB; CCBFLAGS=mread(CURRENTCCB); CURRENTCCB+=4; if(CCBFLAGS&CCB_PXOR) { PXOR1=0; PXOR2=0x1f1f1f1f; } else { PXOR1=0xFFffFFff; PXOR2=0; } Flag=0; PLUTF=PDATF=NCCBF=0; NEXTCCB=mread(CURRENTCCB)&(~3); if(!(CCBFLAGS&CCB_NPABS)) { NEXTCCB+=CURRENTCCB+4; NEXTCCB&=0xffffff; } if((NEXTCCB==0)) NCCBF=1; if((NEXTCCB>>20)>2) NCCBF=1; CURRENTCCB+=4; PDATA=mread(CURRENTCCB)&(~3); //if((PDATA==0)) // PDATF=1; if(!(CCBFLAGS&CCB_SPABS)) { PDATA+=CURRENTCCB+4; PDATA&=0xffffff; } if((PDATA>>20)>2) PDATF=1; CURRENTCCB+=4; if((CCBFLAGS&CCB_LDPLUT)) { PLUTDATA=mread(CURRENTCCB)&(~3); //if((PLUTDATA==0)) // PLUTF=1; if(!(CCBFLAGS&CCB_PPABS)) { PLUTDATA+=CURRENTCCB+4; PLUTDATA&=0xffffff; } if((PLUTDATA>>20)>2) PLUTF=1; } CURRENTCCB+=4; if(NCCBF) CCBFLAGS|=CCB_LAST; if(CCBFLAGS&CCB_LAST) Flag=1; if(CCBFLAGS&CCB_YOXY) { XPOS1616=mread(CURRENTCCB); XPOS=XPOS1616/65536.0; CURRENTCCB+=4; YPOS1616=mread(CURRENTCCB); YPOS=YPOS1616/65536.0; CURRENTCCB+=4; } else CURRENTCCB+=8; //if((CCBFLAGS&CCB_SKIP)&& debug) // printf("###Cel skipped!!! PDATF=%d PLUTF=%d NCCBF=%d\n",PDATF,PLUTF,NCCBF); if(CCBFLAGS&CCB_LAST) NEXTCCB=0; if(CCBFLAGS&CCB_LDSIZE) { HDX1616=((int)mread(CURRENTCCB))>>4; HDX=HDX1616/65536.0; CURRENTCCB+=4; HDY1616=((int)mread(CURRENTCCB))>>4; HDY=HDY1616/65536.0; CURRENTCCB+=4; VDX1616=mread(CURRENTCCB); VDX=VDX1616/65536.0; CURRENTCCB+=4; VDY1616=mread(CURRENTCCB); VDY=VDY1616/65536.0; CURRENTCCB+=4; } if(CCBFLAGS&CCB_LDPRS) { HDDX1616=((int)mread(CURRENTCCB))>>4; HDDX=HDDX1616/65536.0; CURRENTCCB+=4; HDDY1616=((int)mread(CURRENTCCB))>>4; HDDY=HDDY1616/65536.0; CURRENTCCB+=4; } if(CCBFLAGS&CCB_LDPPMP) { PIXC=mread(CURRENTCCB); CURRENTCCB+=4; } if(CCBFLAGS&CCB_CCBPRE) { PRE0=mread(CURRENTCCB); CURRENTCCB+=4; if(!(CCBFLAGS&CCB_PACKED)) { PRE1=mread(CURRENTCCB); CURRENTCCB+=4; } } else if(!PDATF) { PRE0=mread(PDATA); PDATA+=4; if(!(CCBFLAGS&CCB_PACKED)) { PRE1=mread(PDATA); PDATA+=4; } } {// PDEC data compute //pdec.mode=PRE0&PRE0_BPP_MASK; switch(PRE0&PRE0_BPP_MASK) { case 0: case 7: continue; case 1: pdec.plutaCCBbits=(CCBFLAGS&0xf)*4; pdec.pixelBitsMask=1; // 1 bit break; case 2: pdec.plutaCCBbits=(CCBFLAGS&0xe)*4; pdec.pixelBitsMask=3; // 2 bit break; default://case 3: pdec.plutaCCBbits=(CCBFLAGS&0x8)*4; pdec.pixelBitsMask=15; // 4 bit break; } pdec.tmask=!(CCBFLAGS&CCB_BGND); pdec.pmodeORmask= ((CCBFLAGS&CCB_POVER_MASK)==PMODE_ONE )? 0x8000:0x0000; pdec.pmodeANDmask=((CCBFLAGS&CCB_POVER_MASK)!=PMODE_ZERO)? 0xFFFF:0x7FFF; } if((CCBFLAGS&CCB_LDPLUT) && !PLUTF) //load PLUT { switch(PRE0&PRE0_BPP_MASK) { case 1: LoadPLUT(PLUTDATA,2); break; case 2: LoadPLUT(PLUTDATA,4); break; case 3: LoadPLUT(PLUTDATA,16); break; default: LoadPLUT(PLUTDATA,32); }; } //ok -- CCB decoded -- let's print out our current status //step#2 -- getting CEL data //* if(!(CCBFLAGS&CCB_SKIP) && !PDATF) { if(CCBFLAGS&CCB_PACKED) { DrawPackedCel_New(); } else { if((PRE1&PRE1_LRFORM)&&(BPP[PRE0&PRE0_BPP_MASK]==16)) DrawLRCel_New(); else DrawLiteralCel_New(); } }//if(!(CCBFLAGS& CCB_SKIP)) }//while //STATBITS&=~SPRON; if((NEXTCCB==0)||(Flag)) { _madam_FSM=FSM_IDLE; } return CELCYCLES; }//HandleCEL void HandleDMA8() { if(mregs[0x8]&0x8000)// pbus transfer { DMAPBus(); mregs[0x8]&=~0x8000; // dma done _clio_GenerateFiq(0,1); } } void DMAPBus() { unsigned int i=0; if((int)mregs[0x574]<0) return; mregs[0x574]-=4; mregs[0x570]+=4; mregs[0x578]+=4; while((int)mregs[0x574]>0) { if(i<5) WriteIO(mregs[0x570],((unsigned int*)PBUSQueue)[i]); else WriteIO(mregs[0x570],0xffffffff); mregs[0x574]-=4; mregs[0x570]+=4; mregs[0x578]+=4; i++; } mregs[0x574]=0xfffffffc; } void _madam_KeyPressed(unsigned char* data, unsigned int num) { if(num>16)num=16; if(num)memcpy(PBUSQueue,data,num); memset(&PBUSQueue[num],-1,20-num); } void _madam_Init(unsigned char *memory) { int i,j,n; ADD=0; debug=0; USECEL=1; CELCYCLES=0; Mem=memory; MAPPING=1; _madam_FSM=FSM_IDLE; for(i=0;i<2048;i++) mregs[i]=0; mregs[004]=0x29; // DRAM dux init mregs[574]=0xfffffffc; #if 1 mregs[000]=0x01020000; // for Green matrix engine autodetect //mregs[000]=0x02022000; // for Green matrix engine autodetect #else mregs[000]=0x01020001; // for ARM soft emu of matrix engine #endif for(i=0;i<32;i++) for(j=0;j<8;j++) for(n=0;n<4;n++) { PSCALAR[j][n][i]=((i*(j+1))>>PDV(n)); } for(i=0;i<256;i++) { pdeco pix1,pix2; unsigned short pres, resamv; pix1.raw=i; pix2.r16b.b=(pix1.u8b.b<<3)+(pix1.u8b.b<<1)+(pix1.u8b.b>>1); pix2.r16b.g=(pix1.u8b.g<<2)+(pix1.u8b.g>>1); pix2.r16b.r=(pix1.u8b.r<<2)+(pix1.u8b.r>>1); pres=pix2.raw; pres&=0x7fff; //pmode=0; MAPu8b[i]=pres; resamv=(pix1.c8b.m<<1)+pix1.c8b.mpw; resamv=(resamv<<6)+(resamv<<3)+resamv; MAPc8bAMV[i]=resamv; } for(i=0;i<(8*8*8);i++) { pdeco pix1; pix1.raw=i<<5; MAPc16bAMV[i]=(pix1.c16b.mr<<6)+(pix1.c16b.mg<<3)+pix1.c16b.mb; } } extern void _3do_InternalFrame(int cicles); void exteraclocker() { if((CELCYCLES-__smallcicles)>>7) { __smallcicles=CELCYCLES; //_3do_InternalFrame(64); } } unsigned int __fastcall mread(unsigned int addr) { unsigned int val; #ifdef SAFEMEMACCESS // addr&=0x3FFFFF; #endif val=_mem_read32(addr); CELCYCLES+=1; //exteraclocker(); return val; } void __fastcall mwrite(unsigned int addr, unsigned int val) { #ifdef SAFEMEMACCESS addr&=0x3FFFFF; #endif _mem_write32(addr,val); CELCYCLES+=2; //exteraclocker(); } void __fastcall mwriteh(unsigned int addr, unsigned short val) { #ifdef SAFEMEMACCESS addr&=0x3fffff; #endif CELCYCLES+=2; _mem_write16((addr^2),val); //exteraclocker(); } unsigned short __fastcall mreadh(unsigned int addr) { #ifdef SAFEMEMACCESS // addr&=0x3FFFFF; #endif CELCYCLES+=1; //exteraclocker(); return _mem_read16((addr^2)); } unsigned int __fastcall readPLUTDATA(unsigned int offset) { CELCYCLES+=4; if(PLUTDATA==0) return 0; return *(unsigned short*)(PLUTDATA+(offset^2)); //return ((unsigned short*)PAL_EXP)[((offset^2)>>1)]; } unsigned int __fastcall PDEC(unsigned int pixel, unsigned short * amv) { pdeco pix1; unsigned short resamv,pres; pix1.raw=pixel; switch(PRE0&PRE0_BPP_MASK/*pdec.mode*/) { default: //case 1: // 1 bit //case 2: // 2 bits //case 3: // 4 bits pres=PLUT[(pdec.plutaCCBbits+((pix1.raw&pdec.pixelBitsMask)*2))>>1]; //felix disable resamv=0x49; break; case 4: // 6 bits pres=PLUT[pix1.c6b.c]; pres=(pres&0x7FFF)+(pix1.c6b.pw<<15); //pmode=pix1.c6b.pw; ??? resamv=0x49; break; case 5: // 8 bits if(PRE0&PRE0_LINEAR) { pres=MAPu8b[pix1.raw&0xFF]; resamv=0x49; } else { pres=PLUT[pix1.c8b.c]; resamv=MAPc8bAMV[pix1.raw&0xFF]; } break; case 6: // 16 bits case 7: //*amv=0; //pres=0; //Transparent=0; if((PRE0&PRE0_LINEAR)) { pres=pix1.raw; //pres&=0x7ffe; //pres=0x11; // pres=(pres&0x7fff)+(pix1.u16b.p<<15);//pmode=pix1.u16b.p; ??? resamv=0x49; } else { pres=PLUT[pix1.c16b.c]; pres=(pres&0x7fff)|(pixel&0x8000); resamv=MAPc16bAMV[(pix1.raw>>5)&0x1FF]; //nop: pres=(pres&0x7fff)+(pix1.c16b.pw<<15);//pmode=pix1.c16b.pw; ??? } break; } *amv=resamv; //if(!(PRE1&PRE1_NOSWAP) && (CCBCTL0&(1<<27))) // pres=(pres&0x7ffe)|((pres&0x8000)>>15)|((pres&1)<<15); //if(!(CCBCTL0&0x80000000))pres=(pres&0x7fff)|((CCBCTL0>>15)&0x8000); pres=(pres|pdec.pmodeORmask)&pdec.pmodeANDmask; Transparent=( ((pres&0x7fff)==0x0) & pdec.tmask ); return pres; } unsigned int __fastcall PPROC(unsigned int pixel, unsigned int fpix, unsigned int amv) { AVS AV; PXC pixc; pdeco input1,out,pix1; //return pixel; pixc.raw=PIXC&0xffff; if((pixel&0x8000)) { pixc.raw=PIXC>>16; } //pres,fpix //now let's select the sources //1. av //2. input1 //3. input2 //pixc.raw=0; if(CCBFLAGS&CCB_USEAV) { AV.raw=pixc.meaning.av; } else { AV.avsignal.dv3=0; AV.avsignal.nCLIP=0; AV.avsignal.XTEND=0; AV.avsignal.NEG=0; } if(!pixc.meaning.s1) input1.raw=pixel; else input1.raw=fpix; #pragma pack(push,1) union { unsigned int raw; struct { char R; char B; char G; char a; }; } color1, color2, AOP, BOP; #pragma pack(pop) switch(pixc.meaning.s2) { case 0: color2.raw=0; break; case 1: color2.R=color2.G=color2.B=(pixc.meaning.av>>AV.avsignal.dv3); break; case 2: pix1.raw=fpix; color2.R=(pix1.r16b.r)>>AV.avsignal.dv3; color2.G=(pix1.r16b.g)>>AV.avsignal.dv3; color2.B=(pix1.r16b.b)>>AV.avsignal.dv3; break; case 3: pix1.raw=pixel; color2.R=(pix1.r16b.r)>>AV.avsignal.dv3; color2.G=(pix1.r16b.g)>>AV.avsignal.dv3; color2.B=(pix1.r16b.b)>>AV.avsignal.dv3; break; } switch(pixc.meaning.ms) { case 0: color1.R=PSCALAR[pixc.meaning.mxf][pixc.meaning.dv1][input1.r16b.r]; color1.G=PSCALAR[pixc.meaning.mxf][pixc.meaning.dv1][input1.r16b.g]; color1.B=PSCALAR[pixc.meaning.mxf][pixc.meaning.dv1][input1.r16b.b]; break; case 1: color1.R=PSCALAR[(amv>>6)&7][pixc.meaning.dv1][input1.r16b.r]; color1.G=PSCALAR[(amv>>3)&7][pixc.meaning.dv1][input1.r16b.g]; color1.B=PSCALAR[amv&7][pixc.meaning.dv1][input1.r16b.b]; break; case 2: pix1.raw=pixel; color1.R=PSCALAR[pix1.r16b.r>>2][pix1.r16b.r&3][input1.r16b.r]; color1.G=PSCALAR[pix1.r16b.g>>2][pix1.r16b.g&3][input1.r16b.g]; color1.B=PSCALAR[pix1.r16b.b>>2][pix1.r16b.b&3][input1.r16b.b]; break; case 3: color1.R=PSCALAR[0][pixc.meaning.dv1][input1.r16b.r]; color1.G=PSCALAR[0][pixc.meaning.dv1][input1.r16b.g]; color1.B=PSCALAR[0][pixc.meaning.dv1][input1.r16b.b]; break; } //ok -- we got the sources -- now RGB processing //AOP/BOP calculation AOP.raw=color1.raw&PXOR1; color1.raw&=PXOR2; if(AV.avsignal.NEG) BOP.raw=color2.raw^0x00ffffff; else { BOP.raw=color2.raw^color1.raw; } if(AV.avsignal.XTEND) { BOP.R=(BOP.R<<3)>>3; BOP.B=(BOP.B<<3)>>3; BOP.G=(BOP.G<<3)>>3; } color2.R=(AOP.R+BOP.R+AV.avsignal.NEG)>>pixc.meaning.dv2; color2.G=(AOP.G+BOP.G+AV.avsignal.NEG)>>pixc.meaning.dv2; color2.B=(AOP.B+BOP.B+AV.avsignal.NEG)>>pixc.meaning.dv2; //fprintf(flog,"%d %d %02x\t%02d %02d %02d\n", pixc.meaning.s2, pixc.meaning.ms, AV.raw, color2.R, color2.G, color2.B); if(!AV.avsignal.nCLIP) { if(color2.R<0) color2.R=0; else if(color2.R>31) color2.R=31; if(color2.G<0) color2.G=0; else if(color2.G>31) color2.G=31; if(color2.B<0) color2.B=0; else if(color2.B>31) color2.B=31; } out.raw=0; out.r16b.r=color2.R; out.r16b.g=color2.G; out.r16b.b=color2.B; if(!(CCBFLAGS&CCB_NOBLK) && out.raw==0) out.raw=1<<10; //if(!(PRE1&PRE1_NOSWAP) && (CCBCTL0&(1<<27))) // out.raw=(out.raw&0x7ffe)|((out.raw&0x8000)>>15)|((out.raw&1)<<15); //if(!(CCBCTL0&0x80000000))out.raw=(out.raw&0x7fff)|((CCBCTL0>>15)&0x8000); return out.raw; } unsigned int * _madam_GetRegs() { return mregs; } void __fastcall DrawPackedCel_New() { unsigned int start; unsigned short CURPIX,LAMV; //int i,j; // RMOD=RMODULO[REGCTL0]; // WMOD=WMODULO[REGCTL0]; unsigned int lastaddr; int xcur,ycur,xvert,yvert,xdown,ydown,hdx,hdy, scipw, wcnt; //int accx, accy, scipstr; //double dxcur,dycur,dxvert,dyvert,dxdown,dydown,dhdx,dhdy; start = PDATA; nrows=(PRE0&PRE0_VCNT_MASK)>>PRE0_VCNT_SHIFT; bpp=BPP[PRE0&PRE0_BPP_MASK]; offsetl=2; if(bpp < 8) offsetl=1; pixcount=0; compsize=30; SPRHI=nrows+1; calcx=0; //SPRWI=0; if(TestInitVisual(1))return; xvert=XPOS1616; yvert=YPOS1616; //return; if(TEXEL_FUN_NUMBER==0) { //return; for(currentrow=0;currentrow<(TEXTURE_HI_LIM);currentrow++) { //Initbitoper.Read(start,300); bitoper.AttachBuffer(start); offset=bitoper.Read(offsetl<<3); //bitoper.Read(offsetl<<3); //BITCALC=((offset+2)<<2)<<5; lastaddr=start+((offset+2)<<2); // calcx=0; eor=0; xcur=xvert; ycur=yvert; xvert+=VDX1616; yvert+=VDY1616; //if((ycur>>16)>CLIPXVAL)ycur=CLIPXVAL<<16; //if(ycur<0)ycur=0; if(TEXTURE_HI_START){TEXTURE_HI_START--;start=lastaddr;continue;} scipw=TEXTURE_WI_START; wcnt=scipw; while(!eor)//while not end of row { type=bitoper.Read(2);//bitoper.Read(2); if( (unsigned int)(bitoper.GetBytePose()+start) >= (lastaddr))type=0; //pixcount=bitoper.Read(6)+1; pixcount=bitoper.Read(6)+1; if(scipw) { if(type==0) break; if(scipw>=(int)(pixcount)) { scipw-=(pixcount); if(HDX1616)xcur+=HDX1616*(pixcount); if(HDY1616)ycur+=HDY1616*(pixcount); if(type==1)bitoper.Skip(bpp*pixcount);//bitoper.Skip(bpp*(pixcount)); else if(type==3)bitoper.Skip(bpp);//bitoper.Skip(bpp); continue; } else { if(HDX1616)xcur+=HDX1616*(scipw); if(HDY1616)ycur+=HDY1616*(scipw); pixcount-=scipw; if(type==1)bitoper.Skip(bpp*scipw);//bitoper.Skip(bpp*scipw); scipw=0; } } //if(wcnt>=TEXTURE_WI_LIM)break; wcnt+=(pixcount); if(wcnt>TEXTURE_WI_LIM) { pixcount-=(wcnt-TEXTURE_WI_LIM); //if(pixcount>>31)break; } switch(type) { case 0: //end of row eor=1; break; case 1: //PACK_LITERAL for(pix=0;pix<pixcount;pix++) { //CURPIX=PDEC(bitoper.Read(bpp),&LAMV); CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { //TexelDraw_Line(CURPIX, LAMV, xcur, ycur, 1); mwriteh((FBTARGET+XY2OFF((xcur>>16)<<2,ycur>>16,WMOD)),PPROC(CURPIX,mreadh((PIXSOURCE+XY2OFF((xcur>>16)<<2,ycur>>16,RMOD))),LAMV)); } xcur+=HDX1616; ycur+=HDY1616; } break; case 2: //PACK_TRANSPARENT // calcx+=(pixcount+1); if(HDX1616)xcur+=HDX1616*(pixcount); if(HDY1616)ycur+=HDY1616*(pixcount); break; case 3: //PACK_REPEAT //CURPIX=PDEC(bitoper.Read(bpp),&LAMV); CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { TexelDraw_Line(CURPIX, LAMV, xcur, ycur, (pixcount)); } if(HDX1616)xcur+=HDX1616*(pixcount); if(HDY1616)ycur+=HDY1616*(pixcount); break; }//type if(wcnt>=TEXTURE_WI_LIM)break; }//eor start=lastaddr; } } else if(TEXEL_FUN_NUMBER==1) { for(currentrow=0;currentrow<SPRHI;currentrow++) { bitoper.AttachBuffer(start); offset=bitoper.Read(offsetl<<3); BITCALC=((offset+2)<<2)<<5; lastaddr=start+((offset+2)<<2); eor=0; xcur=xvert; ycur=yvert; xvert+=VDX1616; yvert+=VDY1616; while(!eor)//while not end of row { type=bitoper.Read(2); if( (bitoper.GetBytePose()+start) >= (lastaddr))type=0; int __pix=bitoper.Read(6)+1; switch(type) { case 0: //end of row eor=1; break; case 1: //PACK_LITERAL while(__pix) { __pix--; CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { if(TexelDraw_Scale(CURPIX, LAMV, xcur>>16, ycur>>16, (xcur+(HDX1616+VDX1616))>>16, (ycur+(HDY1616+VDY1616))>>16))break; } xcur+=HDX1616; ycur+=HDY1616; } break; case 2: //PACK_TRANSPARENT // calcx+=(pixcount+1); xcur+=HDX1616*(__pix); ycur+=HDY1616*(__pix); __pix=0; break; case 3: //PACK_REPEAT CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { if(TexelDraw_Scale(CURPIX, LAMV, xcur>>16, ycur>>16, (xcur+(HDX1616*(__pix))+VDX1616)>>16, (ycur+(HDY1616*(__pix))+VDY1616)>>16))break; } xcur+=HDX1616*(__pix); ycur+=HDY1616*(__pix); __pix=0; break; }//type if(__pix)break; }//eor start=lastaddr; } } else { for(currentrow=0;currentrow<SPRHI;currentrow++) { bitoper.AttachBuffer(start); offset=bitoper.Read(offsetl<<3); BITCALC=((offset+2)<<2)<<5; lastaddr=start+((offset+2)<<2); eor=0; xcur=xvert; ycur=yvert; hdx=HDX1616; hdy=HDY1616; xvert+=VDX1616; yvert+=VDY1616; HDX1616+=HDDX1616; HDY1616+=HDDY1616; xdown=xvert; ydown=yvert; while(!eor)//while not end of row { type=bitoper.Read(2); if( (bitoper.GetBytePose()+start) >= (lastaddr))type=0; int __pix=bitoper.Read(6)+1; switch(type) { case 0: //end of row eor=1; break; case 1: //PACK_LITERAL while(__pix) { CURPIX=PDEC(bitoper.Read(bpp),&LAMV); __pix--; if(!Transparent) { if(TexelDraw_Arbitrary(CURPIX, LAMV, xcur, ycur, xcur+hdx, ycur+hdy, xdown+HDX1616, ydown+HDY1616, xdown, ydown))break; } xcur+=hdx; ycur+=hdy; xdown+=HDX1616; ydown+=HDY1616; } //pixcount=0; break; case 2: //PACK_TRANSPARENT // calcx+=(pixcount+1); xcur+=hdx*(__pix); ycur+=hdy*(__pix); xdown+=HDX1616*(__pix); ydown+=HDY1616*(__pix); __pix=0; break; case 3: //PACK_REPEAT CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { while(__pix) { __pix--; if(TexelDraw_Arbitrary(CURPIX, LAMV, xcur, ycur, xcur+hdx, ycur+hdy, xdown+HDX1616, ydown+HDY1616, xdown, ydown))break; xcur+=hdx; ycur+=hdy; xdown+=HDX1616; ydown+=HDY1616; } } else { xcur+=hdx*__pix; ycur+=hdy*__pix; xdown+=HDX1616*__pix; ydown+=HDY1616*__pix; __pix=0; } //pixcount=0; break; };//type if(__pix) break; }//eor start=lastaddr; } } SPRWI++; XPOS1616=xcur; XPOS=XPOS1616/65536.0; //YPOS1616=ycur; } void __fastcall DrawLiteralCel_New() { int i,j,xcur,ycur,xvert,yvert,xdown,ydown,hdx,hdy; unsigned short CURPIX,LAMV; // int get1,get2; // RMOD=RMODULO[REGCTL0]; // WMOD=WMODULO[REGCTL0]; bpp=BPP[PRE0&PRE0_BPP_MASK]; offsetl=2; if(bpp < 8) offsetl=1; pixcount=0; offset=(offsetl==1)?((PRE1&PRE1_WOFFSET8_MASK)>>PRE1_WOFFSET8_SHIFT):((PRE1&PRE1_WOFFSET10_MASK)>>PRE1_WOFFSET10_SHIFT); SPRWI=1+(PRE1&PRE1_TLHPCNT_MASK); SPRHI=((PRE0&PRE0_VCNT_MASK)>>PRE0_VCNT_SHIFT)+1; if(TestInitVisual(0))return; xvert=XPOS1616; yvert=YPOS1616; if(TEXEL_FUN_NUMBER==0) { //øðèôòû NFS SPRWI-=((PRE0>>24)&0xf); xvert+=TEXTURE_HI_START*VDX1616; yvert+=TEXTURE_HI_START*VDY1616; PDATA+=((offset+2)<<2)*TEXTURE_HI_START; if(SPRWI>TEXTURE_WI_LIM)SPRWI=TEXTURE_WI_LIM; for(i=TEXTURE_HI_START;i<TEXTURE_HI_LIM;i++) { bitoper.AttachBuffer(PDATA); BITCALC=((offset+2)<<2)<<5; xcur=xvert+TEXTURE_WI_START*HDX1616; ycur=yvert+TEXTURE_WI_START*HDY1616; bitoper.Skip(bpp*(((PRE0>>24)&0xf))); if(TEXTURE_WI_START)bitoper.Skip(bpp*(TEXTURE_WI_START)); xvert+=VDX1616; yvert+=VDY1616; for(j=TEXTURE_WI_START;j<SPRWI;j++) { CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { //TexelDraw_Line(CURPIX, LAMV, xcur, ycur, 1); mwriteh((FBTARGET+XY2OFF((xcur>>16)<<2,ycur>>16,WMOD)),PPROC(CURPIX,mreadh((PIXSOURCE+XY2OFF((xcur>>16)<<2,ycur>>16,RMOD))),LAMV)); } xcur+=HDX1616; ycur+=HDY1616; } PDATA+=(offset+2)<<2; } } else if(TEXEL_FUN_NUMBER==1) { SPRWI-=((PRE0>>24)&0xf); for(i=0;i<SPRHI;i++) { bitoper.AttachBuffer(PDATA); BITCALC=((offset+2)<<2)<<5; xcur=xvert; ycur=yvert; xvert+=VDX1616; yvert+=VDY1616; bitoper.Skip(bpp*(((PRE0>>24)&0xf))); for(j=0;j<SPRWI;j++) { CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { if(TexelDraw_Scale(CURPIX, LAMV, xcur>>16, ycur>>16, (xcur+HDX1616+VDX1616)>>16, (ycur+HDY1616+VDY1616)>>16))break; } xcur+=HDX1616; ycur+=HDY1616; } PDATA+=(offset+2)<<2; } } else { SPRWI-=((PRE0>>24)&0xf); for(i=0;i<SPRHI;i++) { bitoper.AttachBuffer(PDATA); BITCALC=((offset+2)<<2)<<5; xcur=xvert; ycur=yvert; hdx=HDX1616; hdy=HDY1616; xvert+=VDX1616; yvert+=VDY1616; HDX1616+=HDDX1616; HDY1616+=HDDY1616; bitoper.Skip(bpp*(((PRE0>>24)&0xf))); xdown=xvert; ydown=yvert; for(j=0;j<SPRWI;j++) { CURPIX=PDEC(bitoper.Read(bpp),&LAMV); if(!Transparent) { if(TexelDraw_Arbitrary(CURPIX, LAMV, xcur, ycur, xcur+hdx, ycur+hdy, xdown+HDX1616, ydown+HDY1616, xdown, ydown))break; } xcur+=hdx; ycur+=hdy; xdown+=HDX1616; ydown+=HDY1616; } PDATA+=(((offset+2)<<2)/*scipstr*/); } } XPOS1616=xcur; XPOS=XPOS1616/65536.0; //YPOS1616=ycur; } void __fastcall DrawLRCel_New() { int i,j,xcur,ycur,xvert,yvert,xdown,ydown,hdx,hdy; unsigned short CURPIX,LAMV; bpp=BPP[PRE0&PRE0_BPP_MASK]; offsetl=2; if(bpp < 8) offsetl=1; pixcount=0; offset=(offsetl==1)?((PRE1&PRE1_WOFFSET8_MASK)>>PRE1_WOFFSET8_SHIFT):((PRE1&PRE1_WOFFSET10_MASK)>>PRE1_WOFFSET10_SHIFT); offset+=2; SPRWI=1+(PRE1&PRE1_TLHPCNT_MASK); SPRHI=(((PRE0&PRE0_VCNT_MASK)>>PRE0_VCNT_SHIFT)<<1)+1; if(TestInitVisual(0))return; xvert=XPOS1616; yvert=YPOS1616; if(TEXEL_FUN_NUMBER==0) { xvert+=TEXTURE_HI_START*VDX1616; yvert+=TEXTURE_HI_START*VDY1616; //if(SPRHI>TEXTURE_HI_LIM)SPRHI=TEXTURE_HI_LIM; if(SPRWI>TEXTURE_WI_LIM)SPRWI=TEXTURE_WI_LIM; for(i=TEXTURE_HI_START;i<TEXTURE_HI_LIM;i++) { xcur=xvert+TEXTURE_WI_START*HDX1616; ycur=yvert+TEXTURE_WI_START*HDY1616; xvert+=VDX1616; yvert+=VDY1616; for(j=TEXTURE_WI_START;j<SPRWI;j++) { CURPIX=PDEC(mreadh((PDATA+XY2OFF(j<<2,i,offset<<2))),&LAMV); if(!Transparent) { //TexelDraw_Line(CURPIX, LAMV, xcur, ycur, 1); mwriteh((FBTARGET+XY2OFF((xcur>>16)<<2,ycur>>16,WMOD)),PPROC(CURPIX,mreadh((PIXSOURCE+XY2OFF((xcur>>16)<<2,ycur>>16,RMOD))),LAMV)); } xcur+=HDX1616; ycur+=HDY1616; } } } else if(TEXEL_FUN_NUMBER==1) { for(i=0;i<SPRHI;i++) { xcur=xvert; ycur=yvert; xvert+=VDX1616; yvert+=VDY1616; for(j=0;j<SPRWI;j++) { CURPIX=PDEC(mreadh((PDATA+XY2OFF(j<<2,i,offset<<2))),&LAMV); if(!Transparent) { if(TexelDraw_Scale(CURPIX, LAMV, xcur>>16, ycur>>16, (xcur+HDX1616+VDX1616)>>16, (ycur+HDY1616+VDY1616)>>16))break; } xcur+=HDX1616; ycur+=HDY1616; } } } else { //return; for(i=0;i<SPRHI;i++) { xcur=xvert; ycur=yvert; xvert+=VDX1616; yvert+=VDY1616; xdown=xvert; ydown=yvert; hdx=HDX1616; hdy=HDY1616; HDX1616+=HDDX1616; HDY1616+=HDDY1616; for(j=0;j<SPRWI;j++) { CURPIX=PDEC(mreadh((PDATA+XY2OFF(j<<2,i,offset<<2))),&LAMV); if(!Transparent) { if(TexelDraw_Arbitrary(CURPIX, LAMV, xcur, ycur, xcur+hdx, ycur+hdy, xdown+HDX1616, ydown+HDY1616, xdown, ydown))break; } xcur+=hdx; ycur+=hdy; xdown+=HDX1616; ydown+=HDY1616; } } } XPOS1616=xcur; XPOS=XPOS1616/65536.0; //YPOS1616=ycur; } unsigned int _madam_GetCELCycles() { unsigned int val=CELCYCLES; // 1 word = 2 CELCYCLES, 1 hword= 1 CELCYCLE, 8 CELCYCLE=1 CPU SCYCLE CELCYCLES=0; return val; } void _madam_Reset() { int i; for(i=0;i<2048;i++) mregs[i]=0; } void _madam_SetMapping(unsigned int flag) { MAPPING=flag; } #define ROAN_SHIFT 16 #define ROAN_TYPE int #include <math.h> unsigned int TexelCCWTest(double hdx, double hdy, double vdx, double vdy) { if(((hdx+vdx)*(hdy-vdy)+vdx*vdy-hdx*hdy)<0.0)return CCB_ACCW; return CCB_ACW; } bool QuardCCWTest(int wdt) { unsigned int tmp; if(((CCBFLAGS&CCB_ACCW)) && ((CCBFLAGS&CCB_ACW)))return false; tmp=TexelCCWTest(HDX,HDY,VDX,VDY); if(tmp!=TexelCCWTest(HDX,HDY,VDX+(HDDX)*(float)wdt,VDY+(HDDY)*(float)wdt))return false; if(tmp!=TexelCCWTest(HDX+(HDDX)*SPRHI,HDY+(HDDY)*SPRHI,VDX,VDY))return false; if(tmp!=TexelCCWTest(HDX+(HDDX)*SPRHI,HDY+(HDDY)*SPRHI,VDX+(HDDX)*(float)SPRHI*(float)wdt,VDY+(HDDY)*(float)SPRHI*(float)wdt))return false; if(tmp==(CCBFLAGS&(CCB_ACCW|CCB_ACW))) return true; return false; } __inline int __abs(int val) { if(val>0)return val; return -val; } int TestInitVisual(int packed) { int xpoints[4],ypoints[4]; if((!(CCBFLAGS&CCB_ACCW)) && (!(CCBFLAGS&CCB_ACW)))return -1; if(!packed) { xpoints[0]=XPOS1616>>16; xpoints[1]=(XPOS1616+HDX1616*SPRWI)>>16; xpoints[2]=(XPOS1616+VDX1616*SPRHI)>>16; xpoints[3]=(XPOS1616+VDX1616*SPRHI+ (HDX1616+HDDX1616*SPRHI)*SPRWI)>>16; if(xpoints[0]<0 && xpoints[1]<0 && xpoints[2]<0 && xpoints[3]<0) return -1; if(xpoints[0]>CLIPXVAL && xpoints[1]>CLIPXVAL && xpoints[2]>CLIPXVAL && xpoints[3]>CLIPXVAL) return -1; ypoints[0]=YPOS1616>>16; ypoints[1]=(YPOS1616+HDY1616*SPRWI)>>16; ypoints[2]=(YPOS1616+VDY1616*SPRHI)>>16; ypoints[3]=(YPOS1616+VDY1616*SPRHI+ (HDY1616+HDDY1616*SPRHI)*SPRWI)>>16; if(ypoints[0]<0 && ypoints[1]<0 && ypoints[2]<0 && ypoints[3]<0) return -1; if(ypoints[0]>CLIPYVAL && ypoints[1]>CLIPYVAL && ypoints[2]>CLIPYVAL && ypoints[3]>CLIPYVAL) return -1; } else { xpoints[0]=XPOS1616>>16; xpoints[1]=(XPOS1616+VDX1616*SPRHI)>>16; if( xpoints[0]<0 && xpoints[1]<0 && HDX1616<=0 && HDDX1616<=0 ) return -1; if(xpoints[0]>CLIPXVAL && xpoints[1]>CLIPXVAL && HDX1616>=0 && HDDX1616>=0 ) return -1; ypoints[0]=YPOS1616>>16; ypoints[1]=(YPOS1616+VDY1616*SPRHI)>>16; if(ypoints[0]<0 && ypoints[1]<0 && HDY1616<=0 && HDDY1616<=0 ) return -1; if(ypoints[0]>CLIPYVAL && ypoints[1]>CLIPYVAL && HDY1616>=0 && HDDY1616>=0 ) return -1; } //* if(HDDX1616==0 && HDDY1616==0) { if(HDX1616==0 && VDY1616==0) { if((HDY1616<0 && VDX1616>0)||(HDY1616>0 && VDX1616<0)) { if((CCBFLAGS&CCB_ACW)) { if(__abs(HDY1616)==0x10000 && __abs(VDX1616)==0x10000 && !((YPOS1616|XPOS1616)&0xffff)) { return Init_Line_Map(); //return 0; } else { Init_Scale_Map(); return 0; } } } else { if((CCBFLAGS&CCB_ACCW)) { if(__abs(HDY1616)==0x10000 && __abs(VDX1616)==0x10000 && !((YPOS1616|XPOS1616)&0xffff)) { return Init_Line_Map(); //return 0; } else { Init_Scale_Map(); return 0; } } } return -1; } else if(HDY1616==0 && VDX1616==0) { if((HDX1616<0 && VDY1616>0)||(HDX1616>0 && VDY1616<0)) { if((CCBFLAGS&CCB_ACCW)) { if(__abs(HDX1616)==0x10000 && __abs(VDY1616)==0x10000 && !((YPOS1616|XPOS1616)&0xffff)) { return Init_Line_Map(); //return 0; } else { Init_Scale_Map(); return 0; } } } else { if((CCBFLAGS&CCB_ACW)) { if(__abs(HDX1616)==0x10000 && __abs(VDY1616)==0x10000 && !((YPOS1616|XPOS1616)&0xffff)) { return Init_Line_Map(); //return 0; } else { Init_Scale_Map(); return 0; } } } return -1; } } //*/ if(QuardCCWTest((!packed)?SPRWI:2048))return -1; Init_Arbitrary_Map(); return 0; } int Init_Line_Map() { TEXEL_FUN_NUMBER=0; TEXTURE_WI_START=0; TEXTURE_HI_START=0; TEXTURE_HI_LIM=SPRHI; if(HDX1616<0) XPOS1616-=0x8000; else if(VDX1616<0) XPOS1616-=0x8000; if(HDY1616<0) YPOS1616-=0x8000; else if(VDY1616<0) YPOS1616-=0x8000; if(VDX1616<0) { if(((XPOS1616)-(((SPRHI-1)<<16)>>16))<0) TEXTURE_HI_LIM=(XPOS1616>>16)+1; if(TEXTURE_HI_LIM>SPRHI)TEXTURE_HI_LIM=SPRHI; } else if(VDX1616>0) { if(((XPOS1616+(SPRHI<<16))>>16)>CLIPXVAL) TEXTURE_HI_LIM=CLIPXVAL-(XPOS1616>>16)+1; } if(VDY1616<0) { if(((YPOS1616)-(((SPRHI-1)<<16)>>16))<0) TEXTURE_HI_LIM=(YPOS1616>>16)+1; if(TEXTURE_HI_LIM>SPRHI)TEXTURE_HI_LIM=SPRHI; } else if(VDY1616>0) { if(((YPOS1616+(SPRHI<<16))>>16)>CLIPYVAL) TEXTURE_HI_LIM=CLIPYVAL-(YPOS1616>>16)+1; } if(HDX1616<0) TEXTURE_WI_LIM=(XPOS1616>>16)+1; else if(HDX1616>0) TEXTURE_WI_LIM=CLIPXVAL-(XPOS1616>>16)+1; if(HDY1616<0) TEXTURE_WI_LIM=(YPOS1616>>16)+1; else if(HDY1616>0) TEXTURE_WI_LIM=CLIPYVAL-(YPOS1616>>16)+1; if(XPOS1616<0) { if(HDX1616<0)return -1; else if(HDX1616>0) TEXTURE_WI_START=-(XPOS1616>>16); if(VDX1616<0)return -1; else if(VDX1616>0) TEXTURE_HI_START=-(XPOS1616>>16); } else if((XPOS1616>>16)>CLIPXVAL) { if(HDX1616>0)return -1; else if(HDX1616<0) TEXTURE_WI_START=(XPOS1616>>16)-CLIPXVAL; if(VDX1616>0)return -1; else if(VDX1616<0) TEXTURE_HI_START=(XPOS1616>>16)-CLIPXVAL; } if(YPOS1616<0) { if(HDY1616<0)return -1; else if(HDY1616>0) TEXTURE_WI_START=-(YPOS1616>>16); if(VDY1616<0)return -1; else if(VDY1616>0) TEXTURE_HI_START=-(YPOS1616>>16); } else if((YPOS1616>>16)>CLIPYVAL) { if(HDY1616>0)return -1; else if(HDY1616<0) TEXTURE_WI_START=(YPOS1616>>16)-CLIPYVAL; if(VDY1616>0)return -1; else if(VDY1616<0) TEXTURE_HI_START=(YPOS1616>>16)-CLIPYVAL; } //if(TEXTURE_WI_START<((PRE0>>24)&0xf)) // TEXTURE_WI_START=((PRE0>>24)&0xf); //TEXTURE_WI_START+=(PRE0>>24)&0xf; //if(TEXTURE_WI_START<0)TEXTURE_WI_START=0; //if(TEXTURE_HI_START<0)TEXTURE_HI_START=0; //if(TEXTURE_HI_LIM>SPRHI)TEXTURE_HI_LIM=SPRHI; if(TEXTURE_WI_LIM<=0)return -1; return 0; } void Init_Scale_Map() { int deltax,deltay; TEXEL_FUN_NUMBER=1; if(HDX1616<0) XPOS1616-=0x8000; else if(VDX1616<0) XPOS1616-=0x8000; if(HDY1616<0) YPOS1616-=0x8000; else if(VDY1616<0) YPOS1616-=0x8000; deltax=HDX1616+VDX1616; deltay=HDY1616+VDY1616; if(deltax<0)TEXEL_INCX=-1; else TEXEL_INCX=1; if(deltay<0)TEXEL_INCY=-1; else TEXEL_INCY=1; TEXEL_INCX<<=2; TEXTURE_WI_START=0; TEXTURE_HI_START=0; } void Init_Arbitrary_Map() { TEXEL_FUN_NUMBER=2; TEXTURE_WI_START=0; TEXTURE_HI_START=0; } int __fastcall TexelDraw_Line(unsigned short CURPIX, unsigned short LAMV, int xcur, int ycur, int cnt) { int i=0; unsigned int pixel; unsigned int curr=0xffffffff, next; xcur>>=16; ycur>>=16; for(i=0;i<cnt;i++,xcur+=(HDX1616>>16),ycur+=(HDY1616>>16)) { next=mreadh((PIXSOURCE+XY2OFF((xcur)<<2,ycur,RMOD))); if(next!=curr){curr=next;pixel=PPROC(CURPIX,next,LAMV);} //pixel=PPROC(CURPIX,mreadh((PIXSOURCE+XY2OFF((xcur>>16)<<2,ycur>>16,RMOD))),LAMV); mwriteh((FBTARGET+XY2OFF((xcur)<<2,ycur,WMOD)),pixel); } return 0; } __inline uint16 readPIX(uint32 src, int i, int j) { src+=XY2OFF((((j)>>(RESSCALE))<<2),(i>>RESSCALE),WMOD); if(RESSCALE) return *((uint16*)&Mem[(src^2)+(((i&1)<<1)+((j)&1))*1024*1024]); return *((uint16*)&Mem[src^2]); } __inline void writePIX(uint32 src, int i, int j, uint16 pix) { src+=XY2OFF((((j)>>(RESSCALE))<<2),(i>>RESSCALE),WMOD); if(RESSCALE) *((uint16*)&Mem[(src^2)+(((i&1)<<1)+((j)&1))*1024*1024])=pix; else *((uint16*)&Mem[src^2])=pix; } int __fastcall TexelDraw_Scale(unsigned short CURPIX, unsigned short LAMV, int xcur, int ycur, int deltax, int deltay) { int i,j; unsigned int pixel; // unsigned int curr=-1, next; if((HDX1616<0) && (deltax)<0 && xcur<0) { return -1; } else if((HDY1616<0) && (deltay)<0 && ycur<0 ) { return -1; } else if((HDX1616>0) && (deltax)>(CLIPXVAL) && (xcur)>(CLIPXVAL)) { return -1; } else if((HDY1616>0) && ((deltay))>(CLIPYVAL) && (ycur)>(CLIPYVAL)) { return -1; } else { if((((int)xcur))==(((int)deltax)))return 0; for(i=((int)ycur);i!=(((int)deltay));i+=TEXEL_INCY) for(j=(((int)xcur))<<2;j!=((((int)deltax))<<2);j+=TEXEL_INCX) if((TESTCLIP((j<<14),(i<<16)))) { pixel=PPROC(CURPIX,mreadh((PIXSOURCE+XY2OFF(j,i,RMOD))),LAMV); //next=mreadh((PIXSOURCE+XY2OFF(j,i,RMOD))); //if(next!=curr){curr=next;pixel=PPROC(CURPIX,next,LAMV);} mwriteh((FBTARGET+XY2OFF(j,i,WMOD)),pixel); } } return 0; } __inline int TexelCCWTestSmp(int hdx, int hdy, int vdx, int vdy) { if(((hdx+vdx)*(hdy-vdy)+vdx*vdy-hdx*hdy)<0)return CCB_ACCW; return CCB_ACW; } int __fastcall TexelDraw_Arbitrary(unsigned short CURPIX, unsigned short LAMV, int xA, int yA, int xB, int yB, int xC, int yC, int xD, int yD) { int miny, maxy, i, xpoints[4], j, maxyt, maxxt, maxx; int updowns[4],cnt_cross, jtmp; unsigned int pixel; unsigned int curr=-1, next; xA>>=(16-RESSCALE); xB>>=(16-RESSCALE); xC>>=(16-RESSCALE); xD>>=(16-RESSCALE); yA>>=(16-RESSCALE); yB>>=(16-RESSCALE); yC>>=(16-RESSCALE); yD>>=(16-RESSCALE); if((xA)==(xB) && (xB)==(xC) && (xC)==(xD)) return 0; maxxt=((CLIPXVAL+1)<<RESSCALE); maxyt=((CLIPYVAL+1)<<RESSCALE); if(HDX1616<0 && HDDX1616<0) { if((xA<0) && (xB<0) && (xC<0) && (xD<0)) return -1; } if(HDX1616>0 && HDDX1616>0) { if(((xA)>=maxxt) && ((xB)>=maxxt) && ((xC)>=maxxt) && ((xD)>=maxxt)) return -1; } if(HDY1616<0 && HDDY1616<0) { if((yA<0) && (yB<0) && (yC<0) && (yD<0)) return -1; } if(HDY1616>0 && HDDY1616>0) { if(((yA)>=maxyt) && ((yB)>=maxyt) && ((yC)>=maxyt) && ((yD)>=maxyt)) return -1; } { miny=yA; if(miny>yB)miny=yB; if(miny>yC)miny=yC; if(miny>yD)miny=yD; maxy=yA; if(maxy<yB)maxy=yB; if(maxy<yC)maxy=yC; if(maxy<yD)maxy=yD; i=(miny); if(i<0)i=0; if(maxy<maxyt)maxyt=maxy; for(;i<maxyt;i++) { cnt_cross=0; if(i<(yB) && i>=(yA)) { xpoints[cnt_cross]=(int)((((xB-xA)*(i-yA))/(yB-yA)+xA)); updowns[cnt_cross++]=1; } else if(i>=(yB) && i<(yA)) { xpoints[cnt_cross]=(int)((((xA-xB)*(i-yB))/(yA-yB)+xB)); updowns[cnt_cross++]=0; } if(i<(yC) && i>=(yB)) { xpoints[cnt_cross]=(int)((((xC-xB)*(i-yB))/(yC-yB)+xB)); updowns[cnt_cross++]=1; } else if(i>=(yC) && i<(yB)) { xpoints[cnt_cross]=(int)((((xB-xC)*(i-yC))/(yB-yC)+xC)); updowns[cnt_cross++]=0; } if(i<(yD) && i>=(yC)) { xpoints[cnt_cross]=(int)((((xD-xC)*(i-yC))/(yD-yC)+xC)); updowns[cnt_cross++]=1; } else if(i>=(yD) && i<(yC)) { xpoints[cnt_cross]=(int)((((xC-xD)*(i-yD))/(yC-yD)+xD)); updowns[cnt_cross++]=0; } if(cnt_cross&1) { if(i<(yA) && i>=(yD)) { xpoints[cnt_cross]=(int)((((xA-xD)*(i-yD))/(yA-yD)+xD)); updowns[cnt_cross]=1; } else if(i>=(yA) && i<(yD)) { xpoints[cnt_cross]=(int)((((xD-xA)*(i-yA))/(yD-yA)+xA)); updowns[cnt_cross]=0; } } if(cnt_cross!=0) { if(xpoints[0]>xpoints[1]) { xpoints[1]+=xpoints[0]; xpoints[0]=xpoints[1]-xpoints[0]; xpoints[1]=xpoints[1]-xpoints[0]; jtmp=updowns[0]; updowns[0]=updowns[1]; updowns[1]=jtmp; } if(cnt_cross>2) { if(xpoints[1]>xpoints[2]) { xpoints[1]+=xpoints[2]; xpoints[2]=xpoints[1]-xpoints[2]; xpoints[1]=xpoints[1]-xpoints[2]; jtmp=updowns[1]; updowns[1]=updowns[2]; updowns[2]=jtmp; if(xpoints[0]>xpoints[1]) { xpoints[1]+=xpoints[0]; xpoints[0]=xpoints[1]-xpoints[0]; xpoints[1]=xpoints[1]-xpoints[0]; jtmp=updowns[0]; updowns[0]=updowns[1]; updowns[1]=jtmp; } } if(xpoints[2]>xpoints[3]) { xpoints[3]+=xpoints[2]; xpoints[2]=xpoints[3]-xpoints[2]; xpoints[3]=xpoints[3]-xpoints[2]; jtmp=updowns[2]; updowns[2]=updowns[3]; updowns[3]=jtmp; if(xpoints[1]>xpoints[2]) { xpoints[1]+=xpoints[2]; xpoints[2]=xpoints[1]-xpoints[2]; xpoints[1]=xpoints[1]-xpoints[2]; jtmp=updowns[1]; updowns[1]=updowns[2]; updowns[2]=jtmp; if(xpoints[0]>xpoints[1]) { xpoints[1]+=xpoints[0]; xpoints[0]=xpoints[1]-xpoints[0]; xpoints[1]=xpoints[1]-xpoints[0]; jtmp=updowns[0]; updowns[0]=updowns[1]; updowns[1]=jtmp; } } } if( ((CCBFLAGS&CCB_ACW)&&updowns[2]==0) || ((CCBFLAGS&CCB_ACCW)&&updowns[2]==1)) { j=xpoints[2]; if(j<0)j=0; maxx=xpoints[3]; if(maxx>maxxt)maxx=maxxt; for(;j<maxx;j++) { next=readPIX(PIXSOURCE, i, j); if(next!=curr){curr=next; pixel=PPROC(CURPIX,next,LAMV); } writePIX(FBTARGET, i, j, pixel); } } } if( ((CCBFLAGS&CCB_ACW)&&updowns[0]==0) || ((CCBFLAGS&CCB_ACCW)&&updowns[0]==1)) { j=xpoints[0]; if(j<0)j=0; maxx=xpoints[1]; if(maxx>maxxt)maxx=maxxt; for(;j<maxx;j++) { next=readPIX(PIXSOURCE, i, j); if(next!=curr){curr=next; pixel=PPROC(CURPIX,next,LAMV); } writePIX(FBTARGET, i, j, pixel); } } } } } return 0; }
[ "MaxAkaAltmer@yandex.ru" ]
MaxAkaAltmer@yandex.ru
05dd1a2e7d6fcd3f9f364f3e15a17c7889ff85f3
3051bd4bc0b7f3dace598880caf3364690688bc9
/plugins/MacAU/SpatializeDither/SpatializeDither.h
98a0d064ece9f229de443b4ff1e7f0c8cfc44cc6
[ "MIT" ]
permissive
Atavic/airwindows
aa6802409eb9c7254e405874a267af700cb6ba0d
ac8d974fb5bfa349af37412aa5e1fe2aeea1a8f6
refs/heads/master
2020-03-28T08:38:49.668758
2018-09-09T01:07:53
2018-09-09T01:07:53
147,978,977
1
0
MIT
2018-09-09T00:02:49
2018-09-09T00:02:49
null
UTF-8
C++
false
false
5,156
h
/* * File: SpatializeDither.h * * Version: 1.0 * * Created: 11/17/16 * * Copyright: Copyright � 2016 Airwindows, All Rights Reserved * * Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in * consideration of your agreement to the following terms, and your use, installation, modification * or redistribution of this Apple software constitutes acceptance of these terms. If you do * not agree with these terms, please do not use, install, modify or redistribute this Apple * software. * * In consideration of your agreement to abide by the following terms, and subject to these terms, * Apple grants you a personal, non-exclusive license, under Apple's copyrights in this * original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the * Apple Software, with or without modifications, in source and/or binary forms; provided that if you * redistribute the Apple Software in its entirety and without modifications, you must retain this * notice and the following text and disclaimers in all such redistributions of the Apple Software. * Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to * endorse or promote products derived from the Apple Software without specific prior written * permission from Apple. Except as expressly stated in this notice, no other rights or * licenses, express or implied, are granted by Apple herein, including but not limited to any * patent rights that may be infringed by your derivative works or by other works in which the * Apple Software may be incorporated. * * The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR * IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE * OR IN COMBINATION WITH YOUR PRODUCTS. * * IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, * REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER * UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN * IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include "AUEffectBase.h" #include "SpatializeDitherVersion.h" #if AU_DEBUG_DISPATCHER #include "AUDebugDispatcher.h" #endif #ifndef __SpatializeDither_h__ #define __SpatializeDither_h__ #pragma mark ____SpatializeDither Parameters // parameters //Alter the name if desired, but using the plugin name is a start enum { kNumberOfParameters=0 }; #pragma mark ____SpatializeDither class SpatializeDither : public AUEffectBase { public: SpatializeDither(AudioUnit component); #if AU_DEBUG_DISPATCHER virtual ~SpatializeDither () { delete mDebugDispatcher; } #endif virtual AUKernelBase * NewKernel() { return new SpatializeDitherKernel(this); } virtual ComponentResult GetParameterValueStrings(AudioUnitScope inScope, AudioUnitParameterID inParameterID, CFArrayRef * outStrings); virtual ComponentResult GetParameterInfo(AudioUnitScope inScope, AudioUnitParameterID inParameterID, AudioUnitParameterInfo &outParameterInfo); virtual ComponentResult GetPropertyInfo(AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, UInt32 & outDataSize, Boolean & outWritable ); virtual ComponentResult GetProperty(AudioUnitPropertyID inID, AudioUnitScope inScope, AudioUnitElement inElement, void * outData); virtual ComponentResult Initialize(); virtual bool SupportsTail () { return true; } virtual Float64 GetTailTime() {return (1.0/GetSampleRate())*0.0;} //in SECONDS! gsr * a number = in samples virtual Float64 GetLatency() {return (1.0/GetSampleRate())*0.0;} // in SECONDS! gsr * a number = in samples /*! @method Version */ virtual ComponentResult Version() { return kSpatializeDitherVersion; } protected: class SpatializeDitherKernel : public AUKernelBase // most of the real work happens here { public: SpatializeDitherKernel(AUEffectBase *inAudioUnit ) : AUKernelBase(inAudioUnit) { } // *Required* overides for the process method for this effect // processes one channel of interleaved samples virtual void Process( const Float32 *inSourceP, Float32 *inDestP, UInt32 inFramesToProcess, UInt32 inNumChannels, bool &ioSilence); virtual void Reset(); private: Float64 contingentErr; bool flip; }; }; //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #endif
[ "jinx6568@sover.net" ]
jinx6568@sover.net
cb2bdc69fe82468cd2546a0d08d9a179d0022ce2
ac51a57b898dc41ce726c15aff77d1750eacc4b0
/src/Screen.h
592a3d6509f89fa80af63a78c6f5918ca18dae4e
[ "MIT" ]
permissive
cadaver/oldschoolengine2-emscripten
14ee2749f32e4c88258977073ee384cea9089fda
6c578c2006254d8503e22e0d214ca7357381ea20
refs/heads/master
2020-03-23T10:35:27.117789
2019-08-17T14:26:51
2019-08-17T14:26:51
141,451,269
5
2
null
null
null
null
UTF-8
C++
false
false
1,236
h
// MIT License // // Copyright (c) 2018 Lasse Oorni // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #pragma once class Screen { public: static void Init(); static void Redraw(unsigned* data); };
[ "loorni@gmail.com" ]
loorni@gmail.com
4f78f45760927c3ad8ed016e0da71a7bf8ec1e38
9d74c3758df140202e49885062037a7e4076c5cf
/c3d source code/lib/cms/util/util.cpp
45a6f177dea573d1274cc8120e195feb5bb25b94
[]
no_license
skyforcetw/mygoodjob
4c3a787b651d8ea181b843848f829facf051fbfe
fcfd34203825282e4adaac5aff7396d06775ed15
refs/heads/master
2016-09-06T07:52:18.962274
2015-07-21T16:50:17
2015-07-21T16:50:17
32,502,731
0
0
null
null
null
null
BIG5
C++
false
false
8,417
cpp
#include <includeall.h> #pragma hdrstop #include "util.h" //C系統文件 #include <cstdarg> //C++系統文件 //其他庫頭文件 #include <boost/tokenizer.hpp> //本項目內頭文件 #include <debug.h> namespace cms { namespace util { //========================================================================== // Util //========================================================================== using namespace std; using namespace boost; using namespace java::lang; using namespace cms::colorformat; shared_ptr < string > Util::toString(wchar_t * wc) { size_t size = wcslen(wc); char *c = new char[size]; for (size_t x = 0; x != size; x++) { c[x] = wc[x]; }; shared_ptr < string > result(new string(c)); return result; }; shared_array < wchar_t > Util::towchar_t(string & str) { unsigned int size = str.size(); shared_array < wchar_t > wc(new wchar_t[size + 1]); for (unsigned int x = 0; x != size; x++) { wc[x] = str[x]; } wc[size] = '\0'; return wc; }; wchar_t *Util::towchar_t2(std::string & str) { const char *cstr = str.c_str(); unsigned int size = str.size() + 1; wchar_t *wchar = new wchar_t[size]; mbstowcs(wchar, cstr, size); return wchar; }; void Util::deleteExist(const std::string & filename) { deleteExist(filename.c_str()); }; void Util::deleteExist(const char *filename) { if (FileExists(filename)) { DeleteFile(filename); } }; void Util::deleteExist(const WideString & filename) { if (FileExists(filename)) { DeleteFile(filename); } }; bool Util::isFileExist(const std::string & filename) { return FileExists(filename.c_str()); } bptr < WideString > Util::toWideString(const std::string & s) { bptr < WideString > wstring(new WideString(s.c_str())); return wstring; }; void Util::shellExecute(const std::string & filename) { ShellExecute(null, null, filename.c_str(), null, null, SW_SHOW); }; #if defined(EXCEL_ACCESSIBLE) && defined(COLORSPACE) void Util::storeXYZxyVector(const std::string & filename, XYZ_vector_ptr XYZVector) { storeXYZxyVector(filename, XYZVector, "Gray Level"); }; void Util::storeXYZxyVector(const std::string & filename, XYZ_vector_ptr XYZVector, const std::string firstColumn) { Util::deleteExist(filename); SimpleExcelAccess excel(filename, Create, StringVector:: fromCString(6, firstColumn.c_str(), "X", "Y", "Z", "_x", "_y")); int size = XYZVector->size(); for (int x = 0; x != size; x++) { XYZ_ptr XYZ = (*XYZVector)[x]; Indep::CIExyY xyY(XYZ); string_vector_ptr values = StringVector::fromDouble (6, static_cast < double >(x), XYZ->X, XYZ->Y, XYZ->Z, xyY.x, xyY.y); excel.insert(values); } }; #endif //========================================================================== string_vector_ptr StringVector::fromCString(int count, ...) { string_vector_ptr result(new string_vector()); va_list num_list; va_start(num_list, count); for (int i = 0; i < count; i++) { const char *c = va_arg(num_list, const char *); string str(c); result->push_back(str); } va_end(num_list); return result; }; string_vector_ptr StringVector::fromString(int count, ...) { string_vector_ptr result(new string_vector()); va_list num_list; va_start(num_list, count); for (int i = 0; i < count; i++) { const string str = va_arg(num_list, const string); result->push_back(str); } va_end(num_list); return result; }; string_vector_ptr StringVector::fromString(int n, const std::string * strings) { string_vector_ptr result(new string_vector(n)); for (int x = 0; x < n; x++) { (*result)[x] = strings[x]; } return result; }; string_vector_ptr StringVector::fromDouble(int count, ...) { string_vector_ptr result(new string_vector()); va_list num_list; va_start(num_list, count); for (int i = 0; i < count; i++) { const double d = va_arg(num_list, const double); const string & str = _toString(d); result->push_back(str); } va_end(num_list); return result; }; #ifdef TNT_LIB string_vector_ptr StringVector::fromDoubleArray(double1D_ptr doubleArray) { string_vector_ptr result(new string_vector()); int size = doubleArray->dim1(); for (int x = 0; x < size; x++) { result->push_back(_toString((*doubleArray)[x])); } return result; }; string_vector_ptr StringVector::fromDoubleArray(double2D_ptr doubleArray, int n) { string_vector_ptr result(new string_vector()); int size = doubleArray->dim2(); for (int x = 0; x < size; x++) { result->push_back(_toString((*doubleArray)[n][x])); } return result; }; #endif void StringVector::setContent(string_vector_ptr vector, const std::string & content, int n, ...) { //int_array result(new int[n]); va_list num_list; va_start(num_list, n); for (int i = 0; i < n; i++) { const int d = va_arg(num_list, const int); //result[i] = d; (*vector)[d] = content; } va_end(num_list); }; string_vector_ptr StringVector::tokenize(const std:: string & content, const std::string & delim) { string_vector_ptr result(new string_vector()); #define TOKENIZER boost::tokenizer < boost::char_separator < char > > boost::char_separator < char >sep(delim.c_str()); TOKENIZER tokens(content, sep); for (TOKENIZER::iterator tok_iter = tokens.begin(); tok_iter != tokens.end(); ++tok_iter) { result->push_back(*tok_iter); } return result; }; //====================================================================== //====================================================================== // ByteBuffer //====================================================================== ByteBuffer::ByteBuffer(const unsigned int size):size(size) { buffer = new unsigned char[size]; }; ByteBuffer::~ByteBuffer() { delete[]buffer; }; unsigned char &ByteBuffer::operator[] (const size_t index) { if (index >= size) { throw IndexOutOfBoundsException(); } return buffer[index]; }; const unsigned char &ByteBuffer::operator[] (const size_t index) const { if (index >= size) { throw IndexOutOfBoundsException(); } return buffer[index]; }; //====================================================================== //====================================================================== // //====================================================================== DoubleBufferedCanvas::DoubleBufferedCanvas(TCanvas * canvas, int width, int height):canvas(canvas), width(width), height(height), doubleBuffered(true) { if (doubleBuffered) { bitmap = bptr < Graphics::TBitmap > (new Graphics::TBitmap()); bitmap->Canvas->Handle = CreateCompatibleDC(canvas->Handle); bitmap->Width = width; bitmap->Height = height; } }; TCanvas *DoubleBufferedCanvas::getDoubleBufferedCanvas() { if (doubleBuffered) { return bitmap->Canvas; } else { return canvas; } }; void DoubleBufferedCanvas::excute() { if (doubleBuffered) { BitBlt(canvas->Handle, 0, 0, width, height, bitmap->Canvas->Handle, 0, 0, SRCCOPY); } }; void DoubleBufferedCanvas::clear() { if (doubleBuffered) { TCanvas *canvas = bitmap->Canvas; canvas->Brush->Color = clBlack; canvas->FillRect(TRect(0, 0, width, height)); } }; //====================================================================== double SCurve::getAbsoluteInput(double normalizeInput) { return (end - start) * normalizeInput + start; }; double SCurve::sigmoidFunction(double t) { return 1. / (1 + Math::exp(-t)); }; SCurve::SCurve(double start, double end):start(start), end(end) { startValue = sigmoidFunction(start); endValue = sigmoidFunction(end); }; double SCurve::getValue(double normalizeInput) { double abs = getAbsoluteInput(normalizeInput); double value = sigmoidFunction(abs); return (value - startValue) / (endValue - startValue); }; }; };
[ "skyforce@1153854a-e0ba-11de-81d3-db62269da9c1" ]
skyforce@1153854a-e0ba-11de-81d3-db62269da9c1
cbbea2b9d8d225560138fe7d4d368c29fa23c79a
19e49186a2eb0064fc49a037462a2ca7787e6040
/game.cpp
9dc17bff806c78ef05bfdfeb35395bb78679cb4f
[ "MIT" ]
permissive
saurabhkb/tic-tac-toe
4dbd982bed29b3d8e0c06c74d02421e195543d0b
4f483637fd5535d9e40f3d3a6441c51e73635325
refs/heads/master
2021-01-11T21:25:18.154485
2017-01-12T21:37:52
2017-01-12T21:42:32
78,781,076
0
0
null
null
null
null
UTF-8
C++
false
false
2,379
cpp
#include "game.h" Game::Game() { for(int i = 0; i < 9; i++) { board[i] = BLANK; } } bool Game::is_valid_move(int move) { if((0 <= move) && (move <= 9) && (board[move] == BLANK)) { return true; } return false; } void Game::make_move(int player, int move) { board[move] = player; } int Game::is_game_won() { /* check all possible winning orders (horizontal, vertical, diagonal) */ int win_orders[8][3] = {{0, 1, 2}, {3, 4, 5}, {6, 7, 8}, {0, 3, 6}, {1, 4, 7}, {2, 5, 8}, {0, 4, 8}, {6, 4, 2}}; int pos1, pos2, pos3; for(int i = 0; i < 8; i++) { pos1 = win_orders[i][0]; pos2 = win_orders[i][1]; pos3 = win_orders[i][2]; if(board[pos1] != BLANK && (board[pos1] == board[pos2]) && (board[pos2] == board[pos3])) { return board[pos1]; } } return 0; } int Game::get_minimax_score(int player, int depth) { /* check if the game has already been won by a player */ int win = is_game_won(); if(win == player) { /* player won */ return MAX_SCORE - depth; } else if(win == -player) { /* opposing player won */ return -MAX_SCORE + depth; } /* For player, make a move on every possible empty position and play the rest of the game optimally. The move with the highest score will be the one finally chosen */ int highest_score = -MAX_SCORE, best_move = -1; for(int i = 0; i < 9; i++) { /* check if position i is empty */ if(board[i] != BLANK) { continue; } /* make the move */ board[i] = player; /* choose move that minimizes the maximum score move for the opponent */ int temp_score = -get_minimax_score(-player, depth + 1); if(temp_score > highest_score) { highest_score = temp_score; best_move = i; } /* undo the move */ board[i] = BLANK; } /* return the best score possible assuming that a legal move could be made (otherwise return 0) */ if(best_move == -1) { return 0; } else { return highest_score; } } int Game::find_best_move(int player) { int highest_score = -MAX_SCORE, best_move = -1; for(int i = 0; i < 9; i++) { if(board[i] != BLANK) { continue; } /* make the move */ board[i] = player; /* calculate score of the move */ int score = -get_minimax_score(-player, 0); if(score >= highest_score) { highest_score = score; best_move = i; } /* undo move */ board[i] = BLANK; } /* return the highest scoring move (if exists) */ return best_move; }
[ "me" ]
me
a16c7a15fec38db9b6e7cbaf2532ce6c249d2c7a
0e3387599933908a1abf982c11da2af407b5728f
/OOP_LAB_4_5/Figure.cpp
0f79c296ecc6cb9816c946573fa2c9c46448bbba
[]
no_license
rumeone/Oop_Figure
a434acd135d2f43e14e0960a70bd41dc7068e777
8715ec496b22e57214417f570c231b74bca46cad
refs/heads/master
2023-01-01T14:53:23.166809
2020-10-26T12:45:25
2020-10-26T12:45:25
307,369,713
0
0
null
null
null
null
UTF-8
C++
false
false
392
cpp
#include "Figure.h" #include <windows.h> #include <glut.h> #include <vector> #include <array> #include <vector> #include <ctime> Figure::Figure() { this->speedX = rand() % 10 / 1000.f * pow(-1, rand() % 2); this->speedY = rand() % 10 / 1000.f * pow(-1, rand() % 2); this->move = rand() % 2; printf("constructor Figure\n"); } Figure::~Figure() { printf("deconstructor Figure\n"); }
[ "yuaroslav_29@mail.ru" ]
yuaroslav_29@mail.ru
3eb8d70bc177ca7dfc569e34ce7ec85947785c32
5330918e825f8d373d3907962ba28215182389c3
/CMGTools/Common/src/MuonFactory.cc
55958b27d64a3c52958a334b864766eba67290a3
[]
no_license
perrozzi/cmg-cmssw
31103a7179222c7aa94f65e83d090a5cf2748e27
1f4cfd936da3a6ca78f25959a41620925c4907ca
refs/heads/CMG_PAT_V5_18_from-CMSSW_5_3_22
2021-01-16T23:15:58.556441
2017-05-11T22:43:15
2017-05-11T22:43:15
13,272,641
1
0
null
2017-05-11T22:43:16
2013-10-02T14:05:21
C++
UTF-8
C++
false
false
5,462
cc
#include "CMGTools/Common/interface/MuonFactory.h" #include "TrackingTools/AnalyticalJacobians/interface/JacobianCurvilinearToCartesian.h" #include "TrackingTools/TrajectoryParametrization/interface/GlobalTrajectoryParameters.h" #include "TrackingTools/TrajectoryParametrization/interface/CartesianTrajectoryError.h" cmg::MuonFactory::event_ptr cmg::MuonFactory::create(const edm::Event& iEvent, const edm::EventSetup& iSetup){ edm::Handle<pat::MuonCollection> muonCands; cmg::MuonFactory::event_ptr result(new cmg::MuonFactory::collection); iEvent.getByLabel(muonLabel_,muonCands); unsigned index = 0; for(pat::MuonCollection::const_iterator m = muonCands->begin(); m != muonCands->end(); ++m, ++index){ pat::MuonPtr muonPtr(muonCands, index); cmg::Muon mu(muonPtr); set(muonPtr,&mu,iEvent,iSetup); result->push_back(mu); } return result; } void cmg::MuonFactory::set(const pat::MuonPtr& input, cmg::Muon* const output, const edm::Event& iEvent, const edm::EventSetup& iSetup) const{ //set the generic quantities first leptonFactory_.set(input,output,iEvent,iSetup); leptonFactory_.set(getTrackerTrack(input),output,iEvent,iSetup); //now the muon like ones output->type_ = input->type(); output->isGlobal_ = cmg::toTriBool(input->isGlobalMuon()); output->isTracker_ = cmg::toTriBool(input->isTrackerMuon()); //NOT NEEDED as implemented in Muon.h accessing the source pointer //output->isPF_ = cmg::toTriBool(input->isPFMuon()); //this is not functional in release < 52X //assert(input->hasUserFloat("isPFMuon")); //this is normally added by PATPFMuonEmbedder module. see comment above //output->isPF_ = cmg::toTriBool(input->userFloat("isPFMuon")); //output->isTMOST_ = cmg::toTriBool(input->muonID("TMOneStationTight")); output->muonID_ = cmg::toTriBool(input->muonID(muonIDType_));//useless output->nMatches_ = input->numberOfMatches(); //NOT NEEDED as implemented in Muon.h accessing the source pointer //output->nMatchedStations_ = input->numberOfMatchedStations(); output->dB3D_ = input->dB( pat::Muon::PV3D ); output->edB3D_ = input->edB( pat::Muon::PV3D ); //get the magnetic field and calculate the covariance //matrix in cartesian coordinates if( input->muonBestTrack().isNonnull()) { edm::ESHandle<MagneticField> magfield; iSetup.get<IdealMagneticFieldRecord>().get(magfield); GlobalTrajectoryParameters gp(GlobalPoint(input->vx(), input->vy(), input->vz()), GlobalVector(input->muonBestTrack()->px(),input->muonBestTrack()->py(),input->muonBestTrack()->pz()), input->muonBestTrack()->charge(), magfield.product()); JacobianCurvilinearToCartesian curv2cart(gp); CartesianTrajectoryError cartErr= ROOT::Math::Similarity(curv2cart.jacobian(), input->muonBestTrack()->covariance()); AlgebraicSymMatrix66 m = cartErr.matrix(); output->covarianceMatrix_ = m; } //we need the tracker track for this reco::TrackRef track = input->track(); if(track.isNonnull() && track.isAvailable()){ output->pixelHits_ = track->hitPattern().numberOfValidPixelHits(); output->trackerHits_ = track->hitPattern().numberOfValidTrackerHits(); output->trackerLayersWithMeasurement_ = track->hitPattern().trackerLayersWithMeasurement(); //NOT NEEDED as implemented in Muon.h accessing the source pointer //output->pixelLayersWithMeasurement_ = track->hitPattern().pixelLayersWithMeasurement(); //output->tkNormChi2_ = track->normalizedChi2(); } reco::TrackRef globaltrack = input->globalTrack(); if(globaltrack.isNonnull() && globaltrack.isAvailable()){ output->globalNormChi2_ = globaltrack->normalizedChi2(); output->muonHits_ = globaltrack->hitPattern().numberOfValidMuonHits(); } // The following variables have been previously uniquely defined given a particular track type // reco::TrackRef combinedMuon = getTrack(input); // if(combinedMuon.isNonnull() && combinedMuon.isAvailable()){ // //output->pixelHits_ = combinedMuon->hitPattern().numberOfValidPixelHits(); // //output->trackerHits_ = combinedMuon->hitPattern().numberOfValidTrackerHits(); // output->globalNormChi2_ = combinedMuon->normalizedChi2(); // output->muonHits_ = combinedMuon->hitPattern().numberOfValidMuonHits(); // } } reco::TrackRef cmg::MuonFactory::getTrack(const pat::MuonPtr& input) const{ //get the track related quantities reco::TrackRef combinedMuon; switch (type_){ case Global: case Other: default: combinedMuon = input->globalTrack(); break; case Inner: combinedMuon = input->innerTrack(); break; case Track: combinedMuon = input->track(); break; } return combinedMuon; } reco::TrackRef cmg::MuonFactory::getTrackerTrack(const pat::MuonPtr& input) const{ //get the track related quantities reco::TrackRef combinedMuon; switch (type_){ case Global: case Other: case Inner: combinedMuon = input->innerTrack(); //NOTE: innerTrack() and track() return the same thing, therefore this function is useless break; case Track: combinedMuon = input->track(); break; } return combinedMuon; }
[ "colin.bernet@cern.ch" ]
colin.bernet@cern.ch
872a35f4bfcf89591f581cfea2e6b700da64e03a
4048bac4728ee762943b24bc9fc31a31506ba6e2
/ciu/CIU/ciu/Classes/Native/mscorlib1.cpp
55d5b961bca27286a6fa3e7d2b16b0f49d6e2462
[]
no_license
yasin30/watches
2e64ffffe3713f93aec13de133a4cd8c9a2e8087
0d172bb50dbed84c0a35b8fcfaa9ddf9e31c7c66
refs/heads/master
2020-12-31T23:56:51.747375
2020-02-10T11:52:03
2020-02-10T11:52:03
239,084,466
0
0
null
null
null
null
UTF-8
C++
false
false
1,675,855
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/Array.h" #include "icalls/mscorlib/System/Buffer.h" #include "icalls/mscorlib/System/CLRConfig.h" #include "il2cpp-object-internals.h" template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct VirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; 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, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1> struct GenericVirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericVirtActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, 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); } }; template <typename R, typename T1> struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1> struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R> 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 GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2> struct GenericInterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; 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); } }; // Mono.Globalization.Unicode.SimpleCollator struct SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89; // System.Action`1<System.Guid> struct Action_1_t914484DED737548EE8FABFA959036371C8235942; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA; // System.Array/ArrayEnumerator struct ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C; // System.ArraySpec struct ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74; // System.AttributeUsageAttribute struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388; // System.Attribute[] struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17; // System.BadImageFormatException struct BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9; // System.ByteMatcher struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.CLSCompliantAttribute struct CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6; // System.CannotUnloadAppDomainException struct CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89; // System.CharEnumerator struct CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.ArrayList struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4; // System.Collections.ArrayList/ArrayListEnumeratorSimple struct ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34; // System.Collections.Comparer struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B; // System.Collections.CompatibleComparer struct CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00; // System.Collections.Concurrent.CDSCollectionETWBCLProvider struct CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851; // System.Collections.Generic.ByteEqualityComparer struct ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B; // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> struct Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB; // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5; // System.Collections.Generic.EqualityComparer`1<System.Object> struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA; // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137; // System.Collections.Generic.InternalStringComparer struct InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> struct List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88; // System.Collections.Generic.NonRandomizedStringEqualityComparer struct NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9; // System.Collections.Generic.ObjectEqualityComparer struct ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.Hashtable/HashtableEnumerator struct HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9; // System.Collections.Hashtable/KeyCollection struct KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2; // System.Collections.Hashtable/SyncHashtable struct SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; // System.Collections.ICollection struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54; // System.Collections.IComparer struct IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t456EB67407D2045A257B66A3A25A825E883FD027; // System.Collections.IEnumerator struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A; // System.Collections.IEqualityComparer struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C; // System.Collections.IHashCodeProvider struct IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856; // System.Collections.LowLevelComparer struct LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1; // System.Collections.Queue struct Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3; // System.Collections.Queue/QueueEnumerator struct QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA; // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E; // System.Collections.SortedList/SortedListEnumerator struct SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E; // System.Collections.Stack struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643; // System.Collections.Stack/StackEnumerator struct StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Diagnostics.Tracing.ActivityTracker struct ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838; // System.Diagnostics.Tracing.EtwSession[] struct EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA; // System.Diagnostics.Tracing.EventCommandEventArgs struct EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15; // System.Diagnostics.Tracing.EventDispatcher struct EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB; // System.Diagnostics.Tracing.EventSource/EventMetadata[] struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94; // System.Diagnostics.Tracing.EventSource/OverideEventProvider struct OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> struct EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C; // System.Exception struct Exception_t; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC; // System.Globalization.Calendar struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1; // System.Globalization.CultureData struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8; // System.Globalization.SortVersion struct SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IConvertible struct IConvertible_tB52671A602A64FCCFD27EA5817E2A6C2B693D380; // System.IFormatProvider struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901; // System.IndexOutOfRangeException struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.Int64[] struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.MonoTypeInfo struct MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D; // System.RankException struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F; // System.Reflection.AmbiguousMatchException struct AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349; // System.Reflection.Assembly struct Assembly_t; // System.Reflection.Assembly/ResolveEventHolder struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E; // System.Reflection.Binder struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759; // System.Reflection.EventInfo struct EventInfo_t; // System.Reflection.EventInfo/AddEventAdapter struct AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Reflection.ICustomAttributeProvider struct ICustomAttributeProvider_tA83E69D2C560A6EF8DDA8C438BD4C80C2EA03D55; // System.Reflection.MemberFilter struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.RtFieldInfo struct RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579; // System.Reflection.RuntimeConstructorInfo struct RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object> struct ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98; // System.Runtime.CompilerServices.Ephemeron[] struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26; // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2; // System.String struct String_t; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782; // System.Text.StringBuilder struct StringBuilder_t; // System.Type struct Type_t; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1; // System.Type[] struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F; // System.UInt32[] struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; IL2CPP_EXTERN_C RuntimeClass* AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_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* CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_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* IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_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* InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_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* SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral0446EADE62BBE35D165AAAD965949803B6521089; IL2CPP_EXTERN_C String_t* _stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70; IL2CPP_EXTERN_C String_t* _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A; IL2CPP_EXTERN_C String_t* _stringLiteral084A80B35B220ED9C7F63662F6CE27D1A87EB893; IL2CPP_EXTERN_C String_t* _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D; IL2CPP_EXTERN_C String_t* _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9; IL2CPP_EXTERN_C String_t* _stringLiteral15C7457958B8D5AA390C0B6241FAEAE45284DF64; IL2CPP_EXTERN_C String_t* _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D; IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25; IL2CPP_EXTERN_C String_t* _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646; IL2CPP_EXTERN_C String_t* _stringLiteral1EA4F8C8D1E2BDF525B501F80B65A65C4D7A256C; IL2CPP_EXTERN_C String_t* _stringLiteral1F81AFFE48C2C2B337815693830EBEE586D9A96C; IL2CPP_EXTERN_C String_t* _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80; IL2CPP_EXTERN_C String_t* _stringLiteral29809FBAF5E4FEC88F4127F291473B14B195B3C7; IL2CPP_EXTERN_C String_t* _stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7; IL2CPP_EXTERN_C String_t* _stringLiteral2C1B23E451F9B7284192F8746A59CBEFB5F8470A; IL2CPP_EXTERN_C String_t* _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A; IL2CPP_EXTERN_C String_t* _stringLiteral2DA600BF9404843107A9531694F654E5662959E0; IL2CPP_EXTERN_C String_t* _stringLiteral30604394791BC9E659A2233492C5416B09AC67D5; IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D; IL2CPP_EXTERN_C String_t* _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60; IL2CPP_EXTERN_C String_t* _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011; IL2CPP_EXTERN_C String_t* _stringLiteral3BA5D088825A2BB3865D186C1B5F13FCA57D7FBE; IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; IL2CPP_EXTERN_C String_t* _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4; IL2CPP_EXTERN_C String_t* _stringLiteral4337CB30685E8A997FBBE9444610966756E1270F; IL2CPP_EXTERN_C String_t* _stringLiteral43FBBCBC7E4E152115A172D2183820EC22524224; IL2CPP_EXTERN_C String_t* _stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B; IL2CPP_EXTERN_C String_t* _stringLiteral4803F4151EEE6A399BE429B82E4EDED6135177C0; IL2CPP_EXTERN_C String_t* _stringLiteral49D4CB4A8336299524E887B24A053F8EA368AC73; IL2CPP_EXTERN_C String_t* _stringLiteral4A49B75057888FEF636189A3913772BBD0A0EEA0; IL2CPP_EXTERN_C String_t* _stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC; IL2CPP_EXTERN_C String_t* _stringLiteral4B82980DAF08650EBCD07B02A4F870A65CFD9297; IL2CPP_EXTERN_C String_t* _stringLiteral4C28A7D98B2E79E88DB5793B92CAC2973807E234; IL2CPP_EXTERN_C String_t* _stringLiteral4DB206F9DB18065B4394FC7E58AF1B5FED5DED50; IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC; IL2CPP_EXTERN_C String_t* _stringLiteral532E128909AB556DD052ED48219FF87E1482B7E8; IL2CPP_EXTERN_C String_t* _stringLiteral5734F14C44F430B146A89DA661A0503197EAD36E; IL2CPP_EXTERN_C String_t* _stringLiteral58590A8E3AC0A0EE865C1F1181F860909805C3C3; IL2CPP_EXTERN_C String_t* _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2; IL2CPP_EXTERN_C String_t* _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B; IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889; IL2CPP_EXTERN_C String_t* _stringLiteral5A9EA65861D4D8200086439273EC2355C3674264; IL2CPP_EXTERN_C String_t* _stringLiteral5AC0F1CCB9B56649A036EFB0B54AE6828ECA8363; IL2CPP_EXTERN_C String_t* _stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4; IL2CPP_EXTERN_C String_t* _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469; IL2CPP_EXTERN_C String_t* _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E; IL2CPP_EXTERN_C String_t* _stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7; IL2CPP_EXTERN_C String_t* _stringLiteral6D8AD060BC78FE7857A50CD1CE647997DE67E87F; IL2CPP_EXTERN_C String_t* _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432; IL2CPP_EXTERN_C String_t* _stringLiteral721C8C5C51906148BF57F662A1D9D497D2658685; IL2CPP_EXTERN_C String_t* _stringLiteral731634FF73E12680BA57A79BB4FFDBF6FA8A8F72; IL2CPP_EXTERN_C String_t* _stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80; IL2CPP_EXTERN_C String_t* _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD; IL2CPP_EXTERN_C String_t* _stringLiteral798D3C0CD01F7CDF9969473500381A70A011AB03; IL2CPP_EXTERN_C String_t* _stringLiteral79E496705A1B410233B3C4A5379A590462D60C37; IL2CPP_EXTERN_C String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860; IL2CPP_EXTERN_C String_t* _stringLiteral7F2FCC733B74AEB86335058889C314E313748F83; IL2CPP_EXTERN_C String_t* _stringLiteral81581597044514BF54D4F97266022FC991F3915E; IL2CPP_EXTERN_C String_t* _stringLiteral84A516841BA77A5B4648DE2CD0DFCB30EA46DBB4; IL2CPP_EXTERN_C String_t* _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8; IL2CPP_EXTERN_C String_t* _stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710; IL2CPP_EXTERN_C String_t* _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612; IL2CPP_EXTERN_C String_t* _stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A; IL2CPP_EXTERN_C String_t* _stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C; IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56; IL2CPP_EXTERN_C String_t* _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659; IL2CPP_EXTERN_C String_t* _stringLiteral8C02C6383418D741689393BE88DE4F9BB09E4F45; IL2CPP_EXTERN_C String_t* _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D; IL2CPP_EXTERN_C String_t* _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D; IL2CPP_EXTERN_C String_t* _stringLiteral8F94F72A6FCAE8B2F94FEDE0B6429F19FE405F01; IL2CPP_EXTERN_C String_t* _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D; IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA; IL2CPP_EXTERN_C String_t* _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988; IL2CPP_EXTERN_C String_t* _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD; IL2CPP_EXTERN_C String_t* _stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04; IL2CPP_EXTERN_C String_t* _stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE; IL2CPP_EXTERN_C String_t* _stringLiteral99F4F93397464B9B22D889334853A1E3A78A5641; IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B; IL2CPP_EXTERN_C String_t* _stringLiteral9F7A8DB88B79D714FDF244C54DAED0DF890BE664; IL2CPP_EXTERN_C String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3; IL2CPP_EXTERN_C String_t* _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676; IL2CPP_EXTERN_C String_t* _stringLiteralA573B540D2DDE90BA6DA3B9D6286C8EC60C10044; IL2CPP_EXTERN_C String_t* _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE; IL2CPP_EXTERN_C String_t* _stringLiteralA70F1BF46F12CF5517DAB14A442D77DB24FDDC26; IL2CPP_EXTERN_C String_t* _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90; IL2CPP_EXTERN_C String_t* _stringLiteralA7F719BF74E49F78DA1A4EDFED258B184A7054FF; IL2CPP_EXTERN_C String_t* _stringLiteralAA6D5DDB95B6B39F2D84E6E17984CEC320ED0F39; IL2CPP_EXTERN_C String_t* _stringLiteralAC3617F3A0C9B39A384E38BCEDF346BE891CAAE5; IL2CPP_EXTERN_C String_t* _stringLiteralB1564F6B1512CBFA3CFCEBC9A5BADB6B239954F1; IL2CPP_EXTERN_C String_t* _stringLiteralB3EEB66EC519D8B1B40897F0EE3BDFC97D6DA28B; IL2CPP_EXTERN_C String_t* _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C; IL2CPP_EXTERN_C String_t* _stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD; IL2CPP_EXTERN_C String_t* _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C; IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; IL2CPP_EXTERN_C String_t* _stringLiteralBB682E5F54E22D6CDF0694F6B2B8CA34656AAEC9; IL2CPP_EXTERN_C String_t* _stringLiteralBC5C4002E88BA9FC743F3B13F5B24641F5F9B9F1; IL2CPP_EXTERN_C String_t* _stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8; IL2CPP_EXTERN_C String_t* _stringLiteralBE51AF91F50F81AA82DB4AA438A59E58D533DB76; IL2CPP_EXTERN_C String_t* _stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF; IL2CPP_EXTERN_C String_t* _stringLiteralC2955FD4AA8C860BCAD201C5B579125BC7420A7D; IL2CPP_EXTERN_C String_t* _stringLiteralC3EE137D4F22EB06ED1351D644F3674592C90836; IL2CPP_EXTERN_C String_t* _stringLiteralC4418E14A221309A58063652B326DA6B15B8C48A; IL2CPP_EXTERN_C String_t* _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361; IL2CPP_EXTERN_C String_t* _stringLiteralCA9DBD57FE93DBA1A159E859C91C3D45DCCEA5E0; IL2CPP_EXTERN_C String_t* _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE; IL2CPP_EXTERN_C String_t* _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77; IL2CPP_EXTERN_C String_t* _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2; IL2CPP_EXTERN_C String_t* _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9; IL2CPP_EXTERN_C String_t* _stringLiteralD1FC16D9CCC8BB317CAD3A233C43968EDF25DECF; IL2CPP_EXTERN_C String_t* _stringLiteralD32C0B5C9D09FE2946F0D3970CAE922B4EC90A3C; IL2CPP_EXTERN_C String_t* _stringLiteralD3BB63BF7137B1804A34F9470FC40500AA311F09; IL2CPP_EXTERN_C String_t* _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46; IL2CPP_EXTERN_C String_t* _stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD; IL2CPP_EXTERN_C String_t* _stringLiteralD6DC02C9D8E4C868B5A707AFF489D319C7474F1B; IL2CPP_EXTERN_C String_t* _stringLiteralD99412487FA1DE75405C1F410AFB3F05A3953A9A; IL2CPP_EXTERN_C String_t* _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C; IL2CPP_EXTERN_C String_t* _stringLiteralDAD53F4604A2CA0126F8BD8633CC0B25F089B4E9; IL2CPP_EXTERN_C String_t* _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5; IL2CPP_EXTERN_C String_t* _stringLiteralDD4F9004C2B0F33E8BB2DA348539883E15A3683A; IL2CPP_EXTERN_C String_t* _stringLiteralDEB3608672319EF258C05F3590E2E46E95BC5F1D; IL2CPP_EXTERN_C String_t* _stringLiteralDECE05484839DF110745B0A800297C33CC078287; IL2CPP_EXTERN_C String_t* _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4; IL2CPP_EXTERN_C String_t* _stringLiteralE45E3DB3ABF33F174FB8DDAE90335498382C3C69; IL2CPP_EXTERN_C String_t* _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A; IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; IL2CPP_EXTERN_C String_t* _stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497; IL2CPP_EXTERN_C String_t* _stringLiteralE5651C683F14C95AA972CFDBC300D9FECFE02019; IL2CPP_EXTERN_C String_t* _stringLiteralE62577734DC95246ED5E8213FAE683CEE96DDAC8; IL2CPP_EXTERN_C String_t* _stringLiteralEA19AED74C943D2A2783BB26F4229A162DA1F082; IL2CPP_EXTERN_C String_t* _stringLiteralEB43350789911DF5B5D17EB5DFF35D072DFF48B7; IL2CPP_EXTERN_C String_t* _stringLiteralECDB6AE7F656B2F85D114FEBC2E471496FCA6946; IL2CPP_EXTERN_C String_t* _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B; IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556; IL2CPP_EXTERN_C String_t* _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123; IL2CPP_EXTERN_C String_t* _stringLiteralF1931330233408109E5BEE8AB9BEA8EF37D1BF01; IL2CPP_EXTERN_C String_t* _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F; IL2CPP_EXTERN_C String_t* _stringLiteralF27FEDE2220BCD326AEE3E86DDFD4EBD0FE58CB9; IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5; IL2CPP_EXTERN_C String_t* _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2; IL2CPP_EXTERN_C String_t* _stringLiteralF75A366185FA685A8394FE9828B6E63715C3E110; IL2CPP_EXTERN_C String_t* _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3; IL2CPP_EXTERN_C String_t* _stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049; IL2CPP_EXTERN_C String_t* _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565; IL2CPP_EXTERN_C String_t* _stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377; IL2CPP_EXTERN_C String_t* _stringLiteralFBA88196CE9952C9BF4FA1DBA8CC7F1B418E4773; IL2CPP_EXTERN_C String_t* _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6; IL2CPP_EXTERN_C String_t* _stringLiteralFF3FDE08B4063F92C5AE58D57837851945AEC18F; IL2CPP_EXTERN_C const RuntimeMethod* ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_MoveNext_m44B1A29111DEB18390CBB7C336575906A0F14ABE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_Reset_m2589CBC0F391537C700CAF174C29B7E1A8CF9A85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_CopyTo_m85D5F24A2D7F3D8D406FA460C74CB93096401600_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_Insert_m77BB0CB47F6957559395C42506DAD86A7586C2C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_RemoveAt_m604511EBE073D76873D5B79449E98ADD97EE8A6E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_ToArray_mA747CA021786BE2729CFFD4B9CE2BF57A3990C76_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_get_Item_m1BA9F33368DA08EB91C1077010214C4D47113126_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_set_Capacity_m37AF3E266AF9C2FCF18521954F8990191441F8FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayList_set_Item_m7FFC94448E2745B19E0D3A4621E7B68AF5D1A379_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveHashCodeProvider_GetHashCode_m659ED12E81DB107B53E20F18AFCC475410DD131F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator__ctor_m7C7C726A40CC9BB2FB9FF96C172BCDA6A6B653D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_GetObjectData_m7B140702669F0DDE13D5888DB99DE1E40D3AC761_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CompatibleComparer_GetHashCode_m40239FA0DAB3B6B408A289BEF734C9B8DC524182_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_MoveNext_m9517CB795206780030F5231EB58BC2A0B04D3B65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_Reset_m1B23469BFCF718FF78AA504A91E93AB733AE4C55_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Current_m3C665E408D870A47554A7552A087CB881C969618_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Entry_m09E4C8736E1303C56569896F34943C95F4D62222_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Key_m09B7F9811379917D1101DFF85FA577133A62AD6A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Value_mEB78D8A682883CABCBAFD20B340BD827CB71561E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_ContainsKey_mF8D5E3E33831B9A7EA5365B580EE03B234975EC2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Remove_m014FCCA149EB4F54A018B29D4469FC407C1787ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_get_Item_m318E99E98C0D89181C50EE2A01907E2530C61845_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LowLevelComparer_Compare_m950FD3BE5F5E45A8603E7F41582B14316F91863E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* QueueEnumerator_MoveNext_mD32B729CB15A926B5CD49F1A1227DE43601953F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* QueueEnumerator_Reset_mA1E9C48A119A6E6A98564BD3201D2B5E528986A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_Dequeue_m76B0ECD1EFE53DF0AAFEB184912007322CDE7EB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue_Peek_m494EF9110AE8F89DC0999577445BD8FBBCA79BB4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_GetByIndex_m607E058040C2B336081FC368D6CEE51AE5D69957_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_GetKey_m07A9F7D84DDBDC427636D5BAA4513C7E510006FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_IndexOfKey_m46FB7175A30C6A18230D8D0841DFF593E3D2425D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_RemoveAt_m5EB61F5A3B6D5DD93169325D7EEF41C34547813D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_set_Capacity_mBE3FA4CD3FFF4D79E340C95007ED475AC96EFB52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SortedList_set_Item_m070CA28A6691AB17E1A464BA43975503365EE0CC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable_ContainsKey_m2535E9B4F57EA6CF6D26945A835838B4AD24EEDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable_GetObjectData_m893D45F4B0C1EE87E4A89A8EF33ED30978A29C38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable__ctor_m818995791B476F454D5EF898AF16DE75CC0C2EB1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var; IL2CPP_EXTERN_C const uint32_t ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayListEnumeratorSimple_MoveNext_m44B1A29111DEB18390CBB7C336575906A0F14ABE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayListEnumeratorSimple_Reset_m2589CBC0F391537C700CAF174C29B7E1A8CF9A85_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayListEnumeratorSimple__cctor_mDFC4483845B6790B4EF8A2DDAE737A32F7BA5745_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayListEnumeratorSimple__ctor_m756A442DA7502E724BC9F670BC872C3C0CFDC16A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_Clone_mAE2BA31BE8F770F96E32EE896F8F720263C5E5D7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_CopyTo_m85D5F24A2D7F3D8D406FA460C74CB93096401600_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_GetEnumerator_mB8CE3D18D87278167F21A8491DE8726F3E56A683_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_Insert_m77BB0CB47F6957559395C42506DAD86A7586C2C6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_RemoveAt_m604511EBE073D76873D5B79449E98ADD97EE8A6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_ToArray_m94739ABC95D4D300E757047A082400297FDD8FA5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_ToArray_mA747CA021786BE2729CFFD4B9CE2BF57A3990C76_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList__cctor_m728B9FB508863097CCE6A679225695E064BD273A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_get_Item_m1BA9F33368DA08EB91C1077010214C4D47113126_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_get_SyncRoot_mBEA7D650600CCD432BA113764EF8D3641400F8E9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_set_Capacity_m37AF3E266AF9C2FCF18521954F8990191441F8FB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayList_set_Item_m7FFC94448E2745B19E0D3A4621E7B68AF5D1A379_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer_Equals_m9289C7A7A89DC4B9F90EBD2724A9844B7199E8AA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CDSCollectionETWBCLProvider__cctor_m0C980520109724C58B22184B36F34E428C8D99D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CDSCollectionETWBCLProvider__ctor_m6FA90B160A07F2E2F2D90674B092B679C8E82C69_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer_Compare_m25D85D2341A5D722725DB24DFF2FEE89BDB982D2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer__ctor_mF59F5E497B30AB1FC035C293912FB8D4D3AF3D6E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider_GetHashCode_m659ED12E81DB107B53E20F18AFCC475410DD131F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider__ctor_m6D2AC9A88ACE3D34B91BD33FC15984D5B3CA7860_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharEnumerator__ctor_m7C7C726A40CC9BB2FB9FF96C172BCDA6A6B653D3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsLower_mE89996F09044C07A991164C7E6A4A9C02867CC90_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsSeparator_m63614CEC080B97A4F9DBC3EE000CFF7BCDC5ED8A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToLower_mEC53192820FB75E0714C1C874F6BC1E89BDBBC74_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Comparer_GetObjectData_m7B140702669F0DDE13D5888DB99DE1E40D3AC761_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Comparer__cctor_mAFC5C38781682A079D2C482F6A56DDEA46E86649_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Comparer__ctor_m76728DE9740F679A88C195D8D46D65D32A401D31_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t CompatibleComparer_GetHashCode_m40239FA0DAB3B6B408A289BEF734C9B8DC524182_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_com_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_pinvoke_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DictionaryHashHelpers__cctor_m977B60DD39BDF7A143C377F55C3018153122175C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashHelpers_IsPrime_mB435CA4898F891CCFE7227DB6721A9803E35099B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashHelpers__cctor_m73E11D520498610CE0C26CA94967CEDA5969111D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_MoveNext_m9517CB795206780030F5231EB58BC2A0B04D3B65_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_Reset_m1B23469BFCF718FF78AA504A91E93AB733AE4C55_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_get_Current_m3C665E408D870A47554A7552A087CB881C969618_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_get_Entry_m09E4C8736E1303C56569896F34943C95F4D62222_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_get_Key_m09B7F9811379917D1101DFF85FA577133A62AD6A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t HashtableEnumerator_get_Value_mEB78D8A682883CABCBAFD20B340BD827CB71561E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_Clone_mD697F5066D65C43824AEE21166D2A13A8C48CCED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_ContainsKey_mF8D5E3E33831B9A7EA5365B580EE03B234975EC2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_CopyEntries_mFA218BB5B5B0109BBE5D84BE71989E08E1C6DEAB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_GetEnumerator_mB0ADCB33B48CAFAC8FFD293A6B9A52FAB04E86BC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_GetHash_m3C9E2CA3CD91D77A371C95CD6A779007D5737524_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_KeyEquals_mA81BC468DA574BB7F49C21FA7DDFB29756715D1E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_Remove_m014FCCA149EB4F54A018B29D4469FC407C1787ED_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_System_Collections_IEnumerable_GetEnumerator_m0EB021D95A8CCD7551ABDCED313551726FD5BF58_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable__ctor_m7CD7D10246451D96AD05E8A593AA1E74412FA453_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable__ctor_mD46ADBCA982FA8472FC5BB378805806A4E9B0066_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_expand_mD61249F8FD7525FB392A38813E65A1E932FD6CA9_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_get_Item_m318E99E98C0D89181C50EE2A01907E2530C61845_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_get_Keys_m45C0AA6F70F3225F84E144BD91DCE789F7FB4AC1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_get_SyncRoot_mBCF12760C5F3B488A6716AC604BCBB810510E937_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t KeyCollection_GetEnumerator_mDDD12D3A054E820FB09D8F856F3630766EC5A79B_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t KeyValuePair_PairToString_m6BF6066704BEFFC9313BDE0D4B6D75E3A9056B03_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t LowLevelComparer_Compare_m950FD3BE5F5E45A8603E7F41582B14316F91863E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t LowLevelComparer__cctor_m2DCDAD27BA9553BF9C77B200A37B4C26B5146B53_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t NonRandomizedStringEqualityComparer__ctor_m62FF1B8200DF9AB290FA6632364B9C47E2B74B9C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t ObjectEqualityComparer__cctor_mADDEF8463750911807053CC6A98D57B1645024B5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t QueueEnumerator_MoveNext_mD32B729CB15A926B5CD49F1A1227DE43601953F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t QueueEnumerator_Reset_mA1E9C48A119A6E6A98564BD3201D2B5E528986A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_Clone_m8827A33C420FB6B1432366B24D98FE7280729D66_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_Dequeue_m76B0ECD1EFE53DF0AAFEB184912007322CDE7EB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_GetEnumerator_m8730E4BCDE57279CFC39992DB55CA7D6E508E2E6_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_Peek_m494EF9110AE8F89DC0999577445BD8FBBCA79BB4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue_SetCapacity_mB3C8692505E4094B25C932B8AED6EB6A032283A0_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_Clone_m764F0897536D23F33ECE5691E3009C24D551F78C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_GetByIndex_m607E058040C2B336081FC368D6CEE51AE5D69957_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_GetEnumerator_mB2E4690D0E5C0303FBC478A7EE26B460AD07BB1F_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_GetKey_m07A9F7D84DDBDC427636D5BAA4513C7E510006FC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_IndexOfKey_m46FB7175A30C6A18230D8D0841DFF593E3D2425D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_Init_m117CAD874BDC5E2559B518368A167CD4011F54C5_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_RemoveAt_m5EB61F5A3B6D5DD93169325D7EEF41C34547813D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_System_Collections_IEnumerable_GetEnumerator_mE8559C93A4F9E049FA398E5DF0635B5D4AE8FE5D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList__cctor_m6A728310AF9D3D2330C935724E8B7D211A5EC016_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_set_Capacity_mBE3FA4CD3FFF4D79E340C95007ED475AC96EFB52_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SortedList_set_Item_m070CA28A6691AB17E1A464BA43975503365EE0CC_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SyncHashtable_Clone_m13B484BC6DD78F6EBD4E2C23F242B660CD5C3EFD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SyncHashtable_ContainsKey_m2535E9B4F57EA6CF6D26945A835838B4AD24EEDD_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SyncHashtable_GetObjectData_m893D45F4B0C1EE87E4A89A8EF33ED30978A29C38_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t SyncHashtable__ctor_m818995791B476F454D5EF898AF16DE75CC0C2EB1_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_com_FromNativeMethodDefinition_MetadataUsageId; IL2CPP_EXTERN_C const uint32_t bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_pinvoke_FromNativeMethodDefinition_MetadataUsageId; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com; struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A; struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F; struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A; struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; 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 struct Il2CppArrayBounds; // System.Array // System.Array_ArrayEnumerator struct ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C : public RuntimeObject { public: // System.Array System.Array_ArrayEnumerator::_array RuntimeArray * ____array_0; // System.Int32 System.Array_ArrayEnumerator::_index int32_t ____index_1; // System.Int32 System.Array_ArrayEnumerator::_endIndex int32_t ____endIndex_2; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____array_0)); } inline RuntimeArray * get__array_0() const { return ____array_0; } inline RuntimeArray ** get_address_of__array_0() { return &____array_0; } inline void set__array_0(RuntimeArray * value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____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__endIndex_2() { return static_cast<int32_t>(offsetof(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C, ____endIndex_2)); } inline int32_t get__endIndex_2() const { return ____endIndex_2; } inline int32_t* get_address_of__endIndex_2() { return &____endIndex_2; } inline void set__endIndex_2(int32_t value) { ____endIndex_2 = value; } }; // System.ArraySpec struct ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 : public RuntimeObject { public: // System.Int32 System.ArraySpec::dimensions int32_t ___dimensions_0; // System.Boolean System.ArraySpec::bound bool ___bound_1; public: inline static int32_t get_offset_of_dimensions_0() { return static_cast<int32_t>(offsetof(ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970, ___dimensions_0)); } inline int32_t get_dimensions_0() const { return ___dimensions_0; } inline int32_t* get_address_of_dimensions_0() { return &___dimensions_0; } inline void set_dimensions_0(int32_t value) { ___dimensions_0 = value; } inline static int32_t get_offset_of_bound_1() { return static_cast<int32_t>(offsetof(ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970, ___bound_1)); } inline bool get_bound_1() const { return ___bound_1; } inline bool* get_address_of_bound_1() { return &___bound_1; } inline void set_bound_1(bool value) { ___bound_1 = value; } }; // System.Attribute struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject { public: public: }; // System.BitConverter struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE : public RuntimeObject { public: public: }; struct BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields { public: // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_0; public: inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast<int32_t>(offsetof(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields, ___IsLittleEndian_0)); } inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; } inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; } inline void set_IsLittleEndian_0(bool value) { ___IsLittleEndian_0 = value; } }; // System.Buffer struct Buffer_tD349FB75CAAFBDA372517CF2FB5DF2DCDCF2C675 : public RuntimeObject { public: public: }; // System.ByteMatcher struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC : public RuntimeObject { public: // System.Collections.Hashtable System.ByteMatcher::map Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___map_0; // System.Collections.Hashtable System.ByteMatcher::starts Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___starts_1; public: inline static int32_t get_offset_of_map_0() { return static_cast<int32_t>(offsetof(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC, ___map_0)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_map_0() const { return ___map_0; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_map_0() { return &___map_0; } inline void set_map_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___map_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___map_0), (void*)value); } inline static int32_t get_offset_of_starts_1() { return static_cast<int32_t>(offsetof(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC, ___starts_1)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_starts_1() const { return ___starts_1; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_starts_1() { return &___starts_1; } inline void set_starts_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___starts_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___starts_1), (void*)value); } }; // System.CLRConfig struct CLRConfig_t79EBAFC5FBCAC675B35CB93391030FABCA9A7B45 : public RuntimeObject { public: public: }; // System.CharEnumerator struct CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 : public RuntimeObject { public: // System.String System.CharEnumerator::str String_t* ___str_0; // System.Int32 System.CharEnumerator::index int32_t ___index_1; // System.Char System.CharEnumerator::currentElement Il2CppChar ___currentElement_2; public: inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244, ___str_0)); } inline String_t* get_str_0() const { return ___str_0; } inline String_t** get_address_of_str_0() { return &___str_0; } inline void set_str_0(String_t* value) { ___str_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244, ___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_currentElement_2() { return static_cast<int32_t>(offsetof(CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244, ___currentElement_2)); } inline Il2CppChar get_currentElement_2() const { return ___currentElement_2; } inline Il2CppChar* get_address_of_currentElement_2() { return &___currentElement_2; } inline void set_currentElement_2(Il2CppChar value) { ___currentElement_2 = value; } }; // 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.ArrayList_ArrayListDebugView struct ArrayListDebugView_tEFE4C91B363144996F2999C6C49CE20F7033B55B : public RuntimeObject { public: public: }; // System.Collections.ArrayList_ArrayListEnumeratorSimple struct ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.ArrayList_ArrayListEnumeratorSimple::list ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list_0; // System.Int32 System.Collections.ArrayList_ArrayListEnumeratorSimple::index int32_t ___index_1; // System.Int32 System.Collections.ArrayList_ArrayListEnumeratorSimple::version int32_t ___version_2; // System.Object System.Collections.ArrayList_ArrayListEnumeratorSimple::currentElement RuntimeObject * ___currentElement_3; // System.Boolean System.Collections.ArrayList_ArrayListEnumeratorSimple::isArrayList bool ___isArrayList_4; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F, ___list_0)); } inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_list_0() const { return ___list_0; } inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * 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(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F, ___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(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_currentElement_3() { return static_cast<int32_t>(offsetof(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F, ___currentElement_3)); } inline RuntimeObject * get_currentElement_3() const { return ___currentElement_3; } inline RuntimeObject ** get_address_of_currentElement_3() { return &___currentElement_3; } inline void set_currentElement_3(RuntimeObject * value) { ___currentElement_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentElement_3), (void*)value); } inline static int32_t get_offset_of_isArrayList_4() { return static_cast<int32_t>(offsetof(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F, ___isArrayList_4)); } inline bool get_isArrayList_4() const { return ___isArrayList_4; } inline bool* get_address_of_isArrayList_4() { return &___isArrayList_4; } inline void set_isArrayList_4(bool value) { ___isArrayList_4 = value; } }; struct ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields { public: // System.Object System.Collections.ArrayList_ArrayListEnumeratorSimple::dummyObject RuntimeObject * ___dummyObject_5; public: inline static int32_t get_offset_of_dummyObject_5() { return static_cast<int32_t>(offsetof(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields, ___dummyObject_5)); } inline RuntimeObject * get_dummyObject_5() const { return ___dummyObject_5; } inline RuntimeObject ** get_address_of_dummyObject_5() { return &___dummyObject_5; } inline void set_dummyObject_5(RuntimeObject * value) { ___dummyObject_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___dummyObject_5), (void*)value); } }; // System.Collections.CaseInsensitiveComparer struct CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.CaseInsensitiveComparer::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE, ___m_compareInfo_0)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; // System.Collections.CaseInsensitiveHashCodeProvider struct CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 : public RuntimeObject { public: // System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___m_text_0; public: inline static int32_t get_offset_of_m_text_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34, ___m_text_0)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_m_text_0() const { return ___m_text_0; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_m_text_0() { return &___m_text_0; } inline void set_m_text_0(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___m_text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_text_0), (void*)value); } }; // System.Collections.Comparer struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B : public RuntimeObject { public: // System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___m_compareInfo_0; public: inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B, ___m_compareInfo_0)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_m_compareInfo_0() const { return ___m_compareInfo_0; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; } inline void set_m_compareInfo_0(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___m_compareInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value); } }; struct Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields { public: // System.Collections.Comparer System.Collections.Comparer::Default Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___Default_1; // System.Collections.Comparer System.Collections.Comparer::DefaultInvariant Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * ___DefaultInvariant_2; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___Default_1)); } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_Default_1() const { return ___Default_1; } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value); } inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast<int32_t>(offsetof(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields, ___DefaultInvariant_2)); } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; } inline Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; } inline void set_DefaultInvariant_2(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * value) { ___DefaultInvariant_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value); } }; // System.Collections.CompatibleComparer struct CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 : public RuntimeObject { public: // System.Collections.IComparer System.Collections.CompatibleComparer::_comparer RuntimeObject* ____comparer_0; // System.Collections.IHashCodeProvider System.Collections.CompatibleComparer::_hcp RuntimeObject* ____hcp_1; public: inline static int32_t get_offset_of__comparer_0() { return static_cast<int32_t>(offsetof(CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00, ____comparer_0)); } inline RuntimeObject* get__comparer_0() const { return ____comparer_0; } inline RuntimeObject** get_address_of__comparer_0() { return &____comparer_0; } inline void set__comparer_0(RuntimeObject* value) { ____comparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_0), (void*)value); } inline static int32_t get_offset_of__hcp_1() { return static_cast<int32_t>(offsetof(CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00, ____hcp_1)); } inline RuntimeObject* get__hcp_1() const { return ____hcp_1; } inline RuntimeObject** get_address_of__hcp_1() { return &____hcp_1; } inline void set__hcp_1(RuntimeObject* value) { ____hcp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____hcp_1), (void*)value); } }; // System.Collections.Generic.CollectionExtensions struct CollectionExtensions_t1943508648E4A2A0FBCF65503E3BD7032F003E0A : public RuntimeObject { public: public: }; // System.Collections.Generic.DictionaryHashHelpers struct DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00 : public RuntimeObject { public: public: }; struct DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields { public: // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Generic.DictionaryHashHelpers::<SerializationInfoTable>k__BackingField ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * ___U3CSerializationInfoTableU3Ek__BackingField_0; public: inline static int32_t get_offset_of_U3CSerializationInfoTableU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields, ___U3CSerializationInfoTableU3Ek__BackingField_0)); } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * get_U3CSerializationInfoTableU3Ek__BackingField_0() const { return ___U3CSerializationInfoTableU3Ek__BackingField_0; } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 ** get_address_of_U3CSerializationInfoTableU3Ek__BackingField_0() { return &___U3CSerializationInfoTableU3Ek__BackingField_0; } inline void set_U3CSerializationInfoTableU3Ek__BackingField_0(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * value) { ___U3CSerializationInfoTableU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSerializationInfoTableU3Ek__BackingField_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.Byte> struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 : public RuntimeObject { public: public: }; struct EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.EqualityComparer`1<System.String> struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 : public RuntimeObject { public: public: }; struct EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields { public: // System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137_StaticFields, ___defaultComparer_0)); } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.IntrospectiveSortUtilities struct IntrospectiveSortUtilities_t6A205C98525D6E6DD938DC26FE053A91F492BE4D : public RuntimeObject { public: public: }; // System.Collections.Generic.KeyValuePair struct KeyValuePair_t123535D547736542503896462AF2C80E752E549F : public RuntimeObject { public: public: }; // System.Collections.Generic.ObjectEqualityComparer struct ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC : public RuntimeObject { public: public: }; struct ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_StaticFields { public: // System.Collections.Generic.ObjectEqualityComparer System.Collections.Generic.ObjectEqualityComparer::Default ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_StaticFields, ___Default_0)); } inline ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * get_Default_0() const { return ___Default_0; } inline ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (void*)value); } }; // System.Collections.HashHelpers struct HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179 : public RuntimeObject { public: public: }; struct HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields { public: // System.Int32[] System.Collections.HashHelpers::primes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___primes_0; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.HashHelpers::s_SerializationInfoTable ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * ___s_SerializationInfoTable_1; public: inline static int32_t get_offset_of_primes_0() { return static_cast<int32_t>(offsetof(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields, ___primes_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_primes_0() const { return ___primes_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_primes_0() { return &___primes_0; } inline void set_primes_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___primes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___primes_0), (void*)value); } inline static int32_t get_offset_of_s_SerializationInfoTable_1() { return static_cast<int32_t>(offsetof(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields, ___s_SerializationInfoTable_1)); } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * get_s_SerializationInfoTable_1() const { return ___s_SerializationInfoTable_1; } inline ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 ** get_address_of_s_SerializationInfoTable_1() { return &___s_SerializationInfoTable_1; } inline void set_s_SerializationInfoTable_1(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * value) { ___s_SerializationInfoTable_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SerializationInfoTable_1), (void*)value); } }; // System.Collections.Hashtable_HashtableDebugView struct HashtableDebugView_tFD278E7BCFC46C72422AF1D2E80EADB9F04C5BAD : public RuntimeObject { public: public: }; // System.Collections.Hashtable_HashtableEnumerator struct HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 : public RuntimeObject { public: // System.Collections.Hashtable System.Collections.Hashtable_HashtableEnumerator::hashtable Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable_0; // System.Int32 System.Collections.Hashtable_HashtableEnumerator::bucket int32_t ___bucket_1; // System.Int32 System.Collections.Hashtable_HashtableEnumerator::version int32_t ___version_2; // System.Boolean System.Collections.Hashtable_HashtableEnumerator::current bool ___current_3; // System.Int32 System.Collections.Hashtable_HashtableEnumerator::getObjectRetType int32_t ___getObjectRetType_4; // System.Object System.Collections.Hashtable_HashtableEnumerator::currentKey RuntimeObject * ___currentKey_5; // System.Object System.Collections.Hashtable_HashtableEnumerator::currentValue RuntimeObject * ___currentValue_6; public: inline static int32_t get_offset_of_hashtable_0() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___hashtable_0)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_hashtable_0() const { return ___hashtable_0; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_hashtable_0() { return &___hashtable_0; } inline void set_hashtable_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___hashtable_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashtable_0), (void*)value); } inline static int32_t get_offset_of_bucket_1() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___bucket_1)); } inline int32_t get_bucket_1() const { return ___bucket_1; } inline int32_t* get_address_of_bucket_1() { return &___bucket_1; } inline void set_bucket_1(int32_t value) { ___bucket_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___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(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___current_3)); } inline bool get_current_3() const { return ___current_3; } inline bool* get_address_of_current_3() { return &___current_3; } inline void set_current_3(bool value) { ___current_3 = value; } inline static int32_t get_offset_of_getObjectRetType_4() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___getObjectRetType_4)); } inline int32_t get_getObjectRetType_4() const { return ___getObjectRetType_4; } inline int32_t* get_address_of_getObjectRetType_4() { return &___getObjectRetType_4; } inline void set_getObjectRetType_4(int32_t value) { ___getObjectRetType_4 = value; } inline static int32_t get_offset_of_currentKey_5() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___currentKey_5)); } inline RuntimeObject * get_currentKey_5() const { return ___currentKey_5; } inline RuntimeObject ** get_address_of_currentKey_5() { return &___currentKey_5; } inline void set_currentKey_5(RuntimeObject * value) { ___currentKey_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentKey_5), (void*)value); } inline static int32_t get_offset_of_currentValue_6() { return static_cast<int32_t>(offsetof(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9, ___currentValue_6)); } inline RuntimeObject * get_currentValue_6() const { return ___currentValue_6; } inline RuntimeObject ** get_address_of_currentValue_6() { return &___currentValue_6; } inline void set_currentValue_6(RuntimeObject * value) { ___currentValue_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentValue_6), (void*)value); } }; // System.Collections.Hashtable_KeyCollection struct KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 : public RuntimeObject { public: // System.Collections.Hashtable System.Collections.Hashtable_KeyCollection::_hashtable Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____hashtable_0; public: inline static int32_t get_offset_of__hashtable_0() { return static_cast<int32_t>(offsetof(KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2, ____hashtable_0)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__hashtable_0() const { return ____hashtable_0; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__hashtable_0() { return &____hashtable_0; } inline void set__hashtable_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ____hashtable_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____hashtable_0), (void*)value); } }; // System.Collections.LowLevelComparer struct LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 : public RuntimeObject { public: public: }; struct LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields { public: // System.Collections.LowLevelComparer System.Collections.LowLevelComparer::Default LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * ___Default_0; public: inline static int32_t get_offset_of_Default_0() { return static_cast<int32_t>(offsetof(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields, ___Default_0)); } inline LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * get_Default_0() const { return ___Default_0; } inline LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 ** get_address_of_Default_0() { return &___Default_0; } inline void set_Default_0(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * value) { ___Default_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_0), (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.Collections.Queue_QueueDebugView struct QueueDebugView_t5FF125EC597686F20C5494132C038361EFFE6FEA : public RuntimeObject { public: public: }; // System.Collections.Queue_QueueEnumerator struct QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA : public RuntimeObject { public: // System.Collections.Queue System.Collections.Queue_QueueEnumerator::_q Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * ____q_0; // System.Int32 System.Collections.Queue_QueueEnumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Queue_QueueEnumerator::_version int32_t ____version_2; // System.Object System.Collections.Queue_QueueEnumerator::currentElement RuntimeObject * ___currentElement_3; public: inline static int32_t get_offset_of__q_0() { return static_cast<int32_t>(offsetof(QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA, ____q_0)); } inline Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * get__q_0() const { return ____q_0; } inline Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 ** get_address_of__q_0() { return &____q_0; } inline void set__q_0(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * value) { ____q_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____q_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA, ____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(QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of_currentElement_3() { return static_cast<int32_t>(offsetof(QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA, ___currentElement_3)); } inline RuntimeObject * get_currentElement_3() const { return ___currentElement_3; } inline RuntimeObject ** get_address_of_currentElement_3() { return &___currentElement_3; } inline void set_currentElement_3(RuntimeObject * value) { ___currentElement_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentElement_3), (void*)value); } }; // System.Collections.SortedList struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E : public RuntimeObject { public: // System.Object[] System.Collections.SortedList::keys ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; // System.Object[] System.Collections.SortedList::values ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values_1; // System.Int32 System.Collections.SortedList::_size int32_t ____size_2; // System.Int32 System.Collections.SortedList::version int32_t ___version_3; // System.Collections.IComparer System.Collections.SortedList::comparer RuntimeObject* ___comparer_4; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___keys_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_0() const { return ___keys_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___values_1)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_values_1() const { return ___values_1; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_comparer_4() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E, ___comparer_4)); } inline RuntimeObject* get_comparer_4() const { return ___comparer_4; } inline RuntimeObject** get_address_of_comparer_4() { return &___comparer_4; } inline void set_comparer_4(RuntimeObject* value) { ___comparer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_4), (void*)value); } }; struct SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields { public: // System.Object[] System.Collections.SortedList::emptyArray ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___emptyArray_5; public: inline static int32_t get_offset_of_emptyArray_5() { return static_cast<int32_t>(offsetof(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_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.SortedList_SortedListDebugView struct SortedListDebugView_t685B663AA79F56A8B544B3E77D59D21B816440E7 : public RuntimeObject { public: public: }; // System.Collections.SortedList_SortedListEnumerator struct SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E : public RuntimeObject { public: // System.Collections.SortedList System.Collections.SortedList_SortedListEnumerator::sortedList SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___sortedList_0; // System.Object System.Collections.SortedList_SortedListEnumerator::key RuntimeObject * ___key_1; // System.Object System.Collections.SortedList_SortedListEnumerator::value RuntimeObject * ___value_2; // System.Int32 System.Collections.SortedList_SortedListEnumerator::index int32_t ___index_3; // System.Int32 System.Collections.SortedList_SortedListEnumerator::startIndex int32_t ___startIndex_4; // System.Int32 System.Collections.SortedList_SortedListEnumerator::endIndex int32_t ___endIndex_5; // System.Int32 System.Collections.SortedList_SortedListEnumerator::version int32_t ___version_6; // System.Boolean System.Collections.SortedList_SortedListEnumerator::current bool ___current_7; // System.Int32 System.Collections.SortedList_SortedListEnumerator::getObjectRetType int32_t ___getObjectRetType_8; public: inline static int32_t get_offset_of_sortedList_0() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___sortedList_0)); } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * get_sortedList_0() const { return ___sortedList_0; } inline SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E ** get_address_of_sortedList_0() { return &___sortedList_0; } inline void set_sortedList_0(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * value) { ___sortedList_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___sortedList_0), (void*)value); } inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___key_1)); } inline RuntimeObject * get_key_1() const { return ___key_1; } inline RuntimeObject ** get_address_of_key_1() { return &___key_1; } inline void set_key_1(RuntimeObject * value) { ___key_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value); } inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___value_2)); } inline RuntimeObject * get_value_2() const { return ___value_2; } inline RuntimeObject ** get_address_of_value_2() { return &___value_2; } inline void set_value_2(RuntimeObject * value) { ___value_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value); } inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___index_3)); } inline int32_t get_index_3() const { return ___index_3; } inline int32_t* get_address_of_index_3() { return &___index_3; } inline void set_index_3(int32_t value) { ___index_3 = value; } inline static int32_t get_offset_of_startIndex_4() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___startIndex_4)); } inline int32_t get_startIndex_4() const { return ___startIndex_4; } inline int32_t* get_address_of_startIndex_4() { return &___startIndex_4; } inline void set_startIndex_4(int32_t value) { ___startIndex_4 = value; } inline static int32_t get_offset_of_endIndex_5() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___endIndex_5)); } inline int32_t get_endIndex_5() const { return ___endIndex_5; } inline int32_t* get_address_of_endIndex_5() { return &___endIndex_5; } inline void set_endIndex_5(int32_t value) { ___endIndex_5 = value; } inline static int32_t get_offset_of_version_6() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___version_6)); } inline int32_t get_version_6() const { return ___version_6; } inline int32_t* get_address_of_version_6() { return &___version_6; } inline void set_version_6(int32_t value) { ___version_6 = value; } inline static int32_t get_offset_of_current_7() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___current_7)); } inline bool get_current_7() const { return ___current_7; } inline bool* get_address_of_current_7() { return &___current_7; } inline void set_current_7(bool value) { ___current_7 = value; } inline static int32_t get_offset_of_getObjectRetType_8() { return static_cast<int32_t>(offsetof(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E, ___getObjectRetType_8)); } inline int32_t get_getObjectRetType_8() const { return ___getObjectRetType_8; } inline int32_t* get_address_of_getObjectRetType_8() { return &___getObjectRetType_8; } inline void set_getObjectRetType_8(int32_t value) { ___getObjectRetType_8 = value; } }; // System.Collections.Stack struct Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 : public RuntimeObject { public: // System.Object[] System.Collections.Stack::_array ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____array_0; // System.Int32 System.Collections.Stack::_size int32_t ____size_1; // System.Int32 System.Collections.Stack::_version int32_t ____version_2; public: inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____array_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__array_0() const { return ____array_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__array_0() { return &____array_0; } inline void set__array_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ____array_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value); } inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____size_1)); } inline int32_t get__size_1() const { return ____size_1; } inline int32_t* get_address_of__size_1() { return &____size_1; } inline void set__size_1(int32_t value) { ____size_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } }; // System.Collections.Stack_StackDebugView struct StackDebugView_tE0C0C7F6AD6752160144359775846DFDDD36CB2E : public RuntimeObject { public: public: }; // System.Collections.Stack_StackEnumerator struct StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA : public RuntimeObject { public: // System.Collections.Stack System.Collections.Stack_StackEnumerator::_stack Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ____stack_0; // System.Int32 System.Collections.Stack_StackEnumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Stack_StackEnumerator::_version int32_t ____version_2; // System.Object System.Collections.Stack_StackEnumerator::currentElement RuntimeObject * ___currentElement_3; public: inline static int32_t get_offset_of__stack_0() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____stack_0)); } inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * get__stack_0() const { return ____stack_0; } inline Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 ** get_address_of__stack_0() { return &____stack_0; } inline void set__stack_0(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * value) { ____stack_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____stack_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of_currentElement_3() { return static_cast<int32_t>(offsetof(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA, ___currentElement_3)); } inline RuntimeObject * get_currentElement_3() const { return ___currentElement_3; } inline RuntimeObject ** get_address_of_currentElement_3() { return &___currentElement_3; } inline void set_currentElement_3(RuntimeObject * value) { ___currentElement_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___currentElement_3), (void*)value); } }; // System.EmptyArray`1<System.Object> struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26 : public RuntimeObject { public: public: }; struct EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields { public: // T[] System.EmptyArray`1::Value ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields, ___Value_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_Value_0() const { return ___Value_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.EventArgs struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E : public RuntimeObject { public: public: }; struct EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields { public: // System.EventArgs System.EventArgs::Empty EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_StaticFields, ___Empty_0)); } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * get_Empty_0() const { return ___Empty_0; } inline EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_0), (void*)value); } }; // System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; } inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10; DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11; TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24; CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> struct ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 : public RuntimeObject { public: // System.Runtime.CompilerServices.Ephemeron[] System.Runtime.CompilerServices.ConditionalWeakTable`2::data EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___data_0; // System.Object System.Runtime.CompilerServices.ConditionalWeakTable`2::_lock RuntimeObject * ____lock_1; // System.Int32 System.Runtime.CompilerServices.ConditionalWeakTable`2::size int32_t ___size_2; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___data_0)); } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* get_data_0() const { return ___data_0; } inline EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10** get_address_of_data_0() { return &___data_0; } inline void set_data_0(EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_0), (void*)value); } inline static int32_t get_offset_of__lock_1() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ____lock_1)); } inline RuntimeObject * get__lock_1() const { return ____lock_1; } inline RuntimeObject ** get_address_of__lock_1() { return &____lock_1; } inline void set__lock_1(RuntimeObject * value) { ____lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____lock_1), (void*)value); } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98, ___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; } }; // 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.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com { }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94]; }; public: }; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998]; }; public: }; // System.Array_SorterGenericArray struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 { public: // System.Array System.Array_SorterGenericArray::keys RuntimeArray * ___keys_0; // System.Array System.Array_SorterGenericArray::items RuntimeArray * ___items_1; // System.Collections.IComparer System.Array_SorterGenericArray::comparer RuntimeObject* ___comparer_2; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___keys_0)); } inline RuntimeArray * get_keys_0() const { return ___keys_0; } inline RuntimeArray ** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(RuntimeArray * value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_items_1() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___items_1)); } inline RuntimeArray * get_items_1() const { return ___items_1; } inline RuntimeArray ** get_address_of_items_1() { return &___items_1; } inline void set_items_1(RuntimeArray * value) { ___items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___items_1), (void*)value); } inline static int32_t get_offset_of_comparer_2() { return static_cast<int32_t>(offsetof(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891, ___comparer_2)); } inline RuntimeObject* get_comparer_2() const { return ___comparer_2; } inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; } inline void set_comparer_2(RuntimeObject* value) { ___comparer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Array/SorterGenericArray struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke { RuntimeArray * ___keys_0; RuntimeArray * ___items_1; RuntimeObject* ___comparer_2; }; // Native definition for COM marshalling of System.Array/SorterGenericArray struct SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com { RuntimeArray * ___keys_0; RuntimeArray * ___items_1; RuntimeObject* ___comparer_2; }; // System.Array_SorterObjectArray struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 { public: // System.Object[] System.Array_SorterObjectArray::keys ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; // System.Object[] System.Array_SorterObjectArray::items ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1; // System.Collections.IComparer System.Array_SorterObjectArray::comparer RuntimeObject* ___comparer_2; public: inline static int32_t get_offset_of_keys_0() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___keys_0)); } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_keys_0() const { return ___keys_0; } inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_keys_0() { return &___keys_0; } inline void set_keys_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value) { ___keys_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_0), (void*)value); } inline static int32_t get_offset_of_items_1() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___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_comparer_2() { return static_cast<int32_t>(offsetof(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4, ___comparer_2)); } inline RuntimeObject* get_comparer_2() const { return ___comparer_2; } inline RuntimeObject** get_address_of_comparer_2() { return &___comparer_2; } inline void set_comparer_2(RuntimeObject* value) { ___comparer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_2), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Array/SorterObjectArray struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1; RuntimeObject* ___comparer_2; }; // Native definition for COM marshalling of System.Array/SorterObjectArray struct SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items_1; RuntimeObject* ___comparer_2; }; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 : public EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E { public: // System.Reflection.Assembly System.AssemblyLoadEventArgs::m_loadedAssembly Assembly_t * ___m_loadedAssembly_1; public: inline static int32_t get_offset_of_m_loadedAssembly_1() { return static_cast<int32_t>(offsetof(AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8, ___m_loadedAssembly_1)); } inline Assembly_t * get_m_loadedAssembly_1() const { return ___m_loadedAssembly_1; } inline Assembly_t ** get_address_of_m_loadedAssembly_1() { return &___m_loadedAssembly_1; } inline void set_m_loadedAssembly_1(Assembly_t * value) { ___m_loadedAssembly_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_loadedAssembly_1), (void*)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.CLSCompliantAttribute struct CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.Boolean System.CLSCompliantAttribute::m_compliant bool ___m_compliant_0; public: inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6, ___m_compliant_0)); } inline bool get_m_compliant_0() const { return ___m_compliant_0; } inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; } inline void set_m_compliant_0(bool value) { ___m_compliant_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.ByteEqualityComparer struct ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B : public EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 { public: public: }; // System.Collections.Generic.InternalStringComparer struct InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD : public EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 { public: public: }; // System.Collections.Generic.NonRandomizedStringEqualityComparer struct NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 : public EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 { public: public: }; // System.Collections.Hashtable_bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 { public: // System.Object System.Collections.Hashtable_bucket::key RuntimeObject * ___key_0; // System.Object System.Collections.Hashtable_bucket::val RuntimeObject * ___val_1; // System.Int32 System.Collections.Hashtable_bucket::hash_coll int32_t ___hash_coll_2; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___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_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); } inline RuntimeObject * get_val_1() const { return ___val_1; } inline RuntimeObject ** get_address_of_val_1() { return &___val_1; } inline void set_val_1(RuntimeObject * value) { ___val_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value); } inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); } inline int32_t get_hash_coll_2() const { return ___hash_coll_2; } inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; } inline void set_hash_coll_2(int32_t value) { ___hash_coll_2 = value; } }; // Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // Native definition for COM marshalling of System.Collections.Hashtable/bucket struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com { Il2CppIUnknown* ___key_0; Il2CppIUnknown* ___val_1; int32_t ___hash_coll_2; }; // System.DateTime struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value) { ___MaxValue_32 = value; } }; // System.Decimal struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 { public: // System.Int32 System.Decimal::flags int32_t ___flags_14; // System.Int32 System.Decimal::hi int32_t ___hi_15; // System.Int32 System.Decimal::lo int32_t ___lo_16; // System.Int32 System.Decimal::mid int32_t ___mid_17; public: inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); } inline int32_t get_flags_14() const { return ___flags_14; } inline int32_t* get_address_of_flags_14() { return &___flags_14; } inline void set_flags_14(int32_t value) { ___flags_14 = value; } inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); } inline int32_t get_hi_15() const { return ___hi_15; } inline int32_t* get_address_of_hi_15() { return &___hi_15; } inline void set_hi_15(int32_t value) { ___hi_15 = value; } inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); } inline int32_t get_lo_16() const { return ___lo_16; } inline int32_t* get_address_of_lo_16() { return &___lo_16; } inline void set_lo_16(int32_t value) { ___lo_16 = value; } inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); } inline int32_t get_mid_17() const { return ___mid_17; } inline int32_t* get_address_of_mid_17() { return &___mid_17; } inline void set_mid_17(int32_t value) { ___mid_17 = value; } }; struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields { public: // System.UInt32[] System.Decimal::Powers10 UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6; // System.Decimal System.Decimal::Zero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7; // System.Decimal System.Decimal::One Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8; // System.Decimal System.Decimal::MinusOne Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9; // System.Decimal System.Decimal::MaxValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10; // System.Decimal System.Decimal::MinValue Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11; // System.Decimal System.Decimal::NearNegativeZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12; // System.Decimal System.Decimal::NearPositiveZero Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13; public: inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; } inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; } inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value) { ___Powers10_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___Zero_7 = value; } inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; } inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___One_8 = value; } inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; } inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinusOne_9 = value; } inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; } inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MaxValue_10 = value; } inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; } inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___MinValue_11 = value; } inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; } inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearNegativeZero_12 = value; } inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; } inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; } inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value) { ___NearPositiveZero_13 = value; } }; // System.Diagnostics.Tracing.SessionMask struct SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE { public: // System.UInt32 System.Diagnostics.Tracing.SessionMask::m_mask uint32_t ___m_mask_0; public: inline static int32_t get_offset_of_m_mask_0() { return static_cast<int32_t>(offsetof(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE, ___m_mask_0)); } inline uint32_t get_m_mask_0() const { return ___m_mask_0; } inline uint32_t* get_address_of_m_mask_0() { return &___m_mask_0; } inline void set_m_mask_0(uint32_t value) { ___m_mask_0 = value; } }; // System.Double struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF { public: public: }; struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com { }; // System.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.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.Nullable`1<System.Boolean> struct Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 { public: // T System.Nullable`1::value bool ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___value_0)); } inline bool get_value_0() const { return ___value_0; } inline bool* get_address_of_value_0() { return &___value_0; } inline void set_value_0(bool value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Reflection.EventInfo struct EventInfo_t : public MemberInfo_t { public: // System.Reflection.EventInfo_AddEventAdapter System.Reflection.EventInfo::cached_add_event AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * ___cached_add_event_0; public: inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); } inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * get_cached_add_event_0() const { return ___cached_add_event_0; } inline AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; } inline void set_cached_add_event_0(AddEventAdapter_t90B3498E1AA0B739F6390C7E52B51A36945E036B * value) { ___cached_add_event_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_add_event_0), (void*)value); } }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { public: public: }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; // 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.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.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields { public: // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22 __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_2; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40 __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604 __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3 __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5 __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_16; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00 __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851 __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444 __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_28; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3 __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471 __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99 __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_48; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_49; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_54; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154 __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_61; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_62; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396 __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; // System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_64; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959 __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_65; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83 __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_69; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45 __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8 __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401 __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; // System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865 int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_80; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1 __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_81; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7 __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636 __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219 __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0 __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006 __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_90; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_91; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044 __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37 __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612 __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520 __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429 __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4 __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; // <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; public: inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; } inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value; } inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; } inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value) { ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value; } inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; } inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value) { ___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value; } inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; } inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value; } inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; } inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value; } inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; } inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value; } inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; } inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value) { ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value; } inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; } inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value) { ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value; } inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; } inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value; } inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; } inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value; } inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; } inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value; } inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; } inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value; } inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; } inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value; } inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; } inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value; } inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; } inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value) { ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value; } inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; } inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value) { ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value; } inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; } inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value) { ___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value; } inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; } inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value) { ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value; } inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; } inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value; } inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; } inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value) { ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value; } inline static int32_t get_offset_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() const { return ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20() { return &___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20; } inline void set_U33E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___3E4BBF9D0CDD2E34F78AA7A9A3979DCE1F7B02BD_20 = value; } inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_21; } inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_21(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___3E823444D2DFECF0F90B436B88F02A533CB376F1_21 = value; } inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22; } inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_22 = value; } inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23)); } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23; } inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_23(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value) { ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_23 = value; } inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24; } inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_24(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_24 = value; } inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25; } inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_25 = value; } inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26; } inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_26(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_26 = value; } inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27; } inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_27(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_27 = value; } inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_28)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_28() const { return ___536422B321459B242ADED7240B7447E904E083E3_28; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_28() { return &___536422B321459B242ADED7240B7447E904E083E3_28; } inline void set_U3536422B321459B242ADED7240B7447E904E083E3_28(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___536422B321459B242ADED7240B7447E904E083E3_28 = value; } inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29)); } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29; } inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value) { ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_29 = value; } inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_30)); } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_30() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_30; } inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_30(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value) { ___57218C316B6921E2CD61027A2387EDC31A2D9471_30 = value; } inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_31; } inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_31(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___57F320D62696EC99727E0FE2045A05F1289CC0C6_31 = value; } inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32; } inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_32 = value; } inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33; } inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_33(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_33 = value; } inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34)); } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34; } inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value) { ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34 = value; } inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_35; } inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_35(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___5BFE2819B4778217C56416C7585FF0E56EBACD89_35 = value; } inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36)); } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36; } inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value) { ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_36 = value; } inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37; } inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_37(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_37 = value; } inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38; } inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_38(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_38 = value; } inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_39; } inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_39(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___67EEAD805D708D9AA4E14BF747E44CED801744F3_39 = value; } inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_40; } inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_40(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___6C71197D228427B2864C69B357FEF73D8C9D59DF_40 = value; } inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41; } inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_41(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_41 = value; } inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_42)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_42() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_42; } inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_42(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___6FC754859E4EC74E447048364B216D825C6F8FE7_42 = value; } inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_43)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_43; } inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_43(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___704939CD172085D1295FCE3F1D92431D685D7AA2_43 = value; } inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44)); } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44; } inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_44(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value) { ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_44 = value; } inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_45; } inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_45(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___7341C933A70EAE383CC50C4B945ADB8E08F06737_45 = value; } inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46; } inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_46 = value; } inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47)); } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47; } inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_47(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value) { ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_47 = value; } inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_48)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_48() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_48() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_48; } inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_48(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___81917F1E21F3C22B9F916994547A614FB03E968E_48 = value; } inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_49)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_49() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_49; } inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_49(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___823566DA642D6EA356E15585921F2A4CA23D6760_49 = value; } inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_50; } inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_50(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___82C2A59850B2E85BCE1A45A479537A384DF6098D_50 = value; } inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51; } inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_51 = value; } inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_52; } inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_52(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___871B9CF85DB352BAADF12BAE8F19857683E385AC_52 = value; } inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_53)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_53() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_53; } inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_53(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___89A040451C8CC5C8FB268BE44BDD74964C104155_53 = value; } inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_54)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_54() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_54() { return &___8CAA092E783257106251246FF5C97F88D28517A6_54; } inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_54(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8CAA092E783257106251246FF5C97F88D28517A6_54 = value; } inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55)); } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55; } inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_55(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value) { ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_55 = value; } inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56; } inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_56(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_56 = value; } inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_57)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_57() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_57; } inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_57(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___93A63E90605400F34B49F0EB3361D23C89164BDA_57 = value; } inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_58; } inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_58(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___94841DD2F330CCB1089BF413E4FA9B04505152E2_58 = value; } inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_59)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_59() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_59; } inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_59(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___95264589E48F94B7857CFF398FB72A537E13EEE2_59 = value; } inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_60; } inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___95C48758CAE1715783472FB073AB158AB8A0AB2A_60 = value; } inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_61)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_61() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_61() { return &___973417296623D8DC6961B09664E54039E44CA5D8_61; } inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_61(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___973417296623D8DC6961B09664E54039E44CA5D8_61 = value; } inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_62)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_62() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_62() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_62; } inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_62(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___A0074C15377C0C870B055927403EA9FA7A349D12_62 = value; } inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63)); } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_63() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_63; } inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_63(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value) { ___A1319B706116AB2C6D44483F60A7D0ACEA543396_63 = value; } inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_64)); } inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_64() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_64() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_64; } inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_64(int64_t value) { ___A13AA52274D951A18029131A8DDECF76B569A15D_64 = value; } inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_65)); } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_65() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_65() { return &___A5444763673307F6828C748D4B9708CFC02B0959_65; } inline void set_A5444763673307F6828C748D4B9708CFC02B0959_65(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value) { ___A5444763673307F6828C748D4B9708CFC02B0959_65 = value; } inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66; } inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_66(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_66 = value; } inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_67() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_67; } inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_67(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___A705A106D95282BD15E13EEA6B0AF583FF786D83_67 = value; } inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68)); } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_68() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_68; } inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_68(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value) { ___A8A491E4CED49AE0027560476C10D933CE70C8DF_68 = value; } inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_69)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_69() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_69() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_69; } inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_69(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___AC791C4F39504D1184B73478943D0636258DA7B1_69 = value; } inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_70() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_70; } inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_70(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___AFCD4E1211233E99373A3367B23105A3D624B1F2_70 = value; } inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71; } inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_71 = value; } inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72)); } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72; } inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value) { ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72 = value; } inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73)); } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73; } inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value) { ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_73 = value; } inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74)); } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74; } inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_74(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value) { ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_74 = value; } inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75)); } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_75() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_75; } inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_75(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value) { ___B8F87834C3597B2EEF22BA6D3A392CC925636401_75 = value; } inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76; } inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_76 = value; } inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77; } inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_77 = value; } inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78; } inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_78 = value; } inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_79() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_79; } inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_79(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___BF5EB60806ECB74EE484105DD9D6F463BF994867_79 = value; } inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_80)); } inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_80() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_80() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_80; } inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_80(int64_t value) { ___C1A1100642BA9685B30A84D97348484E14AA1865_80 = value; } inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_81)); } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_81() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_81() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_81; } inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_81(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value) { ___C6F364A0AD934EFED8909446C215752E565D77C1_81 = value; } inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82)); } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_82() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_82; } inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_82(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value) { ___CE5835130F5277F63D716FC9115526B0AC68FFAD_82 = value; } inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_83)); } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_83() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_83() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_83; } inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_83(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value) { ___CE93C35B755802BC4B3D180716B048FC61701EF7_83 = value; } inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84)); } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84; } inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_84(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value) { ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_84 = value; } inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85)); } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85; } inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value) { ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_85 = value; } inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86)); } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_86() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_86; } inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_86(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value) { ___DA19DB47B583EFCF7825D2E39D661D2354F28219_86 = value; } inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87; } inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_87(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_87 = value; } inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_88)); } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_88() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_88() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_88; } inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_88(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value) { ___E1827270A5FE1C85F5352A66FD87BA747213D006_88 = value; } inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89; } inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_89 = value; } inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_90)); } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_90() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_90() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_90; } inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_90(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value) { ___E92B39D8233061927D9ACDE54665E68E7535635A_90 = value; } inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_91)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_91() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_91() { return &___EA9506959484C55CFE0C139C624DF6060E285866_91; } inline void set_EA9506959484C55CFE0C139C624DF6060E285866_91(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___EA9506959484C55CFE0C139C624DF6060E285866_91 = value; } inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92)); } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92; } inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value) { ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_92 = value; } inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93)); } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_93() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_93; } inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_93(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value) { ___EBF68F411848D603D059DFDEA2321C5A5EA78044_93 = value; } inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94; } inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_94 = value; } inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95)); } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95; } inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_95(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value) { ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_95 = value; } inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_96)); } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_96() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_96() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_96; } inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_96(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value) { ___F073AA332018FDA0D572E99448FFF1D6422BD520_96 = value; } inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97)); } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_97() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_97; } inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_97(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value) { ___F34B0E10653402E8F788F8BC3F7CD7090928A429_97 = value; } inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98)); } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98; } inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_98(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value) { ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_98 = value; } inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99)); } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_99() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_99; } inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_99(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value) { ___F512A9ABF88066AAEB92684F95CC05D8101B462B_99 = value; } inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100)); } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100; } inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value) { ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_100 = value; } inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101)); } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101; } inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value) { ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_101 = value; } }; // System.AttributeTargets struct AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741 { public: // System.Int32 System.AttributeTargets::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AttributeTargets_t7CC0DE6D2B11C951E525EE69AD02313792932741, ___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.BRECORD struct BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601 { public: // System.IntPtr System.BRECORD::pvRecord intptr_t ___pvRecord_0; // System.IntPtr System.BRECORD::pRecInfo intptr_t ___pRecInfo_1; public: inline static int32_t get_offset_of_pvRecord_0() { return static_cast<int32_t>(offsetof(BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601, ___pvRecord_0)); } inline intptr_t get_pvRecord_0() const { return ___pvRecord_0; } inline intptr_t* get_address_of_pvRecord_0() { return &___pvRecord_0; } inline void set_pvRecord_0(intptr_t value) { ___pvRecord_0 = value; } inline static int32_t get_offset_of_pRecInfo_1() { return static_cast<int32_t>(offsetof(BRECORD_tDDC5F1A5DC569C234C6141FCBA5F8DE8293BC601, ___pRecInfo_1)); } inline intptr_t get_pRecInfo_1() const { return ___pRecInfo_1; } inline intptr_t* get_address_of_pRecInfo_1() { return &___pRecInfo_1; } inline void set_pRecInfo_1(intptr_t value) { ___pRecInfo_1 = value; } }; // System.Base64FormattingOptions struct Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE { public: // System.Int32 System.Base64FormattingOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Base64FormattingOptions_t3D2B3AE9295A0F8B2C84D603C3178659D1C11ADE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ByteEnum struct ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD { public: // System.Byte System.ByteEnum::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t406C975039F6312CDE58A265A6ECFD861F8C06CD, ___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.Collections.Generic.InsertionBehavior struct InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211 { public: // System.Byte System.Collections.Generic.InsertionBehavior::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InsertionBehavior_tDE709AD9061AA205654E57F719D37F00F7A3E211, ___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.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.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // System.Diagnostics.Tracing.EventKeywords struct EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942 { public: // System.Int64 System.Diagnostics.Tracing.EventKeywords::value__ int64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventKeywords_t23A3504C8689DEED4A3545494C8C52C55214B942, ___value___2)); } inline int64_t get_value___2() const { return ___value___2; } inline int64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int64_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventLevel struct EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E { public: // System.Int32 System.Diagnostics.Tracing.EventLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventLevel_t647BA4EA78B2B108075D614A19C8C2204644790E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Diagnostics.Tracing.EventSourceSettings struct EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB { public: // System.Int32 System.Diagnostics.Tracing.EventSourceSettings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventSourceSettings_t56A3A2CF82262192C3FB6935B694C9A7405D38FB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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.ExceptionArgument struct ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14 { public: // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_tE4C1E083DC891ECF9688A8A0C62D7F7841057B14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.ExceptionResource struct ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A { public: // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_t897ACCB868BF3CAAC00AB0C00D57D7A2B6C7586A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.CompareOptions struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939 { public: // System.Int32 System.Globalization.CompareOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.NumberStyles struct NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_tB0ADA2D9CCAA236331AED14C42BE5832B2351592, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Globalization.TextInfo struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 : public RuntimeObject { public: // System.Boolean System.Globalization.TextInfo::m_isReadOnly bool ___m_isReadOnly_0; // System.String System.Globalization.TextInfo::m_cultureName String_t* ___m_cultureName_1; // System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_2; // System.String System.Globalization.TextInfo::m_textInfoName String_t* ___m_textInfoName_3; // System.Nullable`1<System.Boolean> System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 ___m_IsAsciiCasingSameAsInvariant_4; // System.String System.Globalization.TextInfo::customCultureName String_t* ___customCultureName_6; // System.Boolean System.Globalization.TextInfo::m_useUserOverride bool ___m_useUserOverride_7; // System.Int32 System.Globalization.TextInfo::m_win32LangID int32_t ___m_win32LangID_8; public: inline static int32_t get_offset_of_m_isReadOnly_0() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_isReadOnly_0)); } inline bool get_m_isReadOnly_0() const { return ___m_isReadOnly_0; } inline bool* get_address_of_m_isReadOnly_0() { return &___m_isReadOnly_0; } inline void set_m_isReadOnly_0(bool value) { ___m_isReadOnly_0 = value; } inline static int32_t get_offset_of_m_cultureName_1() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureName_1)); } inline String_t* get_m_cultureName_1() const { return ___m_cultureName_1; } inline String_t** get_address_of_m_cultureName_1() { return &___m_cultureName_1; } inline void set_m_cultureName_1(String_t* value) { ___m_cultureName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureName_1), (void*)value); } inline static int32_t get_offset_of_m_cultureData_2() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_cultureData_2)); } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_2() const { return ___m_cultureData_2; } inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_2() { return &___m_cultureData_2; } inline void set_m_cultureData_2(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value) { ___m_cultureData_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_2), (void*)value); } inline static int32_t get_offset_of_m_textInfoName_3() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_textInfoName_3)); } inline String_t* get_m_textInfoName_3() const { return ___m_textInfoName_3; } inline String_t** get_address_of_m_textInfoName_3() { return &___m_textInfoName_3; } inline void set_m_textInfoName_3(String_t* value) { ___m_textInfoName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_textInfoName_3), (void*)value); } inline static int32_t get_offset_of_m_IsAsciiCasingSameAsInvariant_4() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_IsAsciiCasingSameAsInvariant_4)); } inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 get_m_IsAsciiCasingSameAsInvariant_4() const { return ___m_IsAsciiCasingSameAsInvariant_4; } inline Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 * get_address_of_m_IsAsciiCasingSameAsInvariant_4() { return &___m_IsAsciiCasingSameAsInvariant_4; } inline void set_m_IsAsciiCasingSameAsInvariant_4(Nullable_1_t9E6A67BECE376F0623B5C857F5674A0311C41793 value) { ___m_IsAsciiCasingSameAsInvariant_4 = value; } inline static int32_t get_offset_of_customCultureName_6() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___customCultureName_6)); } inline String_t* get_customCultureName_6() const { return ___customCultureName_6; } inline String_t** get_address_of_customCultureName_6() { return &___customCultureName_6; } inline void set_customCultureName_6(String_t* value) { ___customCultureName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___customCultureName_6), (void*)value); } inline static int32_t get_offset_of_m_useUserOverride_7() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_useUserOverride_7)); } inline bool get_m_useUserOverride_7() const { return ___m_useUserOverride_7; } inline bool* get_address_of_m_useUserOverride_7() { return &___m_useUserOverride_7; } inline void set_m_useUserOverride_7(bool value) { ___m_useUserOverride_7 = value; } inline static int32_t get_offset_of_m_win32LangID_8() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8, ___m_win32LangID_8)); } inline int32_t get_m_win32LangID_8() const { return ___m_win32LangID_8; } inline int32_t* get_address_of_m_win32LangID_8() { return &___m_win32LangID_8; } inline void set_m_win32LangID_8(int32_t value) { ___m_win32LangID_8 = value; } }; struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields { public: // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___s_Invariant_5; public: inline static int32_t get_offset_of_s_Invariant_5() { return static_cast<int32_t>(offsetof(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8_StaticFields, ___s_Invariant_5)); } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_s_Invariant_5() const { return ___s_Invariant_5; } inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_s_Invariant_5() { return &___s_Invariant_5; } inline void set_s_Invariant_5(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value) { ___s_Invariant_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_5), (void*)value); } }; // System.Globalization.UnicodeCategory struct UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788 { public: // System.Int32 System.Globalization.UnicodeCategory::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnicodeCategory_tC192ED2DE3FB1214FA458FEEF2380911F1C32788, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { public: // System.IntPtr System.Reflection.Assembly::_mono_assembly intptr_t ____mono_assembly_0; // System.Reflection.Assembly_ResolveEventHolder System.Reflection.Assembly::resolve_event_holder ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; // System.Object System.Reflection.Assembly::_evidence RuntimeObject * ____evidence_2; // System.Object System.Reflection.Assembly::_minimum RuntimeObject * ____minimum_3; // System.Object System.Reflection.Assembly::_optional RuntimeObject * ____optional_4; // System.Object System.Reflection.Assembly::_refuse RuntimeObject * ____refuse_5; // System.Object System.Reflection.Assembly::_granted RuntimeObject * ____granted_6; // System.Object System.Reflection.Assembly::_denied RuntimeObject * ____denied_7; // System.Boolean System.Reflection.Assembly::fromByteArray bool ___fromByteArray_8; // System.String System.Reflection.Assembly::assemblyName String_t* ___assemblyName_9; public: inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); } inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; } inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; } inline void set__mono_assembly_0(intptr_t value) { ____mono_assembly_0 = value; } inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; } inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; } inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value) { ___resolve_event_holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value); } inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); } inline RuntimeObject * get__evidence_2() const { return ____evidence_2; } inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; } inline void set__evidence_2(RuntimeObject * value) { ____evidence_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value); } inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); } inline RuntimeObject * get__minimum_3() const { return ____minimum_3; } inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; } inline void set__minimum_3(RuntimeObject * value) { ____minimum_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value); } inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); } inline RuntimeObject * get__optional_4() const { return ____optional_4; } inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; } inline void set__optional_4(RuntimeObject * value) { ____optional_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value); } inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); } inline RuntimeObject * get__refuse_5() const { return ____refuse_5; } inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; } inline void set__refuse_5(RuntimeObject * value) { ____refuse_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value); } inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); } inline RuntimeObject * get__granted_6() const { return ____granted_6; } inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; } inline void set__granted_6(RuntimeObject * value) { ____granted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value); } inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); } inline RuntimeObject * get__denied_7() const { return ____denied_7; } inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; } inline void set__denied_7(RuntimeObject * value) { ____denied_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value); } inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); } inline bool get_fromByteArray_8() const { return ___fromByteArray_8; } inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; } inline void set_fromByteArray_8(bool value) { ___fromByteArray_8 = value; } inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); } inline String_t* get_assemblyName_9() const { return ___assemblyName_9; } inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; } inline void set_assemblyName_9(String_t* value) { ___assemblyName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; char* ___assemblyName_9; }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { intptr_t ____mono_assembly_0; ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1; Il2CppIUnknown* ____evidence_2; Il2CppIUnknown* ____minimum_3; Il2CppIUnknown* ____optional_4; Il2CppIUnknown* ____refuse_5; Il2CppIUnknown* ____granted_6; Il2CppIUnknown* ____denied_7; int32_t ___fromByteArray_8; Il2CppChar* ___assemblyName_9; }; // System.Reflection.BindingFlags struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.MemberTypes struct MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041 { public: // System.Int32 System.Reflection.MemberTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MemberTypes_t3FEDC67D8B994D09AF155FFB2CFD26023F245041, ___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.RuntimeFieldInfo struct RuntimeFieldInfo_t9C8BA644F857EBE60EC6587AE1C1148E420E66F7 : public FieldInfo_t { public: public: }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TermInfoStrings struct TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F { public: // System.Int32 System.TermInfoStrings::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.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.AttributeUsageAttribute struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 { public: // System.AttributeTargets System.AttributeUsageAttribute::m_attributeTarget int32_t ___m_attributeTarget_0; // System.Boolean System.AttributeUsageAttribute::m_allowMultiple bool ___m_allowMultiple_1; // System.Boolean System.AttributeUsageAttribute::m_inherited bool ___m_inherited_2; public: inline static int32_t get_offset_of_m_attributeTarget_0() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_attributeTarget_0)); } inline int32_t get_m_attributeTarget_0() const { return ___m_attributeTarget_0; } inline int32_t* get_address_of_m_attributeTarget_0() { return &___m_attributeTarget_0; } inline void set_m_attributeTarget_0(int32_t value) { ___m_attributeTarget_0 = value; } inline static int32_t get_offset_of_m_allowMultiple_1() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_allowMultiple_1)); } inline bool get_m_allowMultiple_1() const { return ___m_allowMultiple_1; } inline bool* get_address_of_m_allowMultiple_1() { return &___m_allowMultiple_1; } inline void set_m_allowMultiple_1(bool value) { ___m_allowMultiple_1 = value; } inline static int32_t get_offset_of_m_inherited_2() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388, ___m_inherited_2)); } inline bool get_m_inherited_2() const { return ___m_inherited_2; } inline bool* get_address_of_m_inherited_2() { return &___m_inherited_2; } inline void set_m_inherited_2(bool value) { ___m_inherited_2 = value; } }; struct AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields { public: // System.AttributeUsageAttribute System.AttributeUsageAttribute::Default AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * ___Default_3; public: inline static int32_t get_offset_of_Default_3() { return static_cast<int32_t>(offsetof(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields, ___Default_3)); } inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * get_Default_3() const { return ___Default_3; } inline AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 ** get_address_of_Default_3() { return &___Default_3; } inline void set_Default_3(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * value) { ___Default_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_3), (void*)value); } }; // System.Collections.Hashtable_SyncHashtable struct SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 : public Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 { public: // System.Collections.Hashtable System.Collections.Hashtable_SyncHashtable::_table Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ____table_10; public: inline static int32_t get_offset_of__table_10() { return static_cast<int32_t>(offsetof(SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3, ____table_10)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get__table_10() const { return ____table_10; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of__table_10() { return &____table_10; } inline void set__table_10(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ____table_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____table_10), (void*)value); } }; // System.Diagnostics.Tracing.EventSource struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB : public RuntimeObject { public: // System.Byte[] System.Diagnostics.Tracing.EventSource::providerMetadata ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___providerMetadata_0; // System.String System.Diagnostics.Tracing.EventSource::m_name String_t* ___m_name_1; // System.Int32 System.Diagnostics.Tracing.EventSource::m_id int32_t ___m_id_2; // System.Guid System.Diagnostics.Tracing.EventSource::m_guid Guid_t ___m_guid_3; // System.Diagnostics.Tracing.EventSource_EventMetadata[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_eventData EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* ___m_eventData_4; // System.Byte[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_rawManifest ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___m_rawManifest_5; // System.EventHandler`1<System.Diagnostics.Tracing.EventCommandEventArgs> System.Diagnostics.Tracing.EventSource::m_eventCommandExecuted EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * ___m_eventCommandExecuted_6; // System.Diagnostics.Tracing.EventSourceSettings System.Diagnostics.Tracing.EventSource::m_config int32_t ___m_config_7; // System.Boolean System.Diagnostics.Tracing.EventSource::m_eventSourceEnabled bool ___m_eventSourceEnabled_8; // System.Diagnostics.Tracing.EventLevel System.Diagnostics.Tracing.EventSource::m_level int32_t ___m_level_9; // System.Diagnostics.Tracing.EventKeywords System.Diagnostics.Tracing.EventSource::m_matchAnyKeyword int64_t ___m_matchAnyKeyword_10; // System.Diagnostics.Tracing.EventDispatcher modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_Dispatchers EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * ___m_Dispatchers_11; // System.Diagnostics.Tracing.EventSource_OverideEventProvider modreq(System.Runtime.CompilerServices.IsVolatile) System.Diagnostics.Tracing.EventSource::m_provider OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * ___m_provider_12; // System.Boolean System.Diagnostics.Tracing.EventSource::m_completelyInited bool ___m_completelyInited_13; // System.Exception System.Diagnostics.Tracing.EventSource::m_constructionException Exception_t * ___m_constructionException_14; // System.Byte System.Diagnostics.Tracing.EventSource::m_outOfBandMessageCount uint8_t ___m_outOfBandMessageCount_15; // System.Diagnostics.Tracing.EventCommandEventArgs System.Diagnostics.Tracing.EventSource::m_deferredCommands EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * ___m_deferredCommands_16; // System.String[] System.Diagnostics.Tracing.EventSource::m_traits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_traits_17; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_curLiveSessions SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_curLiveSessions_20; // System.Diagnostics.Tracing.EtwSession[] System.Diagnostics.Tracing.EventSource::m_etwSessionIdMap EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* ___m_etwSessionIdMap_21; // System.Collections.Generic.List`1<System.Diagnostics.Tracing.EtwSession> System.Diagnostics.Tracing.EventSource::m_legacySessions List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * ___m_legacySessions_22; // System.Int64 System.Diagnostics.Tracing.EventSource::m_keywordTriggers int64_t ___m_keywordTriggers_23; // System.Diagnostics.Tracing.SessionMask System.Diagnostics.Tracing.EventSource::m_activityFilteringForETWEnabled SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE ___m_activityFilteringForETWEnabled_24; // System.Diagnostics.Tracing.ActivityTracker System.Diagnostics.Tracing.EventSource::m_activityTracker ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * ___m_activityTracker_26; public: inline static int32_t get_offset_of_providerMetadata_0() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___providerMetadata_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_providerMetadata_0() const { return ___providerMetadata_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_providerMetadata_0() { return &___providerMetadata_0; } inline void set_providerMetadata_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___providerMetadata_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___providerMetadata_0), (void*)value); } inline static int32_t get_offset_of_m_name_1() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_name_1)); } inline String_t* get_m_name_1() const { return ___m_name_1; } inline String_t** get_address_of_m_name_1() { return &___m_name_1; } inline void set_m_name_1(String_t* value) { ___m_name_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_1), (void*)value); } inline static int32_t get_offset_of_m_id_2() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_id_2)); } inline int32_t get_m_id_2() const { return ___m_id_2; } inline int32_t* get_address_of_m_id_2() { return &___m_id_2; } inline void set_m_id_2(int32_t value) { ___m_id_2 = value; } inline static int32_t get_offset_of_m_guid_3() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_guid_3)); } inline Guid_t get_m_guid_3() const { return ___m_guid_3; } inline Guid_t * get_address_of_m_guid_3() { return &___m_guid_3; } inline void set_m_guid_3(Guid_t value) { ___m_guid_3 = value; } inline static int32_t get_offset_of_m_eventData_4() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventData_4)); } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* get_m_eventData_4() const { return ___m_eventData_4; } inline EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94** get_address_of_m_eventData_4() { return &___m_eventData_4; } inline void set_m_eventData_4(EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* value) { ___m_eventData_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventData_4), (void*)value); } inline static int32_t get_offset_of_m_rawManifest_5() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_rawManifest_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_m_rawManifest_5() const { return ___m_rawManifest_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_m_rawManifest_5() { return &___m_rawManifest_5; } inline void set_m_rawManifest_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___m_rawManifest_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_rawManifest_5), (void*)value); } inline static int32_t get_offset_of_m_eventCommandExecuted_6() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventCommandExecuted_6)); } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * get_m_eventCommandExecuted_6() const { return ___m_eventCommandExecuted_6; } inline EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C ** get_address_of_m_eventCommandExecuted_6() { return &___m_eventCommandExecuted_6; } inline void set_m_eventCommandExecuted_6(EventHandler_1_t7B950CA178FCE6D050E740E55B739A0C75BDE49C * value) { ___m_eventCommandExecuted_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_eventCommandExecuted_6), (void*)value); } inline static int32_t get_offset_of_m_config_7() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_config_7)); } inline int32_t get_m_config_7() const { return ___m_config_7; } inline int32_t* get_address_of_m_config_7() { return &___m_config_7; } inline void set_m_config_7(int32_t value) { ___m_config_7 = value; } inline static int32_t get_offset_of_m_eventSourceEnabled_8() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_eventSourceEnabled_8)); } inline bool get_m_eventSourceEnabled_8() const { return ___m_eventSourceEnabled_8; } inline bool* get_address_of_m_eventSourceEnabled_8() { return &___m_eventSourceEnabled_8; } inline void set_m_eventSourceEnabled_8(bool value) { ___m_eventSourceEnabled_8 = value; } inline static int32_t get_offset_of_m_level_9() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_level_9)); } inline int32_t get_m_level_9() const { return ___m_level_9; } inline int32_t* get_address_of_m_level_9() { return &___m_level_9; } inline void set_m_level_9(int32_t value) { ___m_level_9 = value; } inline static int32_t get_offset_of_m_matchAnyKeyword_10() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_matchAnyKeyword_10)); } inline int64_t get_m_matchAnyKeyword_10() const { return ___m_matchAnyKeyword_10; } inline int64_t* get_address_of_m_matchAnyKeyword_10() { return &___m_matchAnyKeyword_10; } inline void set_m_matchAnyKeyword_10(int64_t value) { ___m_matchAnyKeyword_10 = value; } inline static int32_t get_offset_of_m_Dispatchers_11() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_Dispatchers_11)); } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * get_m_Dispatchers_11() const { return ___m_Dispatchers_11; } inline EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF ** get_address_of_m_Dispatchers_11() { return &___m_Dispatchers_11; } inline void set_m_Dispatchers_11(EventDispatcher_tCC0CD01793D8CA99D9F2580DF4DA0663AFB54BFF * value) { ___m_Dispatchers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Dispatchers_11), (void*)value); } inline static int32_t get_offset_of_m_provider_12() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_provider_12)); } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * get_m_provider_12() const { return ___m_provider_12; } inline OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B ** get_address_of_m_provider_12() { return &___m_provider_12; } inline void set_m_provider_12(OverideEventProvider_t354C68E8EFB53023A6C94D61F8F44358225D7C2B * value) { ___m_provider_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_provider_12), (void*)value); } inline static int32_t get_offset_of_m_completelyInited_13() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_completelyInited_13)); } inline bool get_m_completelyInited_13() const { return ___m_completelyInited_13; } inline bool* get_address_of_m_completelyInited_13() { return &___m_completelyInited_13; } inline void set_m_completelyInited_13(bool value) { ___m_completelyInited_13 = value; } inline static int32_t get_offset_of_m_constructionException_14() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_constructionException_14)); } inline Exception_t * get_m_constructionException_14() const { return ___m_constructionException_14; } inline Exception_t ** get_address_of_m_constructionException_14() { return &___m_constructionException_14; } inline void set_m_constructionException_14(Exception_t * value) { ___m_constructionException_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_constructionException_14), (void*)value); } inline static int32_t get_offset_of_m_outOfBandMessageCount_15() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_outOfBandMessageCount_15)); } inline uint8_t get_m_outOfBandMessageCount_15() const { return ___m_outOfBandMessageCount_15; } inline uint8_t* get_address_of_m_outOfBandMessageCount_15() { return &___m_outOfBandMessageCount_15; } inline void set_m_outOfBandMessageCount_15(uint8_t value) { ___m_outOfBandMessageCount_15 = value; } inline static int32_t get_offset_of_m_deferredCommands_16() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_deferredCommands_16)); } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * get_m_deferredCommands_16() const { return ___m_deferredCommands_16; } inline EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 ** get_address_of_m_deferredCommands_16() { return &___m_deferredCommands_16; } inline void set_m_deferredCommands_16(EventCommandEventArgs_t96A2E796A34D5D2D56784C5DEDAE4BDA14EDBE15 * value) { ___m_deferredCommands_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_deferredCommands_16), (void*)value); } inline static int32_t get_offset_of_m_traits_17() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_traits_17)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_traits_17() const { return ___m_traits_17; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_traits_17() { return &___m_traits_17; } inline void set_m_traits_17(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___m_traits_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_traits_17), (void*)value); } inline static int32_t get_offset_of_m_curLiveSessions_20() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_curLiveSessions_20)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_curLiveSessions_20() const { return ___m_curLiveSessions_20; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_curLiveSessions_20() { return &___m_curLiveSessions_20; } inline void set_m_curLiveSessions_20(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_curLiveSessions_20 = value; } inline static int32_t get_offset_of_m_etwSessionIdMap_21() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_etwSessionIdMap_21)); } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* get_m_etwSessionIdMap_21() const { return ___m_etwSessionIdMap_21; } inline EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA** get_address_of_m_etwSessionIdMap_21() { return &___m_etwSessionIdMap_21; } inline void set_m_etwSessionIdMap_21(EtwSessionU5BU5D_t8797EC7C4B69B091119AFD2A22F03049811748FA* value) { ___m_etwSessionIdMap_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_etwSessionIdMap_21), (void*)value); } inline static int32_t get_offset_of_m_legacySessions_22() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_legacySessions_22)); } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * get_m_legacySessions_22() const { return ___m_legacySessions_22; } inline List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 ** get_address_of_m_legacySessions_22() { return &___m_legacySessions_22; } inline void set_m_legacySessions_22(List_1_t9CDF2E150AAD0D0EF043696D08554EE4E22E3E88 * value) { ___m_legacySessions_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_legacySessions_22), (void*)value); } inline static int32_t get_offset_of_m_keywordTriggers_23() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_keywordTriggers_23)); } inline int64_t get_m_keywordTriggers_23() const { return ___m_keywordTriggers_23; } inline int64_t* get_address_of_m_keywordTriggers_23() { return &___m_keywordTriggers_23; } inline void set_m_keywordTriggers_23(int64_t value) { ___m_keywordTriggers_23 = value; } inline static int32_t get_offset_of_m_activityFilteringForETWEnabled_24() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityFilteringForETWEnabled_24)); } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE get_m_activityFilteringForETWEnabled_24() const { return ___m_activityFilteringForETWEnabled_24; } inline SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE * get_address_of_m_activityFilteringForETWEnabled_24() { return &___m_activityFilteringForETWEnabled_24; } inline void set_m_activityFilteringForETWEnabled_24(SessionMask_tB8958F498570ACD71F69E13A7334D3ECD6837BDE value) { ___m_activityFilteringForETWEnabled_24 = value; } inline static int32_t get_offset_of_m_activityTracker_26() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB, ___m_activityTracker_26)); } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * get_m_activityTracker_26() const { return ___m_activityTracker_26; } inline ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 ** get_address_of_m_activityTracker_26() { return &___m_activityTracker_26; } inline void set_m_activityTracker_26(ActivityTracker_tFBAFEF8651768D41ECD29EF2692D57A6B6A80838 * value) { ___m_activityTracker_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_activityTracker_26), (void*)value); } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields { public: // System.UInt32 System.Diagnostics.Tracing.EventSource::s_currentPid uint32_t ___s_currentPid_18; // System.Action`1<System.Guid> System.Diagnostics.Tracing.EventSource::s_activityDying Action_1_t914484DED737548EE8FABFA959036371C8235942 * ___s_activityDying_25; // System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___namespaceBytes_27; // System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid Guid_t ___AspNetEventSourceGuid_28; public: inline static int32_t get_offset_of_s_currentPid_18() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_currentPid_18)); } inline uint32_t get_s_currentPid_18() const { return ___s_currentPid_18; } inline uint32_t* get_address_of_s_currentPid_18() { return &___s_currentPid_18; } inline void set_s_currentPid_18(uint32_t value) { ___s_currentPid_18 = value; } inline static int32_t get_offset_of_s_activityDying_25() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___s_activityDying_25)); } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 * get_s_activityDying_25() const { return ___s_activityDying_25; } inline Action_1_t914484DED737548EE8FABFA959036371C8235942 ** get_address_of_s_activityDying_25() { return &___s_activityDying_25; } inline void set_s_activityDying_25(Action_1_t914484DED737548EE8FABFA959036371C8235942 * value) { ___s_activityDying_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_activityDying_25), (void*)value); } inline static int32_t get_offset_of_namespaceBytes_27() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___namespaceBytes_27)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_namespaceBytes_27() const { return ___namespaceBytes_27; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_namespaceBytes_27() { return &___namespaceBytes_27; } inline void set_namespaceBytes_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___namespaceBytes_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_27), (void*)value); } inline static int32_t get_offset_of_AspNetEventSourceGuid_28() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_StaticFields, ___AspNetEventSourceGuid_28)); } inline Guid_t get_AspNetEventSourceGuid_28() const { return ___AspNetEventSourceGuid_28; } inline Guid_t * get_address_of_AspNetEventSourceGuid_28() { return &___AspNetEventSourceGuid_28; } inline void set_AspNetEventSourceGuid_28(Guid_t value) { ___AspNetEventSourceGuid_28 = value; } }; struct EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields { public: // System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount uint8_t ___m_EventSourceExceptionRecurenceCount_19; public: inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_19() { return static_cast<int32_t>(offsetof(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_19)); } inline uint8_t get_m_EventSourceExceptionRecurenceCount_19() const { return ___m_EventSourceExceptionRecurenceCount_19; } inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_19() { return &___m_EventSourceExceptionRecurenceCount_19; } inline void set_m_EventSourceExceptionRecurenceCount_19(uint8_t value) { ___m_EventSourceExceptionRecurenceCount_19 = value; } }; // System.Globalization.CompareInfo struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 : public RuntimeObject { public: // System.String System.Globalization.CompareInfo::m_name String_t* ___m_name_3; // System.String System.Globalization.CompareInfo::m_sortName String_t* ___m_sortName_4; // System.Int32 System.Globalization.CompareInfo::win32LCID int32_t ___win32LCID_5; // System.Int32 System.Globalization.CompareInfo::culture int32_t ___culture_6; // System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * ___m_SortVersion_20; // Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * ___collator_21; public: inline static int32_t get_offset_of_m_name_3() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_name_3)); } inline String_t* get_m_name_3() const { return ___m_name_3; } inline String_t** get_address_of_m_name_3() { return &___m_name_3; } inline void set_m_name_3(String_t* value) { ___m_name_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_3), (void*)value); } inline static int32_t get_offset_of_m_sortName_4() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_sortName_4)); } inline String_t* get_m_sortName_4() const { return ___m_sortName_4; } inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; } inline void set_m_sortName_4(String_t* value) { ___m_sortName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_sortName_4), (void*)value); } inline static int32_t get_offset_of_win32LCID_5() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___win32LCID_5)); } inline int32_t get_win32LCID_5() const { return ___win32LCID_5; } inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; } inline void set_win32LCID_5(int32_t value) { ___win32LCID_5 = value; } inline static int32_t get_offset_of_culture_6() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___culture_6)); } inline int32_t get_culture_6() const { return ___culture_6; } inline int32_t* get_address_of_culture_6() { return &___culture_6; } inline void set_culture_6(int32_t value) { ___culture_6 = value; } inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___m_SortVersion_20)); } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * get_m_SortVersion_20() const { return ___m_SortVersion_20; } inline SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; } inline void set_m_SortVersion_20(SortVersion_tE7080CE09A0B8CE226F8046C0D1374DD0A0CAE71 * value) { ___m_SortVersion_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SortVersion_20), (void*)value); } inline static int32_t get_offset_of_collator_21() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1, ___collator_21)); } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * get_collator_21() const { return ___collator_21; } inline SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 ** get_address_of_collator_21() { return &___collator_21; } inline void set_collator_21(SimpleCollator_tC3A1720B7D3D850D5C23BE8E366D821EBA923D89 * value) { ___collator_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___collator_21), (void*)value); } }; struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> System.Globalization.CompareInfo::collators Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * ___collators_22; // System.Boolean System.Globalization.CompareInfo::managedCollation bool ___managedCollation_23; // System.Boolean System.Globalization.CompareInfo::managedCollationChecked bool ___managedCollationChecked_24; public: inline static int32_t get_offset_of_collators_22() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___collators_22)); } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * get_collators_22() const { return ___collators_22; } inline Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 ** get_address_of_collators_22() { return &___collators_22; } inline void set_collators_22(Dictionary_2_t61B96E9258C1E296057BCD8C4D2015846D2BB8F3 * value) { ___collators_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___collators_22), (void*)value); } inline static int32_t get_offset_of_managedCollation_23() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollation_23)); } inline bool get_managedCollation_23() const { return ___managedCollation_23; } inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; } inline void set_managedCollation_23(bool value) { ___managedCollation_23 = value; } inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast<int32_t>(offsetof(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_StaticFields, ___managedCollationChecked_24)); } inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; } inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; } inline void set_managedCollationChecked_24(bool value) { ___managedCollationChecked_24 = value; } }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 : public RuntimeObject { public: // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; public: inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSizes_1)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; } inline void set_numberGroupSizes_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___numberGroupSizes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value); } inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSizes_2)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; } inline void set_currencyGroupSizes_2(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___currencyGroupSizes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value); } inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSizes_3)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; } inline void set_percentGroupSizes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___percentGroupSizes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value); } inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveSign_4)); } inline String_t* get_positiveSign_4() const { return ___positiveSign_4; } inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; } inline void set_positiveSign_4(String_t* value) { ___positiveSign_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value); } inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeSign_5)); } inline String_t* get_negativeSign_5() const { return ___negativeSign_5; } inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; } inline void set_negativeSign_5(String_t* value) { ___negativeSign_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value); } inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalSeparator_6)); } inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; } inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; } inline void set_numberDecimalSeparator_6(String_t* value) { ___numberDecimalSeparator_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value); } inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberGroupSeparator_7)); } inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; } inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; } inline void set_numberGroupSeparator_7(String_t* value) { ___numberGroupSeparator_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value); } inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyGroupSeparator_8)); } inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; } inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; } inline void set_currencyGroupSeparator_8(String_t* value) { ___currencyGroupSeparator_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value); } inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalSeparator_9)); } inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; } inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; } inline void set_currencyDecimalSeparator_9(String_t* value) { ___currencyDecimalSeparator_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value); } inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencySymbol_10)); } inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; } inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; } inline void set_currencySymbol_10(String_t* value) { ___currencySymbol_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value); } inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___ansiCurrencySymbol_11)); } inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; } inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; } inline void set_ansiCurrencySymbol_11(String_t* value) { ___ansiCurrencySymbol_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value); } inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nanSymbol_12)); } inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; } inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; } inline void set_nanSymbol_12(String_t* value) { ___nanSymbol_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value); } inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___positiveInfinitySymbol_13)); } inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; } inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; } inline void set_positiveInfinitySymbol_13(String_t* value) { ___positiveInfinitySymbol_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value); } inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___negativeInfinitySymbol_14)); } inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; } inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; } inline void set_negativeInfinitySymbol_14(String_t* value) { ___negativeInfinitySymbol_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value); } inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalSeparator_15)); } inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; } inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; } inline void set_percentDecimalSeparator_15(String_t* value) { ___percentDecimalSeparator_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value); } inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentGroupSeparator_16)); } inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; } inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; } inline void set_percentGroupSeparator_16(String_t* value) { ___percentGroupSeparator_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value); } inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentSymbol_17)); } inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; } inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; } inline void set_percentSymbol_17(String_t* value) { ___percentSymbol_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value); } inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___perMilleSymbol_18)); } inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; } inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; } inline void set_perMilleSymbol_18(String_t* value) { ___perMilleSymbol_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value); } inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___nativeDigits_19)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_nativeDigits_19() const { return ___nativeDigits_19; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_nativeDigits_19() { return &___nativeDigits_19; } inline void set_nativeDigits_19(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___nativeDigits_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value); } inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_dataItem_20)); } inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; } inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; } inline void set_m_dataItem_20(int32_t value) { ___m_dataItem_20 = value; } inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberDecimalDigits_21)); } inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; } inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; } inline void set_numberDecimalDigits_21(int32_t value) { ___numberDecimalDigits_21 = value; } inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyDecimalDigits_22)); } inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; } inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; } inline void set_currencyDecimalDigits_22(int32_t value) { ___currencyDecimalDigits_22 = value; } inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyPositivePattern_23)); } inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; } inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; } inline void set_currencyPositivePattern_23(int32_t value) { ___currencyPositivePattern_23 = value; } inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___currencyNegativePattern_24)); } inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; } inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; } inline void set_currencyNegativePattern_24(int32_t value) { ___currencyNegativePattern_24 = value; } inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___numberNegativePattern_25)); } inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; } inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; } inline void set_numberNegativePattern_25(int32_t value) { ___numberNegativePattern_25 = value; } inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentPositivePattern_26)); } inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; } inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; } inline void set_percentPositivePattern_26(int32_t value) { ___percentPositivePattern_26 = value; } inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentNegativePattern_27)); } inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; } inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; } inline void set_percentNegativePattern_27(int32_t value) { ___percentNegativePattern_27 = value; } inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___percentDecimalDigits_28)); } inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; } inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; } inline void set_percentDecimalDigits_28(int32_t value) { ___percentDecimalDigits_28 = value; } inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___digitSubstitution_29)); } inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; } inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; } inline void set_digitSubstitution_29(int32_t value) { ___digitSubstitution_29 = value; } inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___isReadOnly_30)); } inline bool get_isReadOnly_30() const { return ___isReadOnly_30; } inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; } inline void set_isReadOnly_30(bool value) { ___isReadOnly_30 = value; } inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_useUserOverride_31)); } inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; } inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; } inline void set_m_useUserOverride_31(bool value) { ___m_useUserOverride_31 = value; } inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___m_isInvariant_32)); } inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; } inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; } inline void set_m_isInvariant_32(bool value) { ___m_isInvariant_32 = value; } inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsNumber_33)); } inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; } inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; } inline void set_validForParseAsNumber_33(bool value) { ___validForParseAsNumber_33 = value; } inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8, ___validForParseAsCurrency_34)); } inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; } inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; } inline void set_validForParseAsCurrency_34(bool value) { ___validForParseAsCurrency_34 = value; } }; struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields { public: // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___invariantInfo_0; public: inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8_StaticFields, ___invariantInfo_0)); } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_invariantInfo_0() const { return ___invariantInfo_0; } inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; } inline void set_invariantInfo_0(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value) { ___invariantInfo_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value); } }; // System.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.RtFieldInfo struct RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 : public RuntimeFieldInfo_t9C8BA644F857EBE60EC6587AE1C1148E420E66F7 { public: public: }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 : public MulticastDelegate_t { public: public: }; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t { public: public: }; // System.BadImageFormatException struct BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.BadImageFormatException::_fileName String_t* ____fileName_17; // System.String System.BadImageFormatException::_fusionLog String_t* ____fusionLog_18; public: inline static int32_t get_offset_of__fileName_17() { return static_cast<int32_t>(offsetof(BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9, ____fileName_17)); } inline String_t* get__fileName_17() const { return ____fileName_17; } inline String_t** get_address_of__fileName_17() { return &____fileName_17; } inline void set__fileName_17(String_t* value) { ____fileName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____fileName_17), (void*)value); } inline static int32_t get_offset_of__fusionLog_18() { return static_cast<int32_t>(offsetof(BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9, ____fusionLog_18)); } inline String_t* get__fusionLog_18() const { return ____fusionLog_18; } inline String_t** get_address_of__fusionLog_18() { return &____fusionLog_18; } inline void set__fusionLog_18(String_t* value) { ____fusionLog_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____fusionLog_18), (void*)value); } }; // System.CannotUnloadAppDomainException struct CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Collections.Concurrent.CDSCollectionETWBCLProvider struct CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 : public EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB { public: public: }; struct CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_StaticFields { public: // System.Collections.Concurrent.CDSCollectionETWBCLProvider System.Collections.Concurrent.CDSCollectionETWBCLProvider::Log CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * ___Log_29; public: inline static int32_t get_offset_of_Log_29() { return static_cast<int32_t>(offsetof(CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_StaticFields, ___Log_29)); } inline CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * get_Log_29() const { return ___Log_29; } inline CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 ** get_address_of_Log_29() { return &___Log_29; } inline void set_Log_29(CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * value) { ___Log_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___Log_29), (void*)value); } }; // System.Collections.Generic.KeyNotFoundException struct KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.IndexOutOfRangeException struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.InvalidCastException struct InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.NotSupportedException struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.RankException struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Reflection.AmbiguousMatchException struct AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; // System.Reflection.TypeInfo struct TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC : public Type_t { public: public: }; // System.Runtime.Serialization.SerializationException struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields { public: // System.String System.Runtime.Serialization.SerializationException::_nullMessage String_t* ____nullMessage_17; public: inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); } inline String_t* get__nullMessage_17() const { return ____nullMessage_17; } inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; } inline void set__nullMessage_17(String_t* value) { ____nullMessage_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value); } }; // System.Security.SecurityException struct SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.Security.SecurityException::permissionState String_t* ___permissionState_17; public: inline static int32_t get_offset_of_permissionState_17() { return static_cast<int32_t>(offsetof(SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5, ___permissionState_17)); } inline String_t* get_permissionState_17() const { return ___permissionState_17; } inline String_t** get_address_of_permissionState_17() { return &___permissionState_17; } inline void set_permissionState_17(String_t* value) { ___permissionState_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___permissionState_17), (void*)value); } }; // System.TypeLoadException struct TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.TypeLoadException::ClassName String_t* ___ClassName_17; // System.String System.TypeLoadException::AssemblyName String_t* ___AssemblyName_18; // System.String System.TypeLoadException::MessageArg String_t* ___MessageArg_19; // System.Int32 System.TypeLoadException::ResourceId int32_t ___ResourceId_20; public: inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ClassName_17)); } inline String_t* get_ClassName_17() const { return ___ClassName_17; } inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; } inline void set_ClassName_17(String_t* value) { ___ClassName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value); } inline static int32_t get_offset_of_AssemblyName_18() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___AssemblyName_18)); } inline String_t* get_AssemblyName_18() const { return ___AssemblyName_18; } inline String_t** get_address_of_AssemblyName_18() { return &___AssemblyName_18; } inline void set_AssemblyName_18(String_t* value) { ___AssemblyName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_18), (void*)value); } inline static int32_t get_offset_of_MessageArg_19() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___MessageArg_19)); } inline String_t* get_MessageArg_19() const { return ___MessageArg_19; } inline String_t** get_address_of_MessageArg_19() { return &___MessageArg_19; } inline void set_MessageArg_19(String_t* value) { ___MessageArg_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___MessageArg_19), (void*)value); } inline static int32_t get_offset_of_ResourceId_20() { return static_cast<int32_t>(offsetof(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1, ___ResourceId_20)); } inline int32_t get_ResourceId_20() const { return ___ResourceId_20; } inline int32_t* get_address_of_ResourceId_20() { return &___ResourceId_20; } inline void set_ResourceId_20(int32_t value) { ___ResourceId_20 = value; } }; // System.ArgumentNullException struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.OverflowException struct OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D : public ArithmeticException_tF9EF5FE94597830EF315C5934258F994B8648269 { public: public: }; // System.RuntimeType struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F : public TypeInfo_t9D6F65801A41B97F36138B15FD270A1550DBB3FC { public: // System.MonoTypeInfo System.RuntimeType::type_info MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * ___type_info_26; // System.Object System.RuntimeType::GenericCache RuntimeObject * ___GenericCache_27; // System.Reflection.RuntimeConstructorInfo System.RuntimeType::m_serializationCtor RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * ___m_serializationCtor_28; public: inline static int32_t get_offset_of_type_info_26() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___type_info_26)); } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * get_type_info_26() const { return ___type_info_26; } inline MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D ** get_address_of_type_info_26() { return &___type_info_26; } inline void set_type_info_26(MonoTypeInfo_t9A65BA5324D14FDFEB7644EEE6E1BDF74B8A393D * value) { ___type_info_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___type_info_26), (void*)value); } inline static int32_t get_offset_of_GenericCache_27() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___GenericCache_27)); } inline RuntimeObject * get_GenericCache_27() const { return ___GenericCache_27; } inline RuntimeObject ** get_address_of_GenericCache_27() { return &___GenericCache_27; } inline void set_GenericCache_27(RuntimeObject * value) { ___GenericCache_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___GenericCache_27), (void*)value); } inline static int32_t get_offset_of_m_serializationCtor_28() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F, ___m_serializationCtor_28)); } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * get_m_serializationCtor_28() const { return ___m_serializationCtor_28; } inline RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D ** get_address_of_m_serializationCtor_28() { return &___m_serializationCtor_28; } inline void set_m_serializationCtor_28(RuntimeConstructorInfo_tF21A59967629968D0BE5D0DAF677662824E9629D * value) { ___m_serializationCtor_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_serializationCtor_28), (void*)value); } }; struct RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields { public: // System.RuntimeType System.RuntimeType::ValueType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ValueType_10; // System.RuntimeType System.RuntimeType::EnumType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___EnumType_11; // System.RuntimeType System.RuntimeType::ObjectType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___ObjectType_12; // System.RuntimeType System.RuntimeType::StringType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___StringType_13; // System.RuntimeType System.RuntimeType::DelegateType RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___DelegateType_14; // System.Type[] System.RuntimeType::s_SICtorParamTypes TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___s_SICtorParamTypes_15; // System.RuntimeType System.RuntimeType::s_typedRef RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___s_typedRef_25; public: inline static int32_t get_offset_of_ValueType_10() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ValueType_10)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ValueType_10() const { return ___ValueType_10; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ValueType_10() { return &___ValueType_10; } inline void set_ValueType_10(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ValueType_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ValueType_10), (void*)value); } inline static int32_t get_offset_of_EnumType_11() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___EnumType_11)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_EnumType_11() const { return ___EnumType_11; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_EnumType_11() { return &___EnumType_11; } inline void set_EnumType_11(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___EnumType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnumType_11), (void*)value); } inline static int32_t get_offset_of_ObjectType_12() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___ObjectType_12)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_ObjectType_12() const { return ___ObjectType_12; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_ObjectType_12() { return &___ObjectType_12; } inline void set_ObjectType_12(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___ObjectType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___ObjectType_12), (void*)value); } inline static int32_t get_offset_of_StringType_13() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___StringType_13)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_StringType_13() const { return ___StringType_13; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_StringType_13() { return &___StringType_13; } inline void set_StringType_13(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___StringType_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___StringType_13), (void*)value); } inline static int32_t get_offset_of_DelegateType_14() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___DelegateType_14)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_DelegateType_14() const { return ___DelegateType_14; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_DelegateType_14() { return &___DelegateType_14; } inline void set_DelegateType_14(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___DelegateType_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___DelegateType_14), (void*)value); } inline static int32_t get_offset_of_s_SICtorParamTypes_15() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_SICtorParamTypes_15)); } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_s_SICtorParamTypes_15() const { return ___s_SICtorParamTypes_15; } inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_s_SICtorParamTypes_15() { return &___s_SICtorParamTypes_15; } inline void set_s_SICtorParamTypes_15(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value) { ___s_SICtorParamTypes_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_SICtorParamTypes_15), (void*)value); } inline static int32_t get_offset_of_s_typedRef_25() { return static_cast<int32_t>(offsetof(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_StaticFields, ___s_typedRef_25)); } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * get_s_typedRef_25() const { return ___s_typedRef_25; } inline RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F ** get_address_of_s_typedRef_25() { return &___s_typedRef_25; } inline void set_s_typedRef_25(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * value) { ___s_typedRef_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_typedRef_25), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.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.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.Object[] struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.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.Attribute[] struct AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17 : public RuntimeArray { public: ALIGN_FIELD (8) Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * m_Items[1]; public: inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** 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, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.FieldInfo[] struct FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE : public RuntimeArray { public: ALIGN_FIELD (8) FieldInfo_t * m_Items[1]; public: inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.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.Collections.Hashtable_bucket[] struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A : public RuntimeArray { public: ALIGN_FIELD (8) bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 m_Items[1]; public: inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * 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, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val_1), (void*)NULL); #endif } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val_1), (void*)NULL); #endif } }; // System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F_gshared (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.EqualityComparer`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m2B03FB26184C766345AA072BEA38AA745AE2E192_gshared (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * __this, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Add(TKey,TValue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::TryGetValue(TKey,TValue&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>::Remove(TKey) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared (ConditionalWeakTable_2_tAD6736E4C6A9AF930D360966499D999E3CE45BF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.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.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Array System.Array::CreateInstance(System.Type,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, 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.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 System.Array::GetLowerBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, 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.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, 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.Int32 System.Array::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method); // System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, 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.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.Int32 System.Array::GetLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method); // System.Object System.Array::GetValue(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices0, const RuntimeMethod* method); // System.Void System.RankException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 System.Array::GetMedian(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F (int32_t ___low0, int32_t ___hi1, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, int32_t ___index33, const RuntimeMethod* method); // System.Void System.Array::SetValue(System.Object,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices1, const RuntimeMethod* method); // System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method); // System.Void System.Array::SortImpl(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method); // System.Void System.Array/ArrayEnumerator::.ctor(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, RuntimeArray * ___array0, 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.Array::GetRank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39 (RuntimeArray * __this, const RuntimeMethod* method); // System.Int32 System.Array::GetUpperBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method); // System.String Locale::GetText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method); // System.Void System.IndexOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, String_t* ___message0, 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_IsPointer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57 (Type_t * __this, const RuntimeMethod* method); // System.Object System.Array::GetValueImpl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Void System.Array::SetValueImpl(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method); // System.Array System.Array::CreateInstance(System.Type,System.Int32[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method); // System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method); // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method); // System.Void System.TypeLoadException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355 (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * __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.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___bounds2, const RuntimeMethod* method); // System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1 (RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method); // System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097 (RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method); // System.Exception System.Array::CreateArrayTypeMismatchException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5 (const RuntimeMethod* method); // System.Boolean System.Array::CanAssignArrayElement(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8 (Type_t * ___source0, Type_t * ___target1, const RuntimeMethod* method); // System.Void System.ArrayTypeMismatchException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1 (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8 (Type_t * __this, const RuntimeMethod* method); // System.Boolean System.Type::get_IsInterface() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED (Type_t * __this, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::.ctor(System.Object[],System.Object[],System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::Sort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::.ctor(System.Array,System.Array,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::Sort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, 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.Array/SorterGenericArray::SwapIfGreaterWithItems(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::Swap(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::IntrospectiveSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.IntrospectiveSortUtilities::FloorLog2(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA (int32_t ___n0, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::IntroSort(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method); // System.Void System.Collections.Generic.IntrospectiveSortUtilities::ThrowOrIgnoreBadComparer(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A (RuntimeObject * ___comparer0, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::InsertionSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::Heapsort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Int32 System.Array/SorterGenericArray::PickPivotAndPartition(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Void System.Array/SorterGenericArray::DownHeap(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::SwapIfGreaterWithItems(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::Swap(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::IntrospectiveSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::IntroSort(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::InsertionSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::Heapsort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Int32 System.Array/SorterObjectArray::PickPivotAndPartition(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method); // System.Void System.Array/SorterObjectArray::DownHeap(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.ArraySpec::Append(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method); // System.Void System.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.Exception::SetErrorCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method); // System.Void System.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.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7 (EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E * __this, const RuntimeMethod* method); // System.Object[] System.MonoCustomAttrs::GetCustomAttributes(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.MonoCustomAttrs::IsDefined(System.Reflection.ICustomAttributeProvider,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4 (RuntimeObject* ___obj0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.Reflection.MemberInfo::op_Equality(System.Reflection.MemberInfo,System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9 (MemberInfo_t * ___left0, MemberInfo_t * ___right1, 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.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.PropertyInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3 (PropertyInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method); // System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.EventInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87 (EventInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.Attribute::InternalIsDefined(System.Reflection.PropertyInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8 (PropertyInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.Attribute::InternalIsDefined(System.Reflection.EventInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24 (EventInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8 (MemberInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method); // System.Void System.Reflection.AmbiguousMatchException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006 (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * __this, String_t* ___message0, 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.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498 (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method); // System.Boolean System.RuntimeType::op_Inequality(System.RuntimeType,System.RuntimeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D (RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___left0, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * ___right1, const RuntimeMethod* method); // System.Object System.Reflection.RtFieldInfo::UnsafeGetValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A (RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Attribute::AreFieldValuesEqual(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C (RuntimeObject * ___thisValue0, RuntimeObject * ___thatValue1, 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.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method); // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, 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.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method); // System.Int32 System.Exception::get_HResult() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method); // System.String System.IO.FileLoadException::FormatFileLoadExceptionMessage(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileLoadException_FormatFileLoadExceptionMessage_m0DB5F9435778EFAEB7E4A91987B1C1925CCAA6F6 (String_t* ___fileName0, int32_t ___hResult1, const RuntimeMethod* method); // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3 (Exception_t * __this, const RuntimeMethod* method); // System.String System.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.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.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318 (const RuntimeMethod* method); // System.String System.Environment::GetResourceString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method); // System.Exception System.Exception::get_InnerException() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method); // System.String System.BadImageFormatException::get_FusionLog() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __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.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // 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.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E (int32_t ___argument0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84 (int32_t ___resource0, const RuntimeMethod* method); // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method); // System.Char System.BitConverter::GetHexValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3 (int32_t ___i0, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.Boolean System.BitConverter::AmILittleEndian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8 (const RuntimeMethod* method); // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method); // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method); // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060 (bool* __this, bool ___obj0, const RuntimeMethod* method); // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911 (bool* __this, bool ___value0, const RuntimeMethod* method); // System.Boolean System.Boolean::TryParse(System.String,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method); // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.String System.Boolean::TrimWhiteSpaceAndNull(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C (String_t* ___value0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, 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.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88 (bool* __this, const RuntimeMethod* method); // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812 (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mE5314E3F9BD2A1FB38C2E8F91065A515DB980349 (bool ___value0, const RuntimeMethod* method); // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716 (bool ___value0, const RuntimeMethod* method); // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mE5AC67CF54A1DC058F4FF94444E2BED13D4E41A1 (bool ___value0, const RuntimeMethod* method); // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mE5DBE88FC67DB81359A27BEC9BC61EE1C4816F7E (bool ___value0, const RuntimeMethod* method); // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m39901AE09C5431063E0EDBD286948E875E747B66 (bool ___value0, const RuntimeMethod* method); // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m0A1093A798B8004A58C7905A23886132BDC347ED (bool ___value0, const RuntimeMethod* method); // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mBF88328347C2C2FC83315E9B950ADD1CF473559E (bool ___value0, const RuntimeMethod* method); // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m46350FEF6029990034BDFAB1FBC4F25EAF47B53B (bool ___value0, const RuntimeMethod* method); // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m8C04F9D9C974F7AD8B41E87B5419FFA9EB9C88E7 (bool ___value0, const RuntimeMethod* method); // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Convert::ToDouble(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mF6258103D74509D52040BECC84FB241B09B6CC62 (bool ___value0, const RuntimeMethod* method); // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC (bool ___value0, const RuntimeMethod* method); // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method); // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method); // System.Int32 System.Buffer::_ByteLength(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34 (RuntimeArray * ___array0, const RuntimeMethod* method); // System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method); // System.Int32 System.Buffer::ByteLength(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8 (RuntimeArray * ___array0, const RuntimeMethod* method); // System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method); // System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method); // System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method); // System.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Byte::CompareTo(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method); // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method); // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0 (uint8_t* __this, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A (RuntimeObject* ___formatProvider0, const RuntimeMethod* method); // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3 (int32_t ___style0, const RuntimeMethod* method); // System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731 (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * __this, String_t* ___message0, const RuntimeMethod* method); // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9 (const RuntimeMethod* method); // System.Boolean System.Byte::TryParse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_m4808D6C3380A38298F4BAC84B3300D8E53CD59A1 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, uint8_t* ___result3, const RuntimeMethod* method); // System.Boolean System.Number::TryParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, int32_t* ___result3, const RuntimeMethod* method); // System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method); // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263 (uint8_t* __this, const RuntimeMethod* method); // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method); // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724 (uint8_t* __this, const RuntimeMethod* method); // System.Boolean System.Convert::ToBoolean(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mC149366F949BE8368C7C7C7BF3830DE15EA40AA8 (uint8_t ___value0, const RuntimeMethod* method); // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Char System.Convert::ToChar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18 (uint8_t ___value0, const RuntimeMethod* method); // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00 (uint8_t ___value0, const RuntimeMethod* method); // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mEC55F68B89662CDBC0E1D7D596EC04153B377E60 (uint8_t ___value0, const RuntimeMethod* method); // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m7251119DC9E451E9DB0AB5742769643B7F414876 (uint8_t ___value0, const RuntimeMethod* method); // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m322C82C3EB50E7389A4A38C4601FD08705CA56CF (uint8_t ___value0, const RuntimeMethod* method); // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m4D054799D266E79452F38327EF9D954E0D3F64D3 (uint8_t ___value0, const RuntimeMethod* method); // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m503ADEC363722EBF6A65F9C9F5619150BF00DDCC (uint8_t ___value0, const RuntimeMethod* method); // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mAD731FB7078B5949B0592212E8563C59F1CC7172 (uint8_t ___value0, const RuntimeMethod* method); // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Convert::ToSingle(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m0DC063AF835020D49B1FB600753AFCDA0205609A (uint8_t ___value0, const RuntimeMethod* method); // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Convert::ToDouble(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mFB12B649AA6A4D71FDA6BD62D88FD785E2452FA5 (uint8_t ___value0, const RuntimeMethod* method); // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.Convert::ToDecimal(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6 (uint8_t ___value0, const RuntimeMethod* method); // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, 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.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2 (Il2CppChar* __this, const RuntimeMethod* method); // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method); // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F (Il2CppChar ___c0, const RuntimeMethod* method); // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m0E7BBCE09E386877E2B63BF7FA36B956BF221C93 (String_t* __this, Il2CppChar ___c0, int32_t ___count1, const RuntimeMethod* method); // System.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6 (int32_t ___uc0, const RuntimeMethod* method); // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571 (int32_t ___uc0, const RuntimeMethod* method); // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9 (int32_t ___uc0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method); // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method); // System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method); // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D (Il2CppChar* __this, const RuntimeMethod* method); // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.SByte System.Convert::ToSByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94 (Il2CppChar ___value0, const RuntimeMethod* method); // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Byte System.Convert::ToByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5 (Il2CppChar ___value0, const RuntimeMethod* method); // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int16 System.Convert::ToInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35 (Il2CppChar ___value0, const RuntimeMethod* method); // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt16 System.Convert::ToUInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m2F8D708D059B3A7FC317AD8A56D492253E359E24 (Il2CppChar ___value0, const RuntimeMethod* method); // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Convert::ToInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8BE65713C8D5E0AD45D53B82A5A7BD187BEBA917 (Il2CppChar ___value0, const RuntimeMethod* method); // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt32 System.Convert::ToUInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m123C758E6CB699FCFD9E8ABCF1042C1CD70DE944 (Il2CppChar ___value0, const RuntimeMethod* method); // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int64 System.Convert::ToInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mAF15CED595F02814C73326AF76050B600CAED358 (Il2CppChar ___value0, const RuntimeMethod* method); // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.UInt64 System.Convert::ToUInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mFCB74BC6F5D944A1894E875C4B8D3D53DE7EFA75 (Il2CppChar ___value0, const RuntimeMethod* method); // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E (int32_t ___uc0, const RuntimeMethod* method); // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_m2A5B7CB13D0606CD25210FEDD764898FD86546FD (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_mA37B99B44339849D416C46F29C4159F6EC86969D (int32_t ___uc0, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9 (int32_t ___ch0, const RuntimeMethod* method); // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method); // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C (Il2CppChar ___c0, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method); // System.Void System.Collections.ArrayList::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_EnsureCapacity_mDA044FF02E59C70020A08408073BD2DC2B289D35 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___min0, const RuntimeMethod* method); // System.Void System.Collections.ArrayList::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.ArrayList/ArrayListEnumeratorSimple::.ctor(System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple__ctor_m756A442DA7502E724BC9F670BC872C3C0CFDC16A (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list0, const RuntimeMethod* method); // System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_m48C48756F11E597154438531519DD9279FEA273B (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method); // System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4 (CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method); // System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6 (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method); // System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A (CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method); // System.Int32 System.Globalization.TextInfo::GetCaseInsensitiveHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextInfo_GetCaseInsensitiveHashCode_mA0883910FCFF73F435F0AD0F2CDF49A47112A9E4 (TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * __this, String_t* ___str0, 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::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.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method); // System.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::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method); // System.Int32 System.Collections.CompatibleComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, const RuntimeMethod* method); // System.Boolean System.Diagnostics.Tracing.EventSource::IsEnabled(System.Diagnostics.Tracing.EventLevel,System.Diagnostics.Tracing.EventKeywords) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___level0, int64_t ___keywords1, const RuntimeMethod* method); // System.Void System.Diagnostics.Tracing.EventSource::WriteEvent(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m44D8648B0F8F664487F15BEA6E13AE6D81543CB8 (EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB * __this, int32_t ___eventId0, int32_t ___arg11, const RuntimeMethod* method); // System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m6FA90B160A07F2E2F2D90674B092B679C8E82C69 (CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * __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.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.Int32 System.Buffer::IndexOfByte(System.Byte*,System.Byte,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_m04E6E27CA0059C3D1F07DF6FEE96517B0A795EB8 (uint8_t* ___src0, uint8_t ___value1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method); // System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor() inline void EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 * __this, const RuntimeMethod* method) { (( void (*) (EqualityComparer_1_t3A6890CC3BA3A4DBC0B7B4A4486D314AB72F2EA5 *, const RuntimeMethod*))EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F_gshared)(__this, method); } // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::.ctor() inline void ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, const RuntimeMethod*))ConditionalWeakTable_2__ctor_m1BF7C98CA314D99CE58778C0C661D5F1628B6563_gshared)(__this, method); } // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.EqualityComparer`1<System.String>::.ctor() inline void EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9 (EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 * __this, const RuntimeMethod* method) { (( void (*) (EqualityComparer_1_tBEFFC6F649A17852373A084880D57CB299084137 *, const RuntimeMethod*))EqualityComparer_1__ctor_m2B03FB26184C766345AA072BEA38AA745AE2E192_gshared)(__this, method); } // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7 (String_t* ___resourceFormat0, RuntimeObject * ___p11, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilderCache_Acquire_mCA3DDB17F0BFEF32DA9B4D7E8501D5705890557D (int32_t ___capacity0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method); // System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_mDD5B8378FE9378CACF8660EB460E0CE545F215F7 (StringBuilder_t * ___sb0, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m90EB651A751C3444BADBBD5401109CE05B3E1CFB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Int32 System.String::GetLegacyNonRandomizedHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_GetLegacyNonRandomizedHashCode_m9CDCA17EB090873E71BB87D2976233C0A9C40513 (String_t* __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.ObjectEqualityComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer__ctor_m915830D1728E66DAE8797E7BE46AA4754C629BD9 (ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * __this, const RuntimeMethod* method); // System.Boolean System.Collections.HashHelpers::IsPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashHelpers_IsPrime_mB435CA4898F891CCFE7227DB6721A9803E35099B (int32_t ___candidate0, const RuntimeMethod* method); // System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297 (int32_t ___min0, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, const RuntimeMethod* method); // System.Void System.Collections.CompatibleComparer::.ctor(System.Collections.IComparer,System.Collections.IHashCodeProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompatibleComparer__ctor_m3FA12981F83EB4F3A494E99EF85094EB745467F7 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject* ___comparer0, RuntimeObject* ___hashCodeProvider1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD46ADBCA982FA8472FC5BB378805806A4E9B0066 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m8366AAA825F2A5D450EE8A4A65E5844DF29B7AF0 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___equalityComparer2, const RuntimeMethod* method); // System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.HashHelpers::get_SerializationInfoTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42 (const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Add(TKey,TValue) inline void ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___value1, const RuntimeMethod* method) { (( void (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 *, const RuntimeMethod*))ConditionalWeakTable_2_Add_m328BEB54F1BEAC2B86045D46A84627B02C82E777_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Hashtable::Insert(System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, RuntimeObject * ___nvalue1, bool ___add2, const RuntimeMethod* method); // System.Void System.Threading.Thread::BeginCriticalRegion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44 (const RuntimeMethod* method); // System.Void System.Collections.Hashtable::UpdateVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::EndCriticalRegion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E (const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m99DEEBD0F97806D7B365F2BF4ED68D775BFCED8D (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method); // System.UInt32 System.Collections.Hashtable::InitHash(System.Object,System.Int32,System.UInt32&,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, int32_t ___hashsize1, uint32_t* ___seed2, uint32_t* ___incr3, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::CopyEntries(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyEntries_mFA218BB5B5B0109BBE5D84BE71989E08E1C6DEAB (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method); // System.Void System.Threading.Thread::Sleep(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF (int32_t ___millisecondsTimeout0, const RuntimeMethod* method); // System.Int32 System.Collections.HashHelpers::ExpandPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D (int32_t ___oldSize0, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::rehash(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___newsize0, bool ___forceNewHashCode1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::putEntry(System.Collections.Hashtable/bucket[],System.Object,System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_putEntry_m78B9261F87753554D08F85CA09D38D017611F902 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___newBuckets0, RuntimeObject * ___key1, RuntimeObject * ___nvalue2, int32_t ___hashcode3, const RuntimeMethod* method); // System.Void System.Collections.Hashtable/HashtableEnumerator::.ctor(System.Collections.Hashtable,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator__ctor_mA4893AEBBF14528B90AF67E83490AC2CE935A166 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable0, int32_t ___getObjRetType1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable/KeyCollection::.ctor(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection__ctor_m58E48C20C50744A6E711BA0504B8520945C5DD4B (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable0, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::expand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_expand_mD61249F8FD7525FB392A38813E65A1E932FD6CA9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::rehash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m363B9C1D24C59E196485980E03EDC34B1265567A (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable/SyncHashtable::.ctor(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_m2CA4BAD2FE04F356B41CB54032144A6F577D960F (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, 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.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m00E7A843A1BB398AAC059B357DF478692285D305 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, float ___value1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method); // System.Collections.IComparer System.Collections.CompatibleComparer::get_Comparer() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_Comparer_mEBD487B199A5AEFF1B6F903B914067CC01303061_inline (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method); // System.Collections.IHashCodeProvider System.Collections.CompatibleComparer::get_HashCodeProvider() IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_m53653737058DB625DEE0F23D24129D0052BE0530_inline (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::CopyKeys(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyKeys_m84AE68F9F9B7C73AE749F45EDAE2413398D0F2BF (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::CopyValues(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyValues_m3FD762F0A826EFE7C7CBBC5EEC14C47B1CEF5219 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, 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.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::TryGetValue(TKey,TValue&) inline bool ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **, const RuntimeMethod*))ConditionalWeakTable_2_TryGetValue_m281BFEF9AF914D26E08E1DE24C8A88D3CA8D557D_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method); // System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A (String_t* ___s0, const RuntimeMethod* method); // System.Single System.Runtime.Serialization.SerializationInfo::GetSingle(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SerializationInfo_GetSingle_m8AEE647D41D4C89D5331F2E3EBF17213284EE28D (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>::Remove(TKey) inline bool ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { return (( bool (*) (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *, RuntimeObject *, const RuntimeMethod*))ConditionalWeakTable_2_Remove_mD29BDC3DDB873F63EE055D4D5064CCD80CDCC21A_gshared)(__this, ___key0, method); } // System.Void System.Collections.Hashtable::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m25CFEE0C3607B2CF35DCCC61FD924708F082BF90 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, bool ___trash0, const RuntimeMethod* method); // System.Void System.Collections.Hashtable::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m7CD7D10246451D96AD05E8A593AA1E74412FA453 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method); // System.Collections.Hashtable System.Collections.Hashtable::Synchronized(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, const RuntimeMethod* method); // System.Void System.Collections.LowLevelComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LowLevelComparer__ctor_m880FBF3287CA2B9BA3A3501F8492A224C3045605 (LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * __this, const RuntimeMethod* method); // System.Void System.Collections.Queue::.ctor(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, float ___growFactor1, const RuntimeMethod* method); // System.Void System.Collections.Queue::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_m7A38C651E238B2B6626D9DE8182210D956F4FCCD (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Queue::SetCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_SetCapacity_mB3C8692505E4094B25C932B8AED6EB6A032283A0 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Queue/QueueEnumerator::.ctor(System.Collections.Queue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueEnumerator__ctor_m092D234EC5E7E625B31D1D626D951C1835F87EDF (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * ___q0, const RuntimeMethod* method); // System.Object System.Collections.Queue::GetElement(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_GetElement_m612CFE182D43EF6A21EB21CDF53F80F4BC36816C (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Collections.SortedList::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_Init_m117CAD874BDC5E2559B518368A167CD4011F54C5 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method); // System.Void System.Collections.SortedList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mBF1B7B8D37D3C752EA3F9FA173076B9478A35CEE (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method); // System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mD73C626428344DB75A9EE4EBDD009568226D7757 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Void System.Collections.SortedList::Insert(System.Int32,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_Insert_mDC41054D6440DF5AD4873ABB9D4F4583067B6287 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___index0, RuntimeObject * ___key1, RuntimeObject * ___value2, const RuntimeMethod* method); // System.Void System.Collections.SortedList::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___initialCapacity0, const RuntimeMethod* method); // System.Void System.Collections.SortedList/SortedListEnumerator::.ctor(System.Collections.SortedList,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListEnumerator__ctor_m91F6FB1020A030036AE45501806206DE3695568B (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___sortedList0, int32_t ___index1, int32_t ___count2, int32_t ___getObjRetType3, const RuntimeMethod* method); // System.Void System.Collections.SortedList::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_EnsureCapacity_m70B0336FC9612C2932F3CABF925355D4245D7C85 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___min0, const RuntimeMethod* method); // System.Void System.Collections.Stack::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method); // System.Void System.Collections.Stack/StackEnumerator::.ctor(System.Collections.Stack) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___stack0, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array System.Array::CreateInstance(System.Type,System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311 (Type_t * ___elementType0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___lengths1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int32_t V_1 = 0; int64_t V_2 = 0; { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___lengths1; 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, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var); } IL_000e: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_2 = ___lengths1; NullCheck(L_2); if ((((RuntimeArray*)L_2)->max_length)) { goto IL_001d; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteralD99412487FA1DE75405C1F410AFB3F05A3953A9A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var); } IL_001d: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_4 = ___lengths1; NullCheck(L_4); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))); V_0 = L_5; V_1 = 0; goto IL_0059; } IL_002a: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_6 = ___lengths1; int32_t L_7 = V_1; NullCheck(L_6); int32_t L_8 = L_7; int64_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); V_2 = L_9; int64_t L_10 = V_2; if ((((int64_t)L_10) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0040; } } { int64_t L_11 = V_2; if ((((int64_t)L_11) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0050; } } IL_0040: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralA573B540D2DDE90BA6DA3B9D6286C8EC60C10044, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Array_CreateInstance_m0C393096A042F32063355992913947CBE341E311_RuntimeMethod_var); } IL_0050: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_13 = V_0; int32_t L_14 = V_1; int64_t L_15 = V_2; NullCheck(L_13); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (int32_t)(((int32_t)((int32_t)L_15)))); int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0059: { int32_t L_17 = V_1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_18 = ___lengths1; NullCheck(L_18); if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))))) { goto IL_002a; } } { Type_t * L_19 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = V_0; RuntimeArray * L_21 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_19, L_20, /*hidden argument*/NULL); return L_21; } } // System.Int32 System.Array::System.Collections.ICollection.get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_ICollection_get_Count_mF0B85564BCAAFBFC80CFECA18C947E0D00DE784F (RuntimeArray * __this, const RuntimeMethod* method) { { int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Array::System.Collections.IList.get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IList_get_IsReadOnly_m7A3D7AEF53C701ADB4B5E9326EED2D30E90299F4 (RuntimeArray * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Array::System.Collections.IList.get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_System_Collections_IList_get_Item_mF5DECDCEEB51800E488B91E7198C7553B63E9A4B (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; RuntimeObject * L_1 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Array::System.Collections.IList.set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_set_Item_mF6BD821618D0B9C9043A54AC53056AD354D66953 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value1; int32_t L_1 = ___index0; Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Int32 System.Array::System.Collections.IList.Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_System_Collections_IList_Add_mB8090E69C05684525C3D8F1704EC6A4D42422BE3_RuntimeMethod_var); } } // System.Boolean System.Array::System.Collections.IList.Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IList_Contains_mED1986103168425F87B87D7E66F55EEDE0067948 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; int32_t L_1 = Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE(__this, L_0, /*hidden argument*/NULL); return (bool)((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Array::System.Collections.IList.Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Clear_m7E1DF866EB3B3AAC6EE3E15BDF42CF26BD539F96 (RuntimeArray * __this, const RuntimeMethod* method) { { int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL); int32_t L_1 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Int32 System.Array::System.Collections.IList.IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IList_IndexOf_mD196C0707A00C8BE3F56D09BE2EE5B039B54B70F (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___value0; int32_t L_1 = Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Void System.Array::System.Collections.IList.Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867 (RuntimeArray * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_System_Collections_IList_Insert_mD042AFFF13A4E0A9D844432EDE0C0754CEDD3867_RuntimeMethod_var); } } // System.Void System.Array::System.Collections.IList.Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6 (RuntimeArray * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_System_Collections_IList_Remove_m61014B3F0F98B648ECBA28D81C85A17D887569B6_RuntimeMethod_var); } } // System.Void System.Array::System.Collections.IList.RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteral19D727C5849D9F3D7033B755C67B0B5CD9A0315D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_System_Collections_IList_RemoveAt_mC2C423CFCFFB6F619EE6B76519A3AD0D1BB9BB54_RuntimeMethod_var); } } // 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) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_0017; } } { RuntimeArray * L_1 = ___array0; NullCheck(L_1); int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0017; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7_RuntimeMethod_var); } IL_0017: { int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; int32_t L_6 = ___index1; int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(__this, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Object System.Array::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_Clone_mE8C710213E323617A6F46F2B36DCDDD4C7CF5176 (RuntimeArray * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Array::System.Collections.IStructuralComparable.CompareTo(System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314 (RuntimeArray * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; RuntimeObject * V_4 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___other0; V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_1, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray * L_2 = V_0; if (!L_2) { goto IL_001d; } } { int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); RuntimeArray * L_4 = V_0; NullCheck(L_4); int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)L_5))) { goto IL_002d; } } IL_001d: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, _stringLiteral7F2FCC733B74AEB86335058889C314E313748F83, _stringLiteralD0941E68DA8F38151FF86A61FC59F7C5CF9FCAA2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Array_System_Collections_IStructuralComparable_CompareTo_m8847B4F97B5630FAC8088A7CCAC38019A48B0314_RuntimeMethod_var); } IL_002d: { V_1 = 0; V_2 = 0; goto IL_0052; } IL_0033: { int32_t L_7 = V_1; RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_7, /*hidden argument*/NULL); V_3 = L_8; RuntimeArray * L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL); V_4 = L_11; RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = V_3; RuntimeObject * L_14 = V_4; NullCheck(L_12); int32_t L_15 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_12, L_13, L_14); V_2 = L_15; int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0052: { int32_t L_17 = V_1; RuntimeArray * L_18 = V_0; NullCheck(L_18); int32_t L_19 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_18, /*hidden argument*/NULL); if ((((int32_t)L_17) >= ((int32_t)L_19))) { goto IL_005e; } } { int32_t L_20 = V_2; if (!L_20) { goto IL_0033; } } IL_005e: { int32_t L_21 = V_2; return L_21; } } // System.Boolean System.Array::System.Collections.IStructuralEquatable.Equals(System.Object,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66 (RuntimeArray * __this, RuntimeObject * ___other0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralEquatable_Equals_m67D550D3F7DD3BEAA7B45AF229F22E1FAA072B66_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; RuntimeObject * V_3 = NULL; { RuntimeObject * L_0 = ___other0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___other0; if ((!(((RuntimeObject*)(RuntimeArray *)__this) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_000b; } } { return (bool)1; } IL_000b: { RuntimeObject * L_2 = ___other0; V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_2, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray * L_3 = V_0; if (!L_3) { goto IL_0023; } } { RuntimeArray * L_4 = V_0; NullCheck(L_4); int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_0025; } } IL_0023: { return (bool)0; } IL_0025: { V_1 = 0; goto IL_0049; } IL_0029: { int32_t L_7 = V_1; RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_7, /*hidden argument*/NULL); V_2 = L_8; RuntimeArray * L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL); V_3 = L_11; RuntimeObject* L_12 = ___comparer1; RuntimeObject * L_13 = V_2; RuntimeObject * L_14 = V_3; NullCheck(L_12); bool L_15 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_12, L_13, L_14); if (L_15) { goto IL_0045; } } { return (bool)0; } IL_0045: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); } IL_0049: { int32_t L_17 = V_1; RuntimeArray * L_18 = V_0; NullCheck(L_18); int32_t L_19 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_18, /*hidden argument*/NULL); if ((((int32_t)L_17) < ((int32_t)L_19))) { goto IL_0029; } } { return (bool)1; } } // System.Int32 System.Array::CombineHashCodes(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14 (int32_t ___h10, int32_t ___h21, const RuntimeMethod* method) { { int32_t L_0 = ___h10; int32_t L_1 = ___h10; int32_t L_2 = ___h21; return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_0<<(int32_t)5)), (int32_t)L_1))^(int32_t)L_2)); } } // System.Int32 System.Array::System.Collections.IStructuralEquatable.GetHashCode(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745 (RuntimeArray * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B5_0 = 0; { RuntimeObject* L_0 = ___comparer0; 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, _stringLiteralD32C0B5C9D09FE2946F0D3970CAE922B4EC90A3C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_System_Collections_IStructuralEquatable_GetHashCode_mA7EFA715B4EF2F7E446553B2225BE067D1E44745_RuntimeMethod_var); } IL_000e: { V_0 = 0; int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); if ((((int32_t)L_2) >= ((int32_t)8))) { goto IL_001c; } } { G_B5_0 = 0; goto IL_0024; } IL_001c: { int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)8)); } IL_0024: { V_1 = G_B5_0; goto IL_003f; } IL_0027: { int32_t L_4 = V_0; RuntimeObject* L_5 = ___comparer0; int32_t L_6 = V_1; RuntimeObject * L_7 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, L_6, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_5, L_7); int32_t L_9 = Array_CombineHashCodes_m4831474CA5E80807B35DFD4DCBF2574540D90E14(L_4, L_8, /*hidden argument*/NULL); V_0 = L_9; int32_t L_10 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_003f: { int32_t L_11 = V_1; int32_t L_12 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); if ((((int32_t)L_11) < ((int32_t)L_12))) { goto IL_0027; } } { int32_t L_13 = V_0; return L_13; } } // System.Int32 System.Array::BinarySearch(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08 (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_m166DFC7F443777EBFF29F92F2D792997A49DAA08_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL); RuntimeObject * L_7 = ___value1; int32_t L_8 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_2, L_4, L_6, L_7, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_8; } } // System.Void System.Array::Copy(System.Array,System.Array,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int64_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___length2; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___length2; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_Copy_m0048B7322E29EBFDD2909ED26EF97CE10C44C588_RuntimeMethod_var); } IL_0022: { RuntimeArray * L_3 = ___sourceArray0; RuntimeArray * L_4 = ___destinationArray1; int64_t L_5 = ___length2; Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434(L_3, L_4, (((int32_t)((int32_t)L_5))), /*hidden argument*/NULL); return; } } // System.Void System.Array::Copy(System.Array,System.Int64,System.Array,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542 (RuntimeArray * ___sourceArray0, int64_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int64_t ___destinationIndex3, int64_t ___length4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___sourceIndex1; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___sourceIndex1; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___destinationIndex3; if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0034; } } { int64_t L_4 = ___destinationIndex3; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var); } IL_0044: { int64_t L_6 = ___length4; if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0058; } } { int64_t L_7 = ___length4; if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0068; } } IL_0058: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_Copy_mD255F4B1CA08BB0D859C51505ACCDC9D605B3542_RuntimeMethod_var); } IL_0068: { RuntimeArray * L_9 = ___sourceArray0; int64_t L_10 = ___sourceIndex1; RuntimeArray * L_11 = ___destinationArray2; int64_t L_12 = ___destinationIndex3; int64_t L_13 = ___length4; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_9, (((int32_t)((int32_t)L_10))), L_11, (((int32_t)((int32_t)L_12))), (((int32_t)((int32_t)L_13))), /*hidden argument*/NULL); return; } } // System.Void System.Array::CopyTo(System.Array,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97 (RuntimeArray * __this, RuntimeArray * ___array0, int64_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index1; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index1; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_CopyTo_m3CA31C8758AB92E091DF1469077ED9DB13415B97_RuntimeMethod_var); } IL_0022: { RuntimeArray * L_3 = ___array0; int64_t L_4 = ___index1; Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7(__this, L_3, (((int32_t)((int32_t)L_4))), /*hidden argument*/NULL); return; } } // System.Int64 System.Array::get_LongLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_get_LongLength_m9C506B10DB4FB16C0A2F5059C5C08F8D3B0C2D9A (RuntimeArray * __this, const RuntimeMethod* method) { int64_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, 0, /*hidden argument*/NULL); V_0 = (((int64_t)((int64_t)L_0))); V_1 = 1; goto IL_001c; } IL_000d: { int64_t L_1 = V_0; int32_t L_2 = V_1; int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL); V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_1, (int64_t)(((int64_t)((int64_t)L_3))))); int32_t L_4 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_001c: { int32_t L_5 = V_1; int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); if ((((int32_t)L_5) < ((int32_t)L_6))) { goto IL_000d; } } { int64_t L_7 = V_0; return L_7; } } // System.Int64 System.Array::GetLongLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Array_GetLongLength_m86426B9200B4FCD2C1867FCD9356AA75550D7633 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) { { int32_t L_0 = ___dimension0; int32_t L_1 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_0, /*hidden argument*/NULL); return (((int64_t)((int64_t)L_1))); } } // System.Object System.Array::GetValue(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821 (RuntimeArray * __this, int64_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index0; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index0; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_GetValue_mB1145BA5883B1EC313933460EB49B80436507821_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___index0; RuntimeObject * L_4 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(__this, (((int32_t)((int32_t)L_3))), /*hidden argument*/NULL); return L_4; } } // System.Object System.Array::GetValue(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index10; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index10; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___index21; if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0034; } } { int64_t L_4 = ___index21; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_GetValue_mF3E4DF8F603BCA636D34E64F5498B53BF1ACE196_RuntimeMethod_var); } IL_0044: { int64_t L_6 = ___index10; int64_t L_7 = ___index21; RuntimeObject * L_8 = Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0(__this, (((int32_t)((int32_t)L_6))), (((int32_t)((int32_t)L_7))), /*hidden argument*/NULL); return L_8; } } // System.Object System.Array::GetValue(System.Int64,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020 (RuntimeArray * __this, int64_t ___index10, int64_t ___index21, int64_t ___index32, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index10; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index10; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___index21; if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0034; } } { int64_t L_4 = ___index21; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var); } IL_0044: { int64_t L_6 = ___index32; if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0056; } } { int64_t L_7 = ___index32; if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0066; } } IL_0056: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_GetValue_m6E73D41CC52224CA6734E58924A9FDC2E9B00020_RuntimeMethod_var); } IL_0066: { int64_t L_9 = ___index10; int64_t L_10 = ___index21; int64_t L_11 = ___index32; RuntimeObject * L_12 = Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900(__this, (((int32_t)((int32_t)L_9))), (((int32_t)((int32_t)L_10))), (((int32_t)((int32_t)L_11))), /*hidden argument*/NULL); return L_12; } } // System.Object System.Array::GetValue(System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0 (RuntimeArray * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___indices0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int32_t V_1 = 0; int64_t V_2 = 0; { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___indices0; 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, _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var); } IL_000e: { int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___indices0; NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))) { goto IL_0024; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var); } IL_0024: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_5 = ___indices0; NullCheck(L_5); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))); V_0 = L_6; V_1 = 0; goto IL_0060; } IL_0031: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_7 = ___indices0; int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; int64_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_2 = L_10; int64_t L_11 = V_2; if ((((int64_t)L_11) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0047; } } { int64_t L_12 = V_2; if ((((int64_t)L_12) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0057; } } IL_0047: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Array_GetValue_m65B132559D36B426B88290855FA206504566E9A0_RuntimeMethod_var); } IL_0057: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0; int32_t L_15 = V_1; int64_t L_16 = V_2; NullCheck(L_14); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (int32_t)(((int32_t)((int32_t)L_16)))); int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0060: { int32_t L_18 = V_1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_19 = ___indices0; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))))) { goto IL_0031; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = V_0; RuntimeObject * L_21 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_20, /*hidden argument*/NULL); return L_21; } } // System.Boolean System.Array::get_IsFixedSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsFixedSize_mFCFD0E6786406ECC58C4B7F18B669DADC722CA80 (RuntimeArray * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Array::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsReadOnly_mA3C9CCBD31776DDDB6F063662420010D2A5E0A64 (RuntimeArray * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Array::get_IsSynchronized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_get_IsSynchronized_m2A2A62F1E2A1CDB27061593550EAC7D26C1C8693 (RuntimeArray * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Array::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_get_SyncRoot_m2E775E57CB0563A4DC780EF206A61C0100F98ED1 (RuntimeArray * __this, const RuntimeMethod* method) { { return __this; } } // System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m3B677B774A91CC8383246DA219E53D2DEA0112F8 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; int32_t L_1 = ___index1; int32_t L_2 = ___length2; RuntimeObject * L_3 = ___value3; int32_t L_4 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return L_4; } } // System.Int32 System.Array::BinarySearch(System.Array,System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7 (RuntimeArray * ___array0, RuntimeObject * ___value1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_m1C4BF209146D7DF552578B0CFBFB641DDD8A90B7_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL); RuntimeObject * L_7 = ___value1; RuntimeObject* L_8 = ___comparer2; int32_t L_9 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F(L_2, L_4, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Int32 System.Array::BinarySearch(System.Array,System.Int32,System.Int32,System.Object,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject * ___value3, RuntimeObject* ___comparer4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; Exception_t * V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; Exception_t * 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) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B7_0 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0016; } } { int32_t L_3 = ___length2; if ((((int32_t)L_3) >= ((int32_t)0))) { goto IL_0031; } } IL_0016: { int32_t L_4 = ___index1; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0021; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_0026; } IL_0021: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_0026: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, G_B7_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } IL_0031: { RuntimeArray * L_6 = ___array0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); int32_t L_8 = ___index1; int32_t L_9 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8))) >= ((int32_t)L_9))) { goto IL_0047; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_10 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_10, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } IL_0047: { RuntimeArray * L_11 = ___array0; NullCheck(L_11); int32_t L_12 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_11, /*hidden argument*/NULL); if ((((int32_t)L_12) == ((int32_t)1))) { goto IL_005b; } } { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_13 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_13, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } IL_005b: { RuntimeObject* L_14 = ___comparer4; if (L_14) { goto IL_0066; } } { IL2CPP_RUNTIME_CLASS_INIT(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var); LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * L_15 = ((LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var))->get_Default_0(); ___comparer4 = L_15; } IL_0066: { int32_t L_16 = ___index1; V_0 = L_16; int32_t L_17 = ___index1; int32_t L_18 = ___length2; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)), (int32_t)1)); RuntimeArray * L_19 = ___array0; V_2 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_19, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_2; if (!L_20) { goto IL_0102; } } { goto IL_00b8; } IL_007d: { int32_t L_21 = V_0; int32_t L_22 = V_1; int32_t L_23 = Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F(L_21, L_22, /*hidden argument*/NULL); V_3 = L_23; } IL_0085: try { // begin try (depth: 1) RuntimeObject* L_24 = ___comparer4; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_2; int32_t L_26 = V_3; NullCheck(L_25); int32_t L_27 = L_26; RuntimeObject * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); RuntimeObject * L_29 = ___value3; NullCheck(L_24); int32_t L_30 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_24, L_28, L_29); V_4 = L_30; goto IL_00a3; } // 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_0094; throw e; } CATCH_0094: { // begin catch(System.Exception) V_5 = ((Exception_t *)__exception_local); Exception_t * L_31 = V_5; InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_32 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_32, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } // end catch (depth: 1) IL_00a3: { int32_t L_33 = V_4; if (L_33) { goto IL_00a9; } } { int32_t L_34 = V_3; return L_34; } IL_00a9: { int32_t L_35 = V_4; if ((((int32_t)L_35) >= ((int32_t)0))) { goto IL_00b4; } } { int32_t L_36 = V_3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); goto IL_00b8; } IL_00b4: { int32_t L_37 = V_3; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)); } IL_00b8: { int32_t L_38 = V_0; int32_t L_39 = V_1; if ((((int32_t)L_38) <= ((int32_t)L_39))) { goto IL_007d; } } { goto IL_0106; } IL_00be: { int32_t L_40 = V_0; int32_t L_41 = V_1; int32_t L_42 = Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F(L_40, L_41, /*hidden argument*/NULL); V_6 = L_42; } IL_00c7: try { // begin try (depth: 1) RuntimeObject* L_43 = ___comparer4; RuntimeArray * L_44 = ___array0; int32_t L_45 = V_6; NullCheck(L_44); RuntimeObject * L_46 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_44, L_45, /*hidden argument*/NULL); RuntimeObject * L_47 = ___value3; NullCheck(L_43); int32_t L_48 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_43, L_46, L_47); V_7 = L_48; goto IL_00ea; } // 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_00db; throw e; } CATCH_00db: { // begin catch(System.Exception) V_8 = ((Exception_t *)__exception_local); Exception_t * L_49 = V_8; InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_50 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_50, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_49, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_50, NULL, Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F_RuntimeMethod_var); } // end catch (depth: 1) IL_00ea: { int32_t L_51 = V_7; if (L_51) { goto IL_00f1; } } { int32_t L_52 = V_6; return L_52; } IL_00f1: { int32_t L_53 = V_7; if ((((int32_t)L_53) >= ((int32_t)0))) { goto IL_00fd; } } { int32_t L_54 = V_6; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)); goto IL_0102; } IL_00fd: { int32_t L_55 = V_6; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1)); } IL_0102: { int32_t L_56 = V_0; int32_t L_57 = V_1; if ((((int32_t)L_56) <= ((int32_t)L_57))) { goto IL_00be; } } IL_0106: { int32_t L_58 = V_0; return ((~L_58)); } } // System.Int32 System.Array::GetMedian(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetMedian_mEB009518A8D446B196DCD5BED2D5BC27F1F3789F (int32_t ___low0, int32_t ___hi1, const RuntimeMethod* method) { { int32_t L_0 = ___low0; int32_t L_1 = ___hi1; int32_t L_2 = ___low0; return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))>>(int32_t)1)))); } } // System.Int32 System.Array::IndexOf(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_m6415FB3B4D4AF92E271693A7BD4951FB379E7BDE_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeObject * L_3 = ___value1; RuntimeArray * L_4 = ___array0; NullCheck(L_4); int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL); RuntimeArray * L_6 = ___array0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); int32_t L_8 = Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135(L_2, L_3, L_5, L_7, /*hidden argument*/NULL); return L_8; } } // System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_mA7E8630309C4EF5671DA2FBCB8885DE80A9C2698_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_2, 0, /*hidden argument*/NULL); V_0 = L_3; RuntimeArray * L_4 = ___array0; RuntimeObject * L_5 = ___value1; int32_t L_6 = ___startIndex2; RuntimeArray * L_7 = ___array0; NullCheck(L_7); int32_t L_8 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_7, /*hidden argument*/NULL); int32_t L_9 = ___startIndex2; int32_t L_10 = V_0; int32_t L_11 = Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135(L_4, L_5, L_6, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), (int32_t)L_10)), /*hidden argument*/NULL); return L_11; } } // System.Int32 System.Array::IndexOf(System.Array,System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; int32_t V_6 = 0; RuntimeObject * V_7 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0022; } } { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_4 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_4, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var); } IL_0022: { RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_5, 0, /*hidden argument*/NULL); V_0 = L_6; int32_t L_7 = ___startIndex2; int32_t L_8 = V_0; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_0039; } } { int32_t L_9 = ___startIndex2; RuntimeArray * L_10 = ___array0; NullCheck(L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL); int32_t L_12 = V_0; if ((((int32_t)L_9) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12))))) { goto IL_0049; } } IL_0039: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var); } IL_0049: { int32_t L_14 = ___count3; if ((((int32_t)L_14) < ((int32_t)0))) { goto IL_005a; } } { int32_t L_15 = ___count3; RuntimeArray * L_16 = ___array0; NullCheck(L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_16, /*hidden argument*/NULL); int32_t L_18 = ___startIndex2; int32_t L_19 = V_0; if ((((int32_t)L_15) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)L_19))))) { goto IL_006a; } } IL_005a: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135_RuntimeMethod_var); } IL_006a: { RuntimeArray * L_21 = ___array0; V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_21, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); int32_t L_22 = ___startIndex2; int32_t L_23 = ___count3; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)L_23)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_1; if (!L_24) { goto IL_00b9; } } { RuntimeObject * L_25 = ___value1; if (L_25) { goto IL_0090; } } { int32_t L_26 = ___startIndex2; V_3 = L_26; goto IL_008a; } IL_007f: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = V_1; int32_t L_28 = V_3; NullCheck(L_27); int32_t L_29 = L_28; RuntimeObject * L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); if (L_30) { goto IL_0086; } } { int32_t L_31 = V_3; return L_31; } IL_0086: { int32_t L_32 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_008a: { int32_t L_33 = V_3; int32_t L_34 = V_2; if ((((int32_t)L_33) < ((int32_t)L_34))) { goto IL_007f; } } { goto IL_00ea; } IL_0090: { int32_t L_35 = ___startIndex2; V_4 = L_35; goto IL_00b2; } IL_0095: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = V_1; int32_t L_37 = V_4; NullCheck(L_36); int32_t L_38 = L_37; RuntimeObject * L_39 = (L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38)); V_5 = L_39; RuntimeObject * L_40 = V_5; if (!L_40) { goto IL_00ac; } } { RuntimeObject * L_41 = V_5; RuntimeObject * L_42 = ___value1; NullCheck(L_41); bool L_43 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_41, L_42); if (!L_43) { goto IL_00ac; } } { int32_t L_44 = V_4; return L_44; } IL_00ac: { int32_t L_45 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)1)); } IL_00b2: { int32_t L_46 = V_4; int32_t L_47 = V_2; if ((((int32_t)L_46) < ((int32_t)L_47))) { goto IL_0095; } } { goto IL_00ea; } IL_00b9: { int32_t L_48 = ___startIndex2; V_6 = L_48; goto IL_00e5; } IL_00be: { RuntimeArray * L_49 = ___array0; int32_t L_50 = V_6; NullCheck(L_49); RuntimeObject * L_51 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_49, L_50, /*hidden argument*/NULL); V_7 = L_51; RuntimeObject * L_52 = V_7; if (L_52) { goto IL_00d2; } } { RuntimeObject * L_53 = ___value1; if (L_53) { goto IL_00df; } } { int32_t L_54 = V_6; return L_54; } IL_00d2: { RuntimeObject * L_55 = V_7; RuntimeObject * L_56 = ___value1; NullCheck(L_55); bool L_57 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_55, L_56); if (!L_57) { goto IL_00df; } } { int32_t L_58 = V_6; return L_58; } IL_00df: { int32_t L_59 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); } IL_00e5: { int32_t L_60 = V_6; int32_t L_61 = V_2; if ((((int32_t)L_60) < ((int32_t)L_61))) { goto IL_00be; } } IL_00ea: { int32_t L_62 = V_0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_62, (int32_t)1)); } } // System.Int32 System.Array::LastIndexOf(System.Array,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F (RuntimeArray * ___array0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_m006743435ADB118F21F84D72A7696BBAC1A13B6F_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeObject * L_3 = ___value1; RuntimeArray * L_4 = ___array0; NullCheck(L_4); int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL); RuntimeArray * L_6 = ___array0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); int32_t L_8 = Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD(L_2, L_3, ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)), L_7, /*hidden argument*/NULL); return L_8; } } // System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89 (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_m1CEBDBF89EEB54640CC5819B2FC71991D1F6AC89_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeObject * L_3 = ___value1; int32_t L_4 = ___startIndex2; int32_t L_5 = ___startIndex2; int32_t L_6 = Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD(L_2, L_3, L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL); return L_6; } } // System.Int32 System.Array::LastIndexOf(System.Array,System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD (RuntimeArray * ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; RuntimeObject * V_4 = NULL; int32_t V_5 = 0; RuntimeObject * V_6 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0018; } } { return (-1); } IL_0018: { int32_t L_4 = ___startIndex2; if ((((int32_t)L_4) < ((int32_t)0))) { goto IL_0025; } } { int32_t L_5 = ___startIndex2; RuntimeArray * L_6 = ___array0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); if ((((int32_t)L_5) < ((int32_t)L_7))) { goto IL_0035; } } IL_0025: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var); } IL_0035: { int32_t L_9 = ___count3; if ((((int32_t)L_9) >= ((int32_t)0))) { goto IL_0049; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var); } IL_0049: { int32_t L_11 = ___count3; int32_t L_12 = ___startIndex2; if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))))) { goto IL_005f; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteral29809FBAF5E4FEC88F4127F291473B14B195B3C7, _stringLiteral8C02C6383418D741689393BE88DE4F9BB09E4F45, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var); } IL_005f: { RuntimeArray * L_14 = ___array0; NullCheck(L_14); int32_t L_15 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_14, /*hidden argument*/NULL); if ((((int32_t)L_15) == ((int32_t)1))) { goto IL_0073; } } { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_16 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_16, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Array_LastIndexOf_m0F3DFFE73061486BE3EFE069AA9D3595426EDFFD_RuntimeMethod_var); } IL_0073: { RuntimeArray * L_17 = ___array0; V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_17, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); int32_t L_18 = ___startIndex2; int32_t L_19 = ___count3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), (int32_t)1)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = V_0; if (!L_20) { goto IL_00be; } } { RuntimeObject * L_21 = ___value1; if (L_21) { goto IL_009b; } } { int32_t L_22 = ___startIndex2; V_2 = L_22; goto IL_0095; } IL_008a: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_0; int32_t L_24 = V_2; NullCheck(L_23); int32_t L_25 = L_24; RuntimeObject * L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); if (L_26) { goto IL_0091; } } { int32_t L_27 = V_2; return L_27; } IL_0091: { int32_t L_28 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1)); } IL_0095: { int32_t L_29 = V_2; int32_t L_30 = V_1; if ((((int32_t)L_29) >= ((int32_t)L_30))) { goto IL_008a; } } { goto IL_00ef; } IL_009b: { int32_t L_31 = ___startIndex2; V_3 = L_31; goto IL_00b8; } IL_009f: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = V_0; int32_t L_33 = V_3; NullCheck(L_32); int32_t L_34 = L_33; RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); V_4 = L_35; RuntimeObject * L_36 = V_4; if (!L_36) { goto IL_00b4; } } { RuntimeObject * L_37 = V_4; RuntimeObject * L_38 = ___value1; NullCheck(L_37); bool L_39 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_37, L_38); if (!L_39) { goto IL_00b4; } } { int32_t L_40 = V_3; return L_40; } IL_00b4: { int32_t L_41 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)); } IL_00b8: { int32_t L_42 = V_3; int32_t L_43 = V_1; if ((((int32_t)L_42) >= ((int32_t)L_43))) { goto IL_009f; } } { goto IL_00ef; } IL_00be: { int32_t L_44 = ___startIndex2; V_5 = L_44; goto IL_00ea; } IL_00c3: { RuntimeArray * L_45 = ___array0; int32_t L_46 = V_5; NullCheck(L_45); RuntimeObject * L_47 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_45, L_46, /*hidden argument*/NULL); V_6 = L_47; RuntimeObject * L_48 = V_6; if (L_48) { goto IL_00d7; } } { RuntimeObject * L_49 = ___value1; if (L_49) { goto IL_00e4; } } { int32_t L_50 = V_5; return L_50; } IL_00d7: { RuntimeObject * L_51 = V_6; RuntimeObject * L_52 = ___value1; NullCheck(L_51); bool L_53 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_51, L_52); if (!L_53) { goto IL_00e4; } } { int32_t L_54 = V_5; return L_54; } IL_00e4: { int32_t L_55 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1)); } IL_00ea: { int32_t L_56 = V_5; int32_t L_57 = V_1; if ((((int32_t)L_56) >= ((int32_t)L_57))) { goto IL_00c3; } } IL_00ef: { return (-1); } } // System.Void System.Array::Reverse(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440 (RuntimeArray * ___array0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_mF6A81D8EC8E17D7B3BE5F9B4EE763E3D43E57440_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL); Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B(L_2, L_4, L_6, /*hidden argument*/NULL); return; } } // System.Void System.Array::Reverse(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_3 = NULL; RuntimeObject * V_4 = NULL; RuntimeObject * V_5 = NULL; String_t* G_B7_0 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_2, 0, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = ___index1; int32_t L_5 = V_0; if ((((int32_t)L_4) < ((int32_t)L_5))) { goto IL_001e; } } { int32_t L_6 = ___length2; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0039; } } IL_001e: { int32_t L_7 = ___index1; int32_t L_8 = V_0; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_0029; } } { G_B7_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; goto IL_002e; } IL_0029: { G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; } IL_002e: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B7_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var); } IL_0039: { RuntimeArray * L_10 = ___array0; NullCheck(L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL); int32_t L_12 = ___index1; int32_t L_13 = V_0; int32_t L_14 = ___length2; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13))))) >= ((int32_t)L_14))) { goto IL_0051; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var); } IL_0051: { RuntimeArray * L_16 = ___array0; NullCheck(L_16); int32_t L_17 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_16, /*hidden argument*/NULL); if ((((int32_t)L_17) == ((int32_t)1))) { goto IL_0065; } } { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_18 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_18, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, NULL, Array_Reverse_m2257A7D1D672441107CA66836FF6C136EA5E3C7B_RuntimeMethod_var); } IL_0065: { int32_t L_19 = ___index1; V_1 = L_19; int32_t L_20 = ___index1; int32_t L_21 = ___length2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21)), (int32_t)1)); RuntimeArray * L_22 = ___array0; V_3 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_22, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = V_3; if (!L_23) { goto IL_00be; } } { goto IL_0091; } IL_0079: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = V_3; int32_t L_25 = V_1; NullCheck(L_24); int32_t L_26 = L_25; RuntimeObject * L_27 = (L_24)->GetAt(static_cast<il2cpp_array_size_t>(L_26)); V_4 = L_27; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = V_3; int32_t L_29 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = V_3; int32_t L_31 = V_2; NullCheck(L_30); int32_t L_32 = L_31; RuntimeObject * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_33); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_29), (RuntimeObject *)L_33); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = V_3; int32_t L_35 = V_2; RuntimeObject * L_36 = V_4; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (RuntimeObject *)L_36); int32_t L_37 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); int32_t L_38 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1)); } IL_0091: { int32_t L_39 = V_1; int32_t L_40 = V_2; if ((((int32_t)L_39) < ((int32_t)L_40))) { goto IL_0079; } } { return; } IL_0096: { RuntimeArray * L_41 = ___array0; int32_t L_42 = V_1; NullCheck(L_41); RuntimeObject * L_43 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_41, L_42, /*hidden argument*/NULL); V_5 = L_43; RuntimeArray * L_44 = ___array0; RuntimeArray * L_45 = ___array0; int32_t L_46 = V_2; NullCheck(L_45); RuntimeObject * L_47 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_45, L_46, /*hidden argument*/NULL); int32_t L_48 = V_1; NullCheck(L_44); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_44, L_47, L_48, /*hidden argument*/NULL); RuntimeArray * L_49 = ___array0; RuntimeObject * L_50 = V_5; int32_t L_51 = V_2; NullCheck(L_49); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_49, L_50, L_51, /*hidden argument*/NULL); int32_t L_52 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1)); int32_t L_53 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)1)); } IL_00be: { int32_t L_54 = V_1; int32_t L_55 = V_2; if ((((int32_t)L_54) < ((int32_t)L_55))) { goto IL_0096; } } { return; } } // System.Void System.Array::SetValue(System.Object,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index1; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index1; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_SetValue_mD1677B396331152BA588E2EEF167F04E832F3849_RuntimeMethod_var); } IL_0022: { RuntimeObject * L_3 = ___value0; int64_t L_4 = ___index1; Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(__this, L_3, (((int32_t)((int32_t)L_4))), /*hidden argument*/NULL); return; } } // System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744 (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index11; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index11; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___index22; if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0034; } } { int64_t L_4 = ___index22; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_SetValue_mEDA5D215E9368C28705226C1212781EFA76F0744_RuntimeMethod_var); } IL_0044: { RuntimeObject * L_6 = ___value0; int64_t L_7 = ___index11; int64_t L_8 = ___index22; Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E(__this, L_6, (((int32_t)((int32_t)L_7))), (((int32_t)((int32_t)L_8))), /*hidden argument*/NULL); return; } } // System.Void System.Array::SetValue(System.Object,System.Int64,System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E (RuntimeArray * __this, RuntimeObject * ___value0, int64_t ___index11, int64_t ___index22, int64_t ___index33, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___index11; if ((((int64_t)L_0) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0012; } } { int64_t L_1 = ___index11; if ((((int64_t)L_1) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0022; } } IL_0012: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralA2BF42BFCABC8FAE659BF90BD0F026411D146676, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var); } IL_0022: { int64_t L_3 = ___index22; if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0034; } } { int64_t L_4 = ___index22; if ((((int64_t)L_4) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0044; } } IL_0034: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral85144172F82F20D22E554672D1927DE158BB79A8, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var); } IL_0044: { int64_t L_6 = ___index33; if ((((int64_t)L_6) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0058; } } { int64_t L_7 = ___index33; if ((((int64_t)L_7) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0068; } } IL_0058: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralF34463B5B4D8E56E5BA46302DE551ABB85C709D2, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_SetValue_m863276E23A1A8DDBBE9FA0300F7BB3E5BCE1C88E_RuntimeMethod_var); } IL_0068: { RuntimeObject * L_9 = ___value0; int64_t L_10 = ___index11; int64_t L_11 = ___index22; int64_t L_12 = ___index33; Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60(__this, L_9, (((int32_t)((int32_t)L_10))), (((int32_t)((int32_t)L_11))), (((int32_t)((int32_t)L_12))), /*hidden argument*/NULL); return; } } // System.Void System.Array::SetValue(System.Object,System.Int64[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D (RuntimeArray * __this, RuntimeObject * ___value0, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___indices1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; int32_t V_1 = 0; int64_t V_2 = 0; { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = ___indices1; 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, _stringLiteral1E01512B1E7D3EA5B69D1F71AC90A9451071D646, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var); } IL_000e: { int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_3 = ___indices1; NullCheck(L_3); if ((((int32_t)L_2) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))))) { goto IL_0024; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteral226F66629D3BEDCC2E8003A076001F365A2F0A80, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var); } IL_0024: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_5 = ___indices1; NullCheck(L_5); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))); V_0 = L_6; V_1 = 0; goto IL_0060; } IL_0031: { Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_7 = ___indices1; int32_t L_8 = V_1; NullCheck(L_7); int32_t L_9 = L_8; int64_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_2 = L_10; int64_t L_11 = V_2; if ((((int64_t)L_11) > ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_0047; } } { int64_t L_12 = V_2; if ((((int64_t)L_12) >= ((int64_t)(((int64_t)((int64_t)((int32_t)-2147483648LL))))))) { goto IL_0057; } } IL_0047: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, _stringLiteral361F0030941C2CE94758C1DC9DA6D9BD6A577011, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Array_SetValue_m0E2AA4AF4D933ED690FE1B705ABB0FCB6BE2AB3D_RuntimeMethod_var); } IL_0057: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = V_0; int32_t L_15 = V_1; int64_t L_16 = V_2; NullCheck(L_14); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (int32_t)(((int32_t)((int32_t)L_16)))); int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0060: { int32_t L_18 = V_1; Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_19 = ___indices1; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))))) { goto IL_0031; } } { RuntimeObject * L_20 = ___value0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_21 = V_0; Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_20, L_21, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E (RuntimeArray * ___array0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Sort_m33A59C114BC9E9D74876BD0C6356D2D8DD383B0E_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL); Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, (RuntimeArray *)NULL, L_4, L_6, (RuntimeObject*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m0A28F9E067B497C87A6DAB08B5614EE93BAC63C1 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; int32_t L_1 = ___index1; int32_t L_2 = ___length2; Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, (RuntimeArray *)NULL, L_1, L_2, (RuntimeObject*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A (RuntimeArray * ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Sort_mF1CCD5D84D8D9EF9872FAB34A474119942AD495A_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_3, 0, /*hidden argument*/NULL); RuntimeArray * L_5 = ___array0; NullCheck(L_5); int32_t L_6 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_5, /*hidden argument*/NULL); RuntimeObject* L_7 = ___comparer1; Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, (RuntimeArray *)NULL, L_4, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Int32,System.Int32,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mFB179CA0C7D29427781B2F4B86DCCC36DDABE967 (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___array0; int32_t L_1 = ___index1; int32_t L_2 = ___length2; RuntimeObject* L_3 = ___comparer3; Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, (RuntimeArray *)NULL, L_1, L_2, L_3, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E (RuntimeArray * ___keys0, RuntimeArray * ___items1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___keys0; 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, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Sort_m82F14E448023AE35C0A0E97D83C0E05B1CA3022E_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___keys0; RuntimeArray * L_3 = ___items1; RuntimeArray * L_4 = ___keys0; NullCheck(L_4); int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL); RuntimeArray * L_6 = ___keys0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, L_3, L_5, L_7, (RuntimeObject*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Array,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F (RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___keys0; 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, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Sort_m2532902787B0BBF002B3F7FE7D731E96D0452D3F_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___keys0; RuntimeArray * L_3 = ___items1; RuntimeArray * L_4 = ___keys0; NullCheck(L_4); int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL); RuntimeArray * L_6 = ___keys0; NullCheck(L_6); int32_t L_7 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_6, /*hidden argument*/NULL); RuntimeObject* L_8 = ___comparer2; Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_2, L_3, L_5, L_7, L_8, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mA495EFE386747439EB8D39D9C7D980CE67EC88B4 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___keys0; RuntimeArray * L_1 = ___items1; int32_t L_2 = ___index2; int32_t L_3 = ___length3; Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80(L_0, L_1, L_2, L_3, (RuntimeObject*)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Array::Sort(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80 (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* G_B14_0 = NULL; { RuntimeArray * L_0 = ___keys0; 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, _stringLiteral5944AE25418CEABCF285DCA1D721B77888DAC89B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___keys0; NullCheck(L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0023; } } { RuntimeArray * L_4 = ___items1; if (!L_4) { goto IL_002e; } } { RuntimeArray * L_5 = ___items1; NullCheck(L_5); int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_5, /*hidden argument*/NULL); if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_002e; } } IL_0023: { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_7 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_7, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var); } IL_002e: { RuntimeArray * L_8 = ___keys0; NullCheck(L_8); int32_t L_9 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_8, 0, /*hidden argument*/NULL); V_0 = L_9; RuntimeArray * L_10 = ___items1; if (!L_10) { goto IL_004e; } } { int32_t L_11 = V_0; RuntimeArray * L_12 = ___items1; NullCheck(L_12); int32_t L_13 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_12, 0, /*hidden argument*/NULL); if ((((int32_t)L_11) == ((int32_t)L_13))) { goto IL_004e; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, _stringLiteralF75A366185FA685A8394FE9828B6E63715C3E110, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var); } IL_004e: { int32_t L_15 = ___index2; int32_t L_16 = V_0; if ((((int32_t)L_15) < ((int32_t)L_16))) { goto IL_0056; } } { int32_t L_17 = ___length3; if ((((int32_t)L_17) >= ((int32_t)0))) { goto IL_0071; } } IL_0056: { int32_t L_18 = ___length3; if ((((int32_t)L_18) < ((int32_t)0))) { goto IL_0061; } } { G_B14_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346; goto IL_0066; } IL_0061: { G_B14_0 = _stringLiteral3D54973F528B01019A58A52D34D518405A01B891; } IL_0066: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, G_B14_0, _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var); } IL_0071: { RuntimeArray * L_20 = ___keys0; NullCheck(L_20); int32_t L_21 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_20, /*hidden argument*/NULL); int32_t L_22 = ___index2; int32_t L_23 = V_0; int32_t L_24 = ___length3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)L_23))))) < ((int32_t)L_24))) { goto IL_008e; } } { RuntimeArray * L_25 = ___items1; if (!L_25) { goto IL_0099; } } { int32_t L_26 = ___index2; int32_t L_27 = V_0; RuntimeArray * L_28 = ___items1; NullCheck(L_28); int32_t L_29 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_28, /*hidden argument*/NULL); int32_t L_30 = ___length3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27))) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30))))) { goto IL_0099; } } IL_008e: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_31 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_31, _stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, NULL, Array_Sort_m72E310F2C68ABB681DB967BD6B2BF16B1C31CD80_RuntimeMethod_var); } IL_0099: { int32_t L_32 = ___length3; if ((((int32_t)L_32) <= ((int32_t)1))) { goto IL_00a8; } } { RuntimeArray * L_33 = ___keys0; RuntimeArray * L_34 = ___items1; int32_t L_35 = ___index2; int32_t L_36 = ___length3; RuntimeObject* L_37 = ___comparer4; Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A(L_33, L_34, L_35, L_36, L_37, /*hidden argument*/NULL); } IL_00a8: { return; } } // System.Collections.IEnumerator System.Array::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15 (RuntimeArray * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetEnumerator_m3BD9ACCA9512DA3687C8369BF999BA2916F0EA15_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * L_0 = (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C *)il2cpp_codegen_object_new(ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C_il2cpp_TypeInfo_var); ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Array::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array__ctor_m762F33A3531AC2E0EBD517C35AD49D55BF77F5BC (RuntimeArray * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Array::InternalArray__ICollection_get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__ICollection_get_Count_m258EEE9DCC6F1DD962F306641B8CB3D1D3574020 (RuntimeArray * __this, const RuntimeMethod* method) { { int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Array::InternalArray__ICollection_get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_InternalArray__ICollection_get_IsReadOnly_m2E88A2A0F2CACCDA2BE7CB47D9218B5E358462A8 (RuntimeArray * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Array::InternalArray__ICollection_Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138 (RuntimeArray * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteralBE51AF91F50F81AA82DB4AA438A59E58D533DB76, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__ICollection_Clear_m6BF89179531F325DB05C4BB7E715368EC29D1138_RuntimeMethod_var); } } // System.Int32 System.Array::InternalArray__IReadOnlyCollection_get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IReadOnlyCollection_get_Count_mB565FC31A46B4BB7C9D848BFE6D12F2FB5F1D3BC (RuntimeArray * __this, const RuntimeMethod* method) { { int32_t L_0 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Array::InternalArray__RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_0, _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, Array_InternalArray__RemoveAt_m23A3E2814F63B0BE35E716E0E2F09DD1B945DF85_RuntimeMethod_var); } } // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, 0, /*hidden argument*/NULL); V_0 = L_0; V_1 = 1; goto IL_001a; } IL_000c: { int32_t L_1 = V_0; int32_t L_2 = V_1; int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)L_3)); int32_t L_4 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } IL_001a: { int32_t L_5 = V_1; int32_t L_6 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); if ((((int32_t)L_5) < ((int32_t)L_6))) { goto IL_000c; } } { int32_t L_7 = V_0; return L_7; } } // System.Int32 System.Array::get_Rank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method) { { int32_t L_0 = Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39(__this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Array::GetRank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39 (RuntimeArray * __this, const RuntimeMethod* method) { typedef int32_t (*Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39_ftn) (RuntimeArray *); using namespace il2cpp::icalls; return ((Array_GetRank_m775CE73252FA44EA9265ACF1F6AA463A7CD51F39_ftn)mscorlib::System::Array::GetRank) (__this); } // System.Int32 System.Array::GetLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) { typedef int32_t (*Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359_ftn) (RuntimeArray *, int32_t); using namespace il2cpp::icalls; return ((Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359_ftn)mscorlib::System::Array::GetLength) (__this, ___dimension0); } // System.Int32 System.Array::GetLowerBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) { typedef int32_t (*Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B_ftn) (RuntimeArray *, int32_t); using namespace il2cpp::icalls; return ((Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B_ftn)mscorlib::System::Array::GetLowerBound) (__this, ___dimension0); } // System.Object System.Array::GetValue(System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices0, const RuntimeMethod* method) { typedef RuntimeObject * (*Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C_ftn) (RuntimeArray *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*); using namespace il2cpp::icalls; return ((Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C_ftn)mscorlib::System::Array::GetValue) (__this, ___indices0); } // System.Void System.Array::SetValue(System.Object,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380 (RuntimeArray * __this, RuntimeObject * ___value0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___indices1, const RuntimeMethod* method) { typedef void (*Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380_ftn) (RuntimeArray *, RuntimeObject *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*); using namespace il2cpp::icalls; ((Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380_ftn)mscorlib::System::Array::SetValue) (__this, ___value0, ___indices1); } // System.Object System.Array::GetValueImpl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096 (RuntimeArray * __this, int32_t ___pos0, const RuntimeMethod* method) { typedef RuntimeObject * (*Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096_ftn) (RuntimeArray *, int32_t); using namespace il2cpp::icalls; return ((Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096_ftn)mscorlib::System::Array::GetValueImpl) (__this, ___pos0); } // System.Void System.Array::SetValueImpl(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___pos1, const RuntimeMethod* method) { typedef void (*Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5_ftn) (RuntimeArray *, RuntimeObject *, int32_t); using namespace il2cpp::icalls; ((Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5_ftn)mscorlib::System::Array::SetValueImpl) (__this, ___value0, ___pos1); } // System.Boolean System.Array::FastCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097 (RuntimeArray * ___source0, int32_t ___source_idx1, RuntimeArray * ___dest2, int32_t ___dest_idx3, int32_t ___length4, const RuntimeMethod* method) { typedef bool (*Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t); using namespace il2cpp::icalls; return ((Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097_ftn)mscorlib::System::Array::FastCopy) (___source0, ___source_idx1, ___dest2, ___dest_idx3, ___length4); } // System.Array System.Array::CreateInstanceImpl(System.Type,System.Int32[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___bounds2, const RuntimeMethod* method) { typedef RuntimeArray * (*Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248_ftn) (Type_t *, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*); using namespace il2cpp::icalls; return ((Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248_ftn)mscorlib::System::Array::CreateInstanceImpl) (___elementType0, ___lengths1, ___bounds2); } // System.Int32 System.Array::GetUpperBound(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4 (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method) { { int32_t L_0 = ___dimension0; int32_t L_1 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, L_0, /*hidden argument*/NULL); int32_t L_2 = ___dimension0; int32_t L_3 = Array_GetLength_m318900B10C3A93A30ABDC67DE161C8F6ABA4D359(__this, L_2, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_3)), (int32_t)1)); } } // System.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544 (RuntimeArray * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0014; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var); } IL_0014: { int32_t L_2 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = ___index0; int32_t L_4 = V_0; if ((((int32_t)L_3) < ((int32_t)L_4))) { goto IL_002a; } } { int32_t L_5 = ___index0; int32_t L_6 = Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4(__this, 0, /*hidden argument*/NULL); if ((((int32_t)L_5) <= ((int32_t)L_6))) { goto IL_003a; } } IL_002a: { String_t* L_7 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralFBA88196CE9952C9BF4FA1DBA8CC7F1B418E4773, /*hidden argument*/NULL); IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var); IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var); } IL_003a: { Type_t * L_9 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); NullCheck(L_9); Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_9); NullCheck(L_10); bool L_11 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0057; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_12 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_12, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544_RuntimeMethod_var); } IL_0057: { int32_t L_13 = ___index0; int32_t L_14 = V_0; RuntimeObject * L_15 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), /*hidden argument*/NULL); return L_15; } } // System.Object System.Array::GetValue(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_mEC23FDFB21649A4D9D90D6EA363CCE4E58D676A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___index10; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___index21; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); V_0 = L_3; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = V_0; RuntimeObject * L_6 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_5, /*hidden argument*/NULL); return L_6; } } // System.Object System.Array::GetValue(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900 (RuntimeArray * __this, int32_t ___index10, int32_t ___index21, int32_t ___index32, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_GetValue_mA5B92FA4128EA88A676AB446C957C6C1D3D3D900_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___index10; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___index21; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3; int32_t L_6 = ___index32; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6); V_0 = L_5; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = V_0; RuntimeObject * L_8 = Array_GetValue_m3CEA4EB8E2DAB2C0B9CCC8D6E597F15F82C2C97C(__this, L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)1))) { goto IL_0014; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_1 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_1, _stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var); } IL_0014: { int32_t L_2 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(__this, 0, /*hidden argument*/NULL); V_0 = L_2; int32_t L_3 = ___index1; int32_t L_4 = V_0; if ((((int32_t)L_3) < ((int32_t)L_4))) { goto IL_002a; } } { int32_t L_5 = ___index1; int32_t L_6 = Array_GetUpperBound_m3BFCEE3EAF66EDFC829270B533D2C2C3907715F4(__this, 0, /*hidden argument*/NULL); if ((((int32_t)L_5) <= ((int32_t)L_6))) { goto IL_003a; } } IL_002a: { String_t* L_7 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralBC5C4002E88BA9FC743F3B13F5B24641F5F9B9F1, /*hidden argument*/NULL); IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var); IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var); } IL_003a: { Type_t * L_9 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); NullCheck(L_9); Type_t * L_10 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_9); NullCheck(L_10); bool L_11 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0057; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_12 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_12, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA_RuntimeMethod_var); } IL_0057: { RuntimeObject * L_13 = ___value0; int32_t L_14 = ___index1; int32_t L_15 = V_0; Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(__this, L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL); return; } } // System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_mF7A2D69DFE9E9AE0F08A705123C48752D212CF6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___index11; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___index22; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); V_0 = L_3; RuntimeObject * L_5 = ___value0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_5, L_6, /*hidden argument*/NULL); return; } } // System.Void System.Array::SetValue(System.Object,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60 (RuntimeArray * __this, RuntimeObject * ___value0, int32_t ___index11, int32_t ___index22, int32_t ___index33, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SetValue_m3AC2F0A285B2E7E1BBCD468B28E89E847CBC8C60_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___index11; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___index22; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3; int32_t L_6 = ___index33; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6); V_0 = L_5; RuntimeObject * L_7 = ___value0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0; Array_SetValue_m0480E07CF9A65B3C2B903CCBF5BAB94F93CF1380(__this, L_7, L_8, /*hidden argument*/NULL); return; } } // System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_m3524CE53B16324730C94C54940BB63A5CF67BD53 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method) { { Type_t * L_0 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___lengths1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_2 = ___lowerBounds2; RuntimeArray * L_3 = Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_mCE4A46E97DE384B6F469D8DEAAD99A0CCB66C9B4 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method) { { Type_t * L_0 = ___elementType0; int32_t L_1 = ___length11; int32_t L_2 = ___length22; RuntimeArray * L_3 = Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Array System.Array::UnsafeCreateInstance(System.Type,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_UnsafeCreateInstance_m48C48756F11E597154438531519DD9279FEA273B (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method) { { Type_t * L_0 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___lengths1; RuntimeArray * L_2 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Array System.Array::CreateInstance(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F (Type_t * ___elementType0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_mE3FF1559BCD06302A7DA79FCE32232941AC38F3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___length1; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); V_0 = L_1; Type_t * L_3 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = V_0; RuntimeArray * L_5 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05 (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_m5FE74E0701D431412B309031C208BB7F0B62AA05_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___length11; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___length22; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); V_0 = L_3; Type_t * L_5 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = V_0; RuntimeArray * L_7 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Array System.Array::CreateInstance(System.Type,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F (Type_t * ___elementType0, int32_t ___length11, int32_t ___length22, int32_t ___length33, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_mA240E55E62250C18ED5DFF119055CF5002C4CE3F_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)3); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; int32_t L_2 = ___length11; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_2); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = L_1; int32_t L_4 = ___length22; NullCheck(L_3); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (int32_t)L_4); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_3; int32_t L_6 = ___length33; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (int32_t)L_6); V_0 = L_5; Type_t * L_7 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_8 = V_0; RuntimeArray * L_9 = Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207(L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Array System.Array::CreateInstance(System.Type,System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207 (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_MetadataUsageId); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL; { Type_t * L_0 = ___elementType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_0014: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___lengths1; if (L_3) { goto IL_0022; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_0022: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = ___lengths1; NullCheck(L_5); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) <= ((int32_t)((int32_t)255)))) { goto IL_0032; } } { TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_6 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var); TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355(L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_0032: { V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL; Type_t * L_7 = ___elementType0; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::get_UnderlyingSystemType() */, L_7); ___elementType0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_8, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); Type_t * L_9 = ___elementType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_9, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_10) { goto IL_005a; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_005a: { Type_t * L_12 = ___elementType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL); NullCheck(L_12); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(112 /* System.Boolean System.Type::Equals(System.Type) */, L_12, L_14); if (!L_15) { goto IL_0077; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_16 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_16, _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_0077: { Type_t * L_17 = ___elementType0; NullCheck(L_17); bool L_18 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_17); if (!L_18) { goto IL_008a; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_19 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_19, _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Array_CreateInstance_mC95663C9DEEF9A4A48AA4F861E4A19173F673207_RuntimeMethod_var); } IL_008a: { Type_t * L_20 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_21 = ___lengths1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = V_0; RuntimeArray * L_23 = Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248(L_20, L_21, L_22, /*hidden argument*/NULL); return L_23; } } // System.Array System.Array::CreateInstance(System.Type,System.Int32[],System.Int32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA (Type_t * ___elementType0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lengths1, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___lowerBounds2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Type_t * L_0 = ___elementType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0014: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ___lengths1; if (L_3) { goto IL_0022; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0022: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = ___lowerBounds2; if (L_5) { goto IL_0030; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_6 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_6, _stringLiteralDAD53F4604A2CA0126F8BD8633CC0B25F089B4E9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0030: { Type_t * L_7 = ___elementType0; NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(106 /* System.Type System.Type::get_UnderlyingSystemType() */, L_7); ___elementType0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)IsInstClass((RuntimeObject*)L_8, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); Type_t * L_9 = ___elementType0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_10 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_9, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_10) { goto IL_0056; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_11, _stringLiteralD9AD6D6EE31EEA74A5B100D0C9320A75B260AC4C, _stringLiteralFEDEA86F850498B9408AA6DD2D9EC98B70FF80A6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0056: { Type_t * L_12 = ___elementType0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_13 = { reinterpret_cast<intptr_t> (Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_13, /*hidden argument*/NULL); NullCheck(L_12); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(112 /* System.Boolean System.Type::Equals(System.Type) */, L_12, L_14); if (!L_15) { goto IL_0073; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_16 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_16, _stringLiteral68D59FC714B5460FC26BC3AE971DDFFCC060AA1E, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0073: { Type_t * L_17 = ___elementType0; NullCheck(L_17); bool L_18 = VirtFuncInvoker0< bool >::Invoke(78 /* System.Boolean System.Type::get_ContainsGenericParameters() */, L_17); if (!L_18) { goto IL_0086; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_19 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_19, _stringLiteral95928427D7DAC48D21CF83BD4DC9E14CD6E37988, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0086: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = ___lengths1; NullCheck(L_20); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))) >= ((int32_t)1))) { goto IL_009c; } } { String_t* L_21 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral4337CB30685E8A997FBBE9444610966756E1270F, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_22 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_22, L_21, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_009c: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_23 = ___lengths1; NullCheck(L_23); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_24 = ___lowerBounds2; NullCheck(L_24); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))))) { goto IL_00b4; } } { String_t* L_25 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralC2955FD4AA8C860BCAD201C5B579125BC7420A7D, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_26 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_26, L_25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_00b4: { V_0 = 0; goto IL_00fd; } IL_00b8: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_27 = ___lengths1; int32_t L_28 = V_0; NullCheck(L_27); int32_t L_29 = L_28; int32_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29)); if ((((int32_t)L_30) >= ((int32_t)0))) { goto IL_00d3; } } { String_t* L_31 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralC4418E14A221309A58063652B326DA6B15B8C48A, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_32 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_32, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, L_31, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_00d3: { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_33 = ___lowerBounds2; int32_t L_34 = V_0; NullCheck(L_33); int32_t L_35 = L_34; int32_t L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_37 = ___lengths1; int32_t L_38 = V_0; NullCheck(L_37); int32_t L_39 = L_38; int32_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39)); if ((((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_36))), (int64_t)(((int64_t)((int64_t)L_40)))))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL))))))) { goto IL_00f9; } } { String_t* L_41 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral49D4CB4A8336299524E887B24A053F8EA368AC73, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_42 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_42, _stringLiteralEDCD9CB247F1267F5FD9056218FA532B4B3BE10B, L_41, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_00f9: { int32_t L_43 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); } IL_00fd: { int32_t L_44 = V_0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_45 = ___lowerBounds2; NullCheck(L_45); if ((((int32_t)L_44) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length))))))) { goto IL_00b8; } } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_46 = ___lengths1; NullCheck(L_46); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))))) <= ((int32_t)((int32_t)255)))) { goto IL_0113; } } { TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 * L_47 = (TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1 *)il2cpp_codegen_object_new(TypeLoadException_t510963B29CB27C6EA3ACDF5FB76E72E1BC372CD1_il2cpp_TypeInfo_var); TypeLoadException__ctor_mEF05D23A192E0B9BFAAA97A77A0FC1BCBE7B4355(L_47, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_47, NULL, Array_CreateInstance_m729059CD6F1DA236655BA425271E9C61994BC1EA_RuntimeMethod_var); } IL_0113: { Type_t * L_48 = ___elementType0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_49 = ___lengths1; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_50 = ___lowerBounds2; RuntimeArray * L_51 = Array_CreateInstanceImpl_m6083498CDAF81CBA917EAF572CB09B37DD6C2248(L_48, L_49, L_50, /*hidden argument*/NULL); return L_51; } } // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___length2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001d; } } { IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_3 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var); IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_3, _stringLiteral5A9EA65861D4D8200086439273EC2355C3674264, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var); } IL_001d: { RuntimeArray * L_4 = ___array0; NullCheck(L_4); int32_t L_5 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_4, 0, /*hidden argument*/NULL); V_0 = L_5; int32_t L_6 = ___index1; int32_t L_7 = V_0; if ((((int32_t)L_6) >= ((int32_t)L_7))) { goto IL_0034; } } { IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_8 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var); IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_8, _stringLiteral4A49B75057888FEF636189A3913772BBD0A0EEA0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var); } IL_0034: { int32_t L_9 = ___index1; int32_t L_10 = V_0; ___index1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)); int32_t L_11 = ___index1; RuntimeArray * L_12 = ___array0; NullCheck(L_12); int32_t L_13 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_12, /*hidden argument*/NULL); int32_t L_14 = ___length2; if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14))))) { goto IL_004f; } } { IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_15 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var); IndexOutOfRangeException__ctor_mCCE2EFF47A0ACB4B2636F63140F94FCEA71A9BCA(L_15, _stringLiteral43FBBCBC7E4E152115A172D2183820EC22524224, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E_RuntimeMethod_var); } IL_004f: { RuntimeArray * L_16 = ___array0; int32_t L_17 = ___index1; int32_t L_18 = ___length2; Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1(L_16, L_17, L_18, /*hidden argument*/NULL); return; } } // System.Void System.Array::ClearInternal(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1 (RuntimeArray * ___a0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method) { typedef void (*Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1_ftn) (RuntimeArray *, int32_t, int32_t); using namespace il2cpp::icalls; ((Array_ClearInternal_m2E812D006B5846D20A11EC233AA13279DA565BF1_ftn)mscorlib::System::Array::ClearInternal) (___a0, ___index1, ___count2); } // 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) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___sourceArray0; 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, _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___destinationArray1; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434_RuntimeMethod_var); } IL_001c: { RuntimeArray * L_4 = ___sourceArray0; RuntimeArray * L_5 = ___sourceArray0; NullCheck(L_5); int32_t L_6 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_5, 0, /*hidden argument*/NULL); RuntimeArray * L_7 = ___destinationArray1; RuntimeArray * L_8 = ___destinationArray1; NullCheck(L_8); int32_t L_9 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_8, 0, /*hidden argument*/NULL); int32_t L_10 = ___length2; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_4, L_6, L_7, L_9, L_10, /*hidden argument*/NULL); return; } } // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Type_t * V_2 = NULL; Type_t * V_3 = NULL; int32_t V_4 = 0; RuntimeObject * V_5 = NULL; int32_t V_6 = 0; RuntimeObject * V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { RuntimeArray * L_0 = ___sourceArray0; 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, _stringLiteral8B8ACFE3C45E7076004F9D05322FD3A454FD2659, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___destinationArray2; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralE08FBA796454E5A33CA3EDAA9395C7DCB2C3C6F4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___length4; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0036; } } { String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_0036: { RuntimeArray * L_7 = ___sourceArray0; NullCheck(L_7); int32_t L_8 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_7, /*hidden argument*/NULL); RuntimeArray * L_9 = ___destinationArray2; NullCheck(L_9); int32_t L_10 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_9, /*hidden argument*/NULL); if ((((int32_t)L_8) == ((int32_t)L_10))) { goto IL_004f; } } { RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_11 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var); RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_11, _stringLiteral8CC78C31A65D0239AD6A66D0065C5B8B3AB1F69D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_004f: { int32_t L_12 = ___sourceIndex1; if ((((int32_t)L_12) >= ((int32_t)0))) { goto IL_0068; } } { String_t* L_13 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_0068: { int32_t L_15 = ___destinationIndex3; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_0081; } } { String_t* L_16 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral73D1C9F8E5B4DB41CF3E8760C3948A89E1FFDA80, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_17 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_17, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_0081: { RuntimeArray * L_18 = ___sourceArray0; int32_t L_19 = ___sourceIndex1; RuntimeArray * L_20 = ___destinationArray2; int32_t L_21 = ___destinationIndex3; int32_t L_22 = ___length4; bool L_23 = Array_FastCopy_m60EEEAC06AB32A37A7FF6C4EB31B2FB54B170097(L_18, L_19, L_20, L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_008f; } } { return; } IL_008f: { int32_t L_24 = ___sourceIndex1; RuntimeArray * L_25 = ___sourceArray0; NullCheck(L_25); int32_t L_26 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_25, 0, /*hidden argument*/NULL); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)L_26)); int32_t L_27 = ___destinationIndex3; RuntimeArray * L_28 = ___destinationArray2; NullCheck(L_28); int32_t L_29 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B(L_28, 0, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_29)); int32_t L_30 = V_1; if ((((int32_t)L_30) >= ((int32_t)0))) { goto IL_00b7; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_31 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_31, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, _stringLiteralAC3617F3A0C9B39A384E38BCEDF346BE891CAAE5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_00b7: { int32_t L_32 = V_0; RuntimeArray * L_33 = ___sourceArray0; NullCheck(L_33); int32_t L_34 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_33, /*hidden argument*/NULL); int32_t L_35 = ___length4; if ((((int32_t)L_32) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35))))) { goto IL_00ce; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_36 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_36, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_00ce: { int32_t L_37 = V_1; RuntimeArray * L_38 = ___destinationArray2; NullCheck(L_38); int32_t L_39 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_38, /*hidden argument*/NULL); int32_t L_40 = ___length4; if ((((int32_t)L_37) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)L_40))))) { goto IL_00ea; } } { String_t* L_41 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_42 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_42, _stringLiteralF1931330233408109E5BEE8AB9BEA8EF37D1BF01, L_41, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_00ea: { RuntimeArray * L_43 = ___sourceArray0; NullCheck(L_43); Type_t * L_44 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_43, /*hidden argument*/NULL); NullCheck(L_44); Type_t * L_45 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_44); V_2 = L_45; RuntimeArray * L_46 = ___destinationArray2; NullCheck(L_46); Type_t * L_47 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_46, /*hidden argument*/NULL); NullCheck(L_47); Type_t * L_48 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_47); V_3 = L_48; RuntimeArray * L_49 = ___sourceArray0; RuntimeArray * L_50 = ___destinationArray2; if ((!(((RuntimeObject*)(RuntimeArray *)L_49) == ((RuntimeObject*)(RuntimeArray *)L_50)))) { goto IL_010a; } } { int32_t L_51 = V_0; int32_t L_52 = V_1; if ((((int32_t)L_51) <= ((int32_t)L_52))) { goto IL_014f; } } IL_010a: { V_4 = 0; goto IL_0148; } IL_010f: { RuntimeArray * L_53 = ___sourceArray0; int32_t L_54 = V_0; int32_t L_55 = V_4; NullCheck(L_53); RuntimeObject * L_56 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_53, ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_55)), /*hidden argument*/NULL); V_5 = L_56; } IL_011b: try { // begin try (depth: 1) RuntimeArray * L_57 = ___destinationArray2; RuntimeObject * L_58 = V_5; int32_t L_59 = V_1; int32_t L_60 = V_4; NullCheck(L_57); Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(L_57, L_58, ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)L_60)), /*hidden argument*/NULL); goto IL_0142; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0129; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0130; throw e; } CATCH_0129: { // begin catch(System.ArgumentException) Exception_t * L_61 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } // end catch (depth: 1) CATCH_0130: { // begin catch(System.Object) { Type_t * L_62 = V_2; Type_t * L_63 = V_3; bool L_64 = Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8(L_62, L_63, /*hidden argument*/NULL); if (!L_64) { goto IL_013c; } } IL_013a: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_013c: { Exception_t * L_65 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } } // end catch (depth: 1) IL_0142: { int32_t L_66 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1)); } IL_0148: { int32_t L_67 = V_4; int32_t L_68 = ___length4; if ((((int32_t)L_67) < ((int32_t)L_68))) { goto IL_010f; } } { return; } IL_014f: { int32_t L_69 = ___length4; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)1)); goto IL_0190; } IL_0157: { RuntimeArray * L_70 = ___sourceArray0; int32_t L_71 = V_0; int32_t L_72 = V_6; NullCheck(L_70); RuntimeObject * L_73 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_70, ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)L_72)), /*hidden argument*/NULL); V_7 = L_73; } IL_0163: try { // begin try (depth: 1) RuntimeArray * L_74 = ___destinationArray2; RuntimeObject * L_75 = V_7; int32_t L_76 = V_1; int32_t L_77 = V_6; NullCheck(L_74); Array_SetValueImpl_m8D36B9717E64A8BF2F05010F3B6E29D2ABDFB8C5(L_74, L_75, ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)L_77)), /*hidden argument*/NULL); goto IL_018a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0171; if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0178; throw e; } CATCH_0171: { // begin catch(System.ArgumentException) Exception_t * L_78 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_78, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } // end catch (depth: 1) CATCH_0178: { // begin catch(System.Object) { Type_t * L_79 = V_2; Type_t * L_80 = V_3; bool L_81 = Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8(L_79, L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_0184; } } IL_0182: { IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } IL_0184: { Exception_t * L_82 = Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5(/*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, NULL, Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6_RuntimeMethod_var); } } // end catch (depth: 1) IL_018a: { int32_t L_83 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)1)); } IL_0190: { int32_t L_84 = V_6; if ((((int32_t)L_84) >= ((int32_t)0))) { goto IL_0157; } } { return; } } // System.Exception System.Array::CreateArrayTypeMismatchException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_CreateArrayTypeMismatchException_m75354056462C7B1A70E41BE43F8A03A252685EA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * L_0 = (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 *)il2cpp_codegen_object_new(ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499_il2cpp_TypeInfo_var); ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1(L_0, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Array::CanAssignArrayElement(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Array_CanAssignArrayElement_m206A3C328B56DF461C1AC452F01CAAEC0377EAC8 (Type_t * ___source0, Type_t * ___target1, const RuntimeMethod* method) { { Type_t * L_0 = ___source0; NullCheck(L_0); bool L_1 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0010; } } { Type_t * L_2 = ___source0; Type_t * L_3 = ___target1; NullCheck(L_2); bool L_4 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_2, L_3); return L_4; } IL_0010: { Type_t * L_5 = ___source0; NullCheck(L_5); bool L_6 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0022; } } { Type_t * L_7 = ___target1; NullCheck(L_7); bool L_8 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_7, /*hidden argument*/NULL); return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_0022: { Type_t * L_9 = ___target1; NullCheck(L_9); bool L_10 = Type_get_IsInterface_m8BC291C33120399B14CAAC6E205F06884B9F96ED(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0034; } } { Type_t * L_11 = ___source0; NullCheck(L_11); bool L_12 = Type_get_IsValueType_mDDCCBAE9B59A483CBC3E5C02E3D68CEBEB2E41A8(L_11, /*hidden argument*/NULL); return (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0); } IL_0034: { Type_t * L_13 = ___source0; Type_t * L_14 = ___target1; NullCheck(L_13); bool L_15 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_13, L_14); if (L_15) { goto IL_0045; } } { Type_t * L_16 = ___target1; Type_t * L_17 = ___source0; NullCheck(L_16); bool L_18 = VirtFuncInvoker1< bool, Type_t * >::Invoke(109 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_16, L_17); return L_18; } IL_0045: { return (bool)1; } } // System.Void System.Array::ConstrainedCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ConstrainedCopy_mBC9B69B4C47A053E7DC0F3835C2AF7E754CB4BF0 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method) { { RuntimeArray * L_0 = ___sourceArray0; int32_t L_1 = ___sourceIndex1; RuntimeArray * L_2 = ___destinationArray2; int32_t L_3 = ___destinationIndex3; int32_t L_4 = ___length4; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Array::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Initialize_m68F53FBC6324F33F3BAF65C6A7A5C06B44494DB7 (RuntimeArray * __this, const RuntimeMethod* method) { { return; } } // System.Void System.Array::SortImpl(System.Array,System.Array,System.Int32,System.Int32,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A (RuntimeArray * ___keys0, RuntimeArray * ___items1, int32_t ___index2, int32_t ___length3, RuntimeObject* ___comparer4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Array_SortImpl_m69441E6855557430ED59346309E0AAA6BFB2305A_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 V_2; memset((&V_2), 0, sizeof(V_2)); SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 V_3; memset((&V_3), 0, sizeof(V_3)); { RuntimeArray * L_0 = ___keys0; V_0 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = V_0; if (!L_1) { goto IL_0013; } } { RuntimeArray * L_2 = ___items1; V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_2, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); } IL_0013: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; if (!L_3) { goto IL_0031; } } { RuntimeArray * L_4 = ___items1; if (!L_4) { goto IL_001c; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_1; if (!L_5) { goto IL_0031; } } IL_001c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_1; RuntimeObject* L_8 = ___comparer4; SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)(&V_2), L_6, L_7, L_8, /*hidden argument*/NULL); int32_t L_9 = ___index2; int32_t L_10 = ___length3; SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)(&V_2), L_9, L_10, /*hidden argument*/NULL); return; } IL_0031: { RuntimeArray * L_11 = ___keys0; RuntimeArray * L_12 = ___items1; RuntimeObject* L_13 = ___comparer4; SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)(&V_3), L_11, L_12, L_13, /*hidden argument*/NULL); int32_t L_14 = ___index2; int32_t L_15 = ___length3; SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)(&V_3), L_14, L_15, /*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.Array_ArrayEnumerator::.ctor(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator__ctor_mF6431B42D70C8DACACCEC14D1676A6EACA831062 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, RuntimeArray * ___array0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); RuntimeArray * L_0 = ___array0; __this->set__array_0(L_0); __this->set__index_1((-1)); RuntimeArray * L_1 = ___array0; NullCheck(L_1); int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_1, /*hidden argument*/NULL); __this->set__endIndex_2(L_2); return; } } // System.Boolean System.Array_ArrayEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayEnumerator_MoveNext_m9DDF97BFEAE8773FA0CBDFE7DCF39D96A8351121 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__index_1(); int32_t L_1 = __this->get__endIndex_2(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_002b; } } { int32_t L_2 = __this->get__index_1(); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = __this->get__index_1(); int32_t L_4 = __this->get__endIndex_2(); return (bool)((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0); } IL_002b: { return (bool)0; } } // System.Void System.Array_ArrayEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayEnumerator_Reset_mD816AD0387167D06ACC09E2407F20DD8DF91FF0B (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method) { { __this->set__index_1((-1)); return; } } // System.Object System.Array_ArrayEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayEnumerator_Clone_m6CE6E38241B4B87AA18C451B3AA79C1FE44A9B46 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Array_ArrayEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1 (ArrayEnumerator_t7578693769FEC57DE7861A71CF35530DF667568C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__index_1(); if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var); } IL_0014: { int32_t L_2 = __this->get__index_1(); int32_t L_3 = __this->get__endIndex_2(); if ((((int32_t)L_2) < ((int32_t)L_3))) { goto IL_002d; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, _stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var); } IL_002d: { int32_t L_5 = __this->get__index_1(); if (L_5) { goto IL_0057; } } { RuntimeArray * L_6 = __this->get__array_0(); NullCheck(L_6); Type_t * L_7 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_6, /*hidden argument*/NULL); NullCheck(L_7); Type_t * L_8 = VirtFuncInvoker0< Type_t * >::Invoke(97 /* System.Type System.Type::GetElementType() */, L_7); NullCheck(L_8); bool L_9 = Type_get_IsPointer_mF823CB662C6A04674589640771E6AD6B71093E57(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0057; } } { NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_10 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var); NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_10, _stringLiteralB55428CB375AB9C781897FA54736E74AACB5D33C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, ArrayEnumerator_get_Current_m16FB2C50F76CFBABA957C7130BD1D2DFB3CF89C1_RuntimeMethod_var); } IL_0057: { RuntimeArray * L_11 = __this->get__array_0(); int32_t L_12 = __this->get__index_1(); NullCheck(L_11); RuntimeObject * L_13 = Array_GetValueImpl_m3392C362C3018767EF548B359DD9959CFC769096(L_11, L_12, /*hidden argument*/NULL); return L_13; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Array/SorterGenericArray IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke_back(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Array/SorterGenericArray IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_pinvoke_cleanup(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Array/SorterGenericArray IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com_back(const SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled, SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891& unmarshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterGenericArray': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Array/SorterGenericArray IL2CPP_EXTERN_C void SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshal_com_cleanup(SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891_marshaled_com& marshaled) { } // System.Void System.Array_SorterGenericArray::.ctor(System.Array,System.Array,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer2; if (L_0) { goto IL_000a; } } { IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_1 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1(); ___comparer2 = L_1; } IL_000a: { RuntimeArray * L_2 = ___keys0; __this->set_keys_0(L_2); RuntimeArray * L_3 = ___items1; __this->set_items_1(L_3); RuntimeObject* L_4 = ___comparer2; __this->set_comparer_2(L_4); return; } } IL2CPP_EXTERN_C void SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89_AdjustorThunk (RuntimeObject * __this, RuntimeArray * ___keys0, RuntimeArray * ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray__ctor_m8A0342B35AC3046A24FD7208C6AAEACCEAA6FB89(_thisAdjusted, ___keys0, ___items1, ___comparer2, method); } // System.Void System.Array_SorterGenericArray::SwapIfGreaterWithItems(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; { int32_t L_0 = ___a0; int32_t L_1 = ___b1; if ((((int32_t)L_0) == ((int32_t)L_1))) { goto IL_0099; } } { RuntimeObject* L_2 = __this->get_comparer_2(); RuntimeArray * L_3 = __this->get_keys_0(); int32_t L_4 = ___a0; NullCheck(L_3); RuntimeObject * L_5 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_3, L_4, /*hidden argument*/NULL); RuntimeArray * L_6 = __this->get_keys_0(); int32_t L_7 = ___b1; NullCheck(L_6); RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_6, L_7, /*hidden argument*/NULL); NullCheck(L_2); int32_t L_9 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_2, L_5, L_8); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_0099; } } { RuntimeArray * L_10 = __this->get_keys_0(); int32_t L_11 = ___a0; NullCheck(L_10); RuntimeObject * L_12 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_10, L_11, /*hidden argument*/NULL); V_0 = L_12; RuntimeArray * L_13 = __this->get_keys_0(); RuntimeArray * L_14 = __this->get_keys_0(); int32_t L_15 = ___b1; NullCheck(L_14); RuntimeObject * L_16 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_14, L_15, /*hidden argument*/NULL); int32_t L_17 = ___a0; NullCheck(L_13); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_13, L_16, L_17, /*hidden argument*/NULL); RuntimeArray * L_18 = __this->get_keys_0(); RuntimeObject * L_19 = V_0; int32_t L_20 = ___b1; NullCheck(L_18); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_18, L_19, L_20, /*hidden argument*/NULL); RuntimeArray * L_21 = __this->get_items_1(); if (!L_21) { goto IL_0099; } } { RuntimeArray * L_22 = __this->get_items_1(); int32_t L_23 = ___a0; NullCheck(L_22); RuntimeObject * L_24 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_22, L_23, /*hidden argument*/NULL); V_1 = L_24; RuntimeArray * L_25 = __this->get_items_1(); RuntimeArray * L_26 = __this->get_items_1(); int32_t L_27 = ___b1; NullCheck(L_26); RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_26, L_27, /*hidden argument*/NULL); int32_t L_29 = ___a0; NullCheck(L_25); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_25, L_28, L_29, /*hidden argument*/NULL); RuntimeArray * L_30 = __this->get_items_1(); RuntimeObject * L_31 = V_1; int32_t L_32 = ___b1; NullCheck(L_30); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_30, L_31, L_32, /*hidden argument*/NULL); } IL_0099: { return; } } IL2CPP_EXTERN_C void SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D_AdjustorThunk (RuntimeObject * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D(_thisAdjusted, ___a0, ___b1, method); } // System.Void System.Array_SorterGenericArray::Swap(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; { RuntimeArray * L_0 = __this->get_keys_0(); int32_t L_1 = ___i0; NullCheck(L_0); RuntimeObject * L_2 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; RuntimeArray * L_3 = __this->get_keys_0(); RuntimeArray * L_4 = __this->get_keys_0(); int32_t L_5 = ___j1; NullCheck(L_4); RuntimeObject * L_6 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_4, L_5, /*hidden argument*/NULL); int32_t L_7 = ___i0; NullCheck(L_3); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_3, L_6, L_7, /*hidden argument*/NULL); RuntimeArray * L_8 = __this->get_keys_0(); RuntimeObject * L_9 = V_0; int32_t L_10 = ___j1; NullCheck(L_8); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_8, L_9, L_10, /*hidden argument*/NULL); RuntimeArray * L_11 = __this->get_items_1(); if (!L_11) { goto IL_006c; } } { RuntimeArray * L_12 = __this->get_items_1(); int32_t L_13 = ___i0; NullCheck(L_12); RuntimeObject * L_14 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_12, L_13, /*hidden argument*/NULL); V_1 = L_14; RuntimeArray * L_15 = __this->get_items_1(); RuntimeArray * L_16 = __this->get_items_1(); int32_t L_17 = ___j1; NullCheck(L_16); RuntimeObject * L_18 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_16, L_17, /*hidden argument*/NULL); int32_t L_19 = ___i0; NullCheck(L_15); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_15, L_18, L_19, /*hidden argument*/NULL); RuntimeArray * L_20 = __this->get_items_1(); RuntimeObject * L_21 = V_1; int32_t L_22 = ___j1; NullCheck(L_20); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_20, L_21, L_22, /*hidden argument*/NULL); } IL_006c: { return; } } IL2CPP_EXTERN_C void SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3(_thisAdjusted, ___i0, ___j1, method); } // System.Void System.Array_SorterGenericArray::Sort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { { int32_t L_0 = ___left0; int32_t L_1 = ___length1; SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_0, L_1, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_Sort_m31959C3FD32EE2D5942031D4B4BE5E5186FC331D(_thisAdjusted, ___left0, ___length1, method); } // System.Void System.Array_SorterGenericArray::IntrospectiveSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * 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); { int32_t L_0 = ___length1; if ((((int32_t)L_0) >= ((int32_t)2))) { goto IL_0005; } } { return; } IL_0005: { } IL_0006: try { // begin try (depth: 1) int32_t L_1 = ___left0; int32_t L_2 = ___length1; int32_t L_3 = ___left0; RuntimeArray * L_4 = __this->get_keys_0(); NullCheck(L_4); int32_t L_5 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_4, /*hidden argument*/NULL); int32_t L_6 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA(L_5, /*hidden argument*/NULL); SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_6)), /*hidden argument*/NULL); goto IL_0041; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0026; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0034; throw e; } CATCH_0026: { // begin catch(System.IndexOutOfRangeException) RuntimeObject* L_7 = __this->get_comparer_2(); IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A(L_7, /*hidden argument*/NULL); goto IL_0041; } // end catch (depth: 1) CATCH_0034: { // begin catch(System.Exception) V_0 = ((Exception_t *)__exception_local); Exception_t * L_8 = V_0; InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_9, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_RuntimeMethod_var); } // end catch (depth: 1) IL_0041: { return; } } IL2CPP_EXTERN_C void SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_IntrospectiveSort_m6D3A3B603012DBE21BECBE5615F6302AB4F4CBDF(_thisAdjusted, ___left0, ___length1, method); } // System.Void System.Array_SorterGenericArray::IntroSort(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0073; } IL_0002: { int32_t L_0 = ___hi1; int32_t L_1 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)((int32_t)16)))) { goto IL_0049; } } { int32_t L_3 = V_0; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0012; } } { return; } IL_0012: { int32_t L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)2)))) { goto IL_001f; } } { int32_t L_5 = ___lo0; int32_t L_6 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_5, L_6, /*hidden argument*/NULL); return; } IL_001f: { int32_t L_7 = V_0; if ((!(((uint32_t)L_7) == ((uint32_t)3)))) { goto IL_0040; } } { int32_t L_8 = ___lo0; int32_t L_9 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL); int32_t L_10 = ___lo0; int32_t L_11 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_10, L_11, /*hidden argument*/NULL); int32_t L_12 = ___hi1; int32_t L_13 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL); return; } IL_0040: { int32_t L_14 = ___lo0; int32_t L_15 = ___hi1; SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_14, L_15, /*hidden argument*/NULL); return; } IL_0049: { int32_t L_16 = ___depthLimit2; if (L_16) { goto IL_0055; } } { int32_t L_17 = ___lo0; int32_t L_18 = ___hi1; SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_17, L_18, /*hidden argument*/NULL); return; } IL_0055: { int32_t L_19 = ___depthLimit2; ___depthLimit2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); int32_t L_20 = ___lo0; int32_t L_21 = ___hi1; int32_t L_22 = SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_20, L_21, /*hidden argument*/NULL); V_1 = L_22; int32_t L_23 = V_1; int32_t L_24 = ___hi1; int32_t L_25 = ___depthLimit2; SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)), L_24, L_25, /*hidden argument*/NULL); int32_t L_26 = V_1; ___hi1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); } IL_0073: { int32_t L_27 = ___hi1; int32_t L_28 = ___lo0; if ((((int32_t)L_27) > ((int32_t)L_28))) { goto IL_0002; } } { return; } } IL2CPP_EXTERN_C void SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_IntroSort_mC35348084FCB26DDEAD69DEB79C722D6DBFBF41D(_thisAdjusted, ___lo0, ___hi1, ___depthLimit2, method); } // System.Int32 System.Array_SorterGenericArray::PickPivotAndPartition(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { int32_t L_0 = ___lo0; int32_t L_1 = ___hi1; int32_t L_2 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2)))); int32_t L_3 = ___lo0; int32_t L_4 = V_0; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_3, L_4, /*hidden argument*/NULL); int32_t L_5 = ___lo0; int32_t L_6 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_5, L_6, /*hidden argument*/NULL); int32_t L_7 = V_0; int32_t L_8 = ___hi1; SorterGenericArray_SwapIfGreaterWithItems_m6EDED7224D6362492F368A4F328CB8083D7D518D((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_7, L_8, /*hidden argument*/NULL); RuntimeArray * L_9 = __this->get_keys_0(); int32_t L_10 = V_0; NullCheck(L_9); RuntimeObject * L_11 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_9, L_10, /*hidden argument*/NULL); V_1 = L_11; int32_t L_12 = V_0; int32_t L_13 = ___hi1; SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1)), /*hidden argument*/NULL); int32_t L_14 = ___lo0; V_2 = L_14; int32_t L_15 = ___hi1; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)); goto IL_0089; } IL_003f: { RuntimeObject* L_16 = __this->get_comparer_2(); RuntimeArray * L_17 = __this->get_keys_0(); int32_t L_18 = V_2; int32_t L_19 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); V_2 = L_19; NullCheck(L_17); RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_17, L_19, /*hidden argument*/NULL); RuntimeObject * L_21 = V_1; NullCheck(L_16); int32_t L_22 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_16, L_20, L_21); if ((((int32_t)L_22) < ((int32_t)0))) { goto IL_003f; } } IL_005e: { RuntimeObject* L_23 = __this->get_comparer_2(); RuntimeObject * L_24 = V_1; RuntimeArray * L_25 = __this->get_keys_0(); int32_t L_26 = V_3; int32_t L_27 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); V_3 = L_27; NullCheck(L_25); RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, L_27, /*hidden argument*/NULL); NullCheck(L_23); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_28); if ((((int32_t)L_29) < ((int32_t)0))) { goto IL_005e; } } { int32_t L_30 = V_2; int32_t L_31 = V_3; if ((((int32_t)L_30) >= ((int32_t)L_31))) { goto IL_008d; } } { int32_t L_32 = V_2; int32_t L_33 = V_3; SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_32, L_33, /*hidden argument*/NULL); } IL_0089: { int32_t L_34 = V_2; int32_t L_35 = V_3; if ((((int32_t)L_34) < ((int32_t)L_35))) { goto IL_003f; } } IL_008d: { int32_t L_36 = V_2; int32_t L_37 = ___hi1; SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_36, ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)), /*hidden argument*/NULL); int32_t L_38 = V_2; return L_38; } } IL2CPP_EXTERN_C int32_t SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); return SorterGenericArray_PickPivotAndPartition_m0B9348ACF626B2502340A290069D07C071C57839(_thisAdjusted, ___lo0, ___hi1, method); } // System.Void System.Array_SorterGenericArray::Heapsort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___hi1; int32_t L_1 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = V_0; V_1 = ((int32_t)((int32_t)L_2/(int32_t)2)); goto IL_0019; } IL_000c: { int32_t L_3 = V_1; int32_t L_4 = V_0; int32_t L_5 = ___lo0; SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_3, L_4, L_5, /*hidden argument*/NULL); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); } IL_0019: { int32_t L_7 = V_1; if ((((int32_t)L_7) >= ((int32_t)1))) { goto IL_000c; } } { int32_t L_8 = V_0; V_2 = L_8; goto IL_003c; } IL_0021: { int32_t L_9 = ___lo0; int32_t L_10 = ___lo0; int32_t L_11 = V_2; SorterGenericArray_Swap_m9FA4554F30AE7F9835B1009881CE653FF7A69ED3((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_12 = V_2; int32_t L_13 = ___lo0; SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360((SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *)__this, 1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); } IL_003c: { int32_t L_15 = V_2; if ((((int32_t)L_15) > ((int32_t)1))) { goto IL_0021; } } { return; } } IL2CPP_EXTERN_C void SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_Heapsort_m348C661B9B20D60F0A7A41ABB266365D1271028C(_thisAdjusted, ___lo0, ___hi1, method); } // System.Void System.Array_SorterGenericArray::DownHeap(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360 (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; RuntimeObject * G_B3_0 = NULL; { RuntimeArray * L_0 = __this->get_keys_0(); int32_t L_1 = ___lo2; int32_t L_2 = ___i0; NullCheck(L_0); RuntimeObject * L_3 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1)), /*hidden argument*/NULL); V_0 = L_3; RuntimeArray * L_4 = __this->get_items_1(); if (L_4) { goto IL_001c; } } { G_B3_0 = NULL; goto IL_002c; } IL_001c: { RuntimeArray * L_5 = __this->get_items_1(); int32_t L_6 = ___lo2; int32_t L_7 = ___i0; NullCheck(L_5); RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)), (int32_t)1)), /*hidden argument*/NULL); G_B3_0 = L_8; } IL_002c: { V_1 = G_B3_0; goto IL_00d4; } IL_0032: { int32_t L_9 = ___i0; V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_9)); int32_t L_10 = V_2; int32_t L_11 = ___n1; if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_006a; } } { RuntimeObject* L_12 = __this->get_comparer_2(); RuntimeArray * L_13 = __this->get_keys_0(); int32_t L_14 = ___lo2; int32_t L_15 = V_2; NullCheck(L_13); RuntimeObject * L_16 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)), (int32_t)1)), /*hidden argument*/NULL); RuntimeArray * L_17 = __this->get_keys_0(); int32_t L_18 = ___lo2; int32_t L_19 = V_2; NullCheck(L_17); RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL); NullCheck(L_12); int32_t L_21 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_12, L_16, L_20); if ((((int32_t)L_21) >= ((int32_t)0))) { goto IL_006a; } } { int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_006a: { RuntimeObject* L_23 = __this->get_comparer_2(); RuntimeObject * L_24 = V_0; RuntimeArray * L_25 = __this->get_keys_0(); int32_t L_26 = ___lo2; int32_t L_27 = V_2; NullCheck(L_25); RuntimeObject * L_28 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_27)), (int32_t)1)), /*hidden argument*/NULL); NullCheck(L_23); int32_t L_29 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_28); if ((((int32_t)L_29) >= ((int32_t)0))) { goto IL_00dd; } } { RuntimeArray * L_30 = __this->get_keys_0(); RuntimeArray * L_31 = __this->get_keys_0(); int32_t L_32 = ___lo2; int32_t L_33 = V_2; NullCheck(L_31); RuntimeObject * L_34 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_31, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_35 = ___lo2; int32_t L_36 = ___i0; NullCheck(L_30); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_30, L_34, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36)), (int32_t)1)), /*hidden argument*/NULL); RuntimeArray * L_37 = __this->get_items_1(); if (!L_37) { goto IL_00d1; } } { RuntimeArray * L_38 = __this->get_items_1(); RuntimeArray * L_39 = __this->get_items_1(); int32_t L_40 = ___lo2; int32_t L_41 = V_2; NullCheck(L_39); RuntimeObject * L_42 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_39, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_43 = ___lo2; int32_t L_44 = ___i0; NullCheck(L_38); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_38, L_42, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)L_44)), (int32_t)1)), /*hidden argument*/NULL); } IL_00d1: { int32_t L_45 = V_2; ___i0 = L_45; } IL_00d4: { int32_t L_46 = ___i0; int32_t L_47 = ___n1; if ((((int32_t)L_46) <= ((int32_t)((int32_t)((int32_t)L_47/(int32_t)2))))) { goto IL_0032; } } IL_00dd: { RuntimeArray * L_48 = __this->get_keys_0(); RuntimeObject * L_49 = V_0; int32_t L_50 = ___lo2; int32_t L_51 = ___i0; NullCheck(L_48); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_48, L_49, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)L_51)), (int32_t)1)), /*hidden argument*/NULL); RuntimeArray * L_52 = __this->get_items_1(); if (!L_52) { goto IL_0107; } } { RuntimeArray * L_53 = __this->get_items_1(); RuntimeObject * L_54 = V_1; int32_t L_55 = ___lo2; int32_t L_56 = ___i0; NullCheck(L_53); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_53, L_54, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56)), (int32_t)1)), /*hidden argument*/NULL); } IL_0107: { return; } } IL2CPP_EXTERN_C void SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_DownHeap_m972A85AD4FC96D36FF769FA12D828F9195D6D360(_thisAdjusted, ___i0, ___n1, ___lo2, method); } // System.Void System.Array_SorterGenericArray::InsertionSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB (SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; RuntimeObject * V_3 = NULL; RuntimeObject * G_B4_0 = NULL; { int32_t L_0 = ___lo0; V_0 = L_0; goto IL_00bd; } IL_0007: { int32_t L_1 = V_0; V_1 = L_1; RuntimeArray * L_2 = __this->get_keys_0(); int32_t L_3 = V_0; NullCheck(L_2); RuntimeObject * L_4 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_2, ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL); V_2 = L_4; RuntimeArray * L_5 = __this->get_items_1(); if (L_5) { goto IL_0023; } } { G_B4_0 = NULL; goto IL_0031; } IL_0023: { RuntimeArray * L_6 = __this->get_items_1(); int32_t L_7 = V_0; NullCheck(L_6); RuntimeObject * L_8 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_6, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL); G_B4_0 = L_8; } IL_0031: { V_3 = G_B4_0; goto IL_0074; } IL_0034: { RuntimeArray * L_9 = __this->get_keys_0(); RuntimeArray * L_10 = __this->get_keys_0(); int32_t L_11 = V_1; NullCheck(L_10); RuntimeObject * L_12 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_10, L_11, /*hidden argument*/NULL); int32_t L_13 = V_1; NullCheck(L_9); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_9, L_12, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)), /*hidden argument*/NULL); RuntimeArray * L_14 = __this->get_items_1(); if (!L_14) { goto IL_0070; } } { RuntimeArray * L_15 = __this->get_items_1(); RuntimeArray * L_16 = __this->get_items_1(); int32_t L_17 = V_1; NullCheck(L_16); RuntimeObject * L_18 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_16, L_17, /*hidden argument*/NULL); int32_t L_19 = V_1; NullCheck(L_15); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_15, L_18, ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)), /*hidden argument*/NULL); } IL_0070: { int32_t L_20 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)); } IL_0074: { int32_t L_21 = V_1; int32_t L_22 = ___lo0; if ((((int32_t)L_21) < ((int32_t)L_22))) { goto IL_0093; } } { RuntimeObject* L_23 = __this->get_comparer_2(); RuntimeObject * L_24 = V_2; RuntimeArray * L_25 = __this->get_keys_0(); int32_t L_26 = V_1; NullCheck(L_25); RuntimeObject * L_27 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_25, L_26, /*hidden argument*/NULL); NullCheck(L_23); int32_t L_28 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_23, L_24, L_27); if ((((int32_t)L_28) < ((int32_t)0))) { goto IL_0034; } } IL_0093: { RuntimeArray * L_29 = __this->get_keys_0(); RuntimeObject * L_30 = V_2; int32_t L_31 = V_1; NullCheck(L_29); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_29, L_30, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), /*hidden argument*/NULL); RuntimeArray * L_32 = __this->get_items_1(); if (!L_32) { goto IL_00b9; } } { RuntimeArray * L_33 = __this->get_items_1(); RuntimeObject * L_34 = V_3; int32_t L_35 = V_1; NullCheck(L_33); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_33, L_34, ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)), /*hidden argument*/NULL); } IL_00b9: { int32_t L_36 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00bd: { int32_t L_37 = V_0; int32_t L_38 = ___hi1; if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_0007; } } { return; } } IL2CPP_EXTERN_C void SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 * _thisAdjusted = reinterpret_cast<SorterGenericArray_t4742EBDD434279DCC671369AB18AD4DC64587891 *>(__this + 1); SorterGenericArray_InsertionSort_m77E44B03E56C462FF0B5129C35BE1BC2362196BB(_thisAdjusted, ___lo0, ___hi1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Array/SorterObjectArray IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke_back(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Array/SorterObjectArray IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_pinvoke_cleanup(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.Array/SorterObjectArray IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com_back(const SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled, SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4& unmarshaled) { Exception_t* ___keys_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'keys' of type 'SorterObjectArray'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___keys_0Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: System.Array/SorterObjectArray IL2CPP_EXTERN_C void SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshal_com_cleanup(SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4_marshaled_com& marshaled) { } // System.Void System.Array_SorterObjectArray::.ctor(System.Object[],System.Object[],System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___comparer2; if (L_0) { goto IL_000a; } } { IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_1 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1(); ___comparer2 = L_1; } IL_000a: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___keys0; __this->set_keys_0(L_2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = ___items1; __this->set_items_1(L_3); RuntimeObject* L_4 = ___comparer2; __this->set_comparer_2(L_4); return; } } IL2CPP_EXTERN_C void SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8_AdjustorThunk (RuntimeObject * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___keys0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___items1, RuntimeObject* ___comparer2, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray__ctor_mCA8EBA3626F087C830E9E1D9771CE2AEC8CC37F8(_thisAdjusted, ___keys0, ___items1, ___comparer2, method); } // System.Void System.Array_SorterObjectArray::SwapIfGreaterWithItems(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; { int32_t L_0 = ___a0; int32_t L_1 = ___b1; if ((((int32_t)L_0) == ((int32_t)L_1))) { goto IL_006e; } } { RuntimeObject* L_2 = __this->get_comparer_2(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_keys_0(); int32_t L_4 = ___a0; NullCheck(L_3); int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get_keys_0(); int32_t L_8 = ___b1; NullCheck(L_7); int32_t L_9 = L_8; RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); NullCheck(L_2); int32_t L_11 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_2, L_6, L_10); if ((((int32_t)L_11) <= ((int32_t)0))) { goto IL_006e; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get_keys_0(); int32_t L_13 = ___a0; NullCheck(L_12); int32_t L_14 = L_13; RuntimeObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); V_0 = L_15; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get_keys_0(); int32_t L_17 = ___a0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_keys_0(); int32_t L_19 = ___b1; NullCheck(L_18); int32_t L_20 = L_19; RuntimeObject * L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_21); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_21); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = __this->get_keys_0(); int32_t L_23 = ___b1; RuntimeObject * L_24 = V_0; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_24); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)L_24); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = __this->get_items_1(); if (!L_25) { goto IL_006e; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = __this->get_items_1(); int32_t L_27 = ___a0; NullCheck(L_26); int32_t L_28 = L_27; RuntimeObject * L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); V_1 = L_29; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = __this->get_items_1(); int32_t L_31 = ___a0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_32 = __this->get_items_1(); int32_t L_33 = ___b1; NullCheck(L_32); int32_t L_34 = L_33; RuntimeObject * L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34)); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_35); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(L_31), (RuntimeObject *)L_35); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = __this->get_items_1(); int32_t L_37 = ___b1; RuntimeObject * L_38 = V_1; NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (RuntimeObject *)L_38); } IL_006e: { return; } } IL2CPP_EXTERN_C void SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929_AdjustorThunk (RuntimeObject * __this, int32_t ___a0, int32_t ___b1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929(_thisAdjusted, ___a0, ___b1, method); } // System.Void System.Array_SorterObjectArray::Swap(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method) { RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0(); int32_t L_1 = ___i0; NullCheck(L_0); int32_t L_2 = L_1; RuntimeObject * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); V_0 = L_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get_keys_0(); int32_t L_5 = ___i0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_keys_0(); int32_t L_7 = ___j1; NullCheck(L_6); int32_t L_8 = L_7; RuntimeObject * L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_9); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject *)L_9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get_keys_0(); int32_t L_11 = ___j1; RuntimeObject * L_12 = V_0; NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_12); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = __this->get_items_1(); if (!L_13) { goto IL_004c; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = __this->get_items_1(); int32_t L_15 = ___i0; NullCheck(L_14); int32_t L_16 = L_15; RuntimeObject * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); V_1 = L_17; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_items_1(); int32_t L_19 = ___i0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_items_1(); int32_t L_21 = ___j1; NullCheck(L_20); int32_t L_22 = L_21; RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_23); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(L_19), (RuntimeObject *)L_23); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_24 = __this->get_items_1(); int32_t L_25 = ___j1; RuntimeObject * L_26 = V_1; NullCheck(L_24); ArrayElementTypeCheck (L_24, L_26); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(L_25), (RuntimeObject *)L_26); } IL_004c: { return; } } IL2CPP_EXTERN_C void SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___j1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833(_thisAdjusted, ___i0, ___j1, method); } // System.Void System.Array_SorterObjectArray::Sort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { { int32_t L_0 = ___left0; int32_t L_1 = ___length1; SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_0, L_1, /*hidden argument*/NULL); return; } } IL2CPP_EXTERN_C void SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_Sort_mC04711981E0EB27D7C4509DE8CFF70B1B7336188(_thisAdjusted, ___left0, ___length1, method); } // System.Void System.Array_SorterObjectArray::IntrospectiveSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * 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); { int32_t L_0 = ___length1; if ((((int32_t)L_0) >= ((int32_t)2))) { goto IL_0005; } } { return; } IL_0005: { } IL_0006: try { // begin try (depth: 1) int32_t L_1 = ___left0; int32_t L_2 = ___length1; int32_t L_3 = ___left0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get_keys_0(); NullCheck(L_4); int32_t L_5 = IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA((((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/NULL); SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_1, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_3)), (int32_t)1)), ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_5)), /*hidden argument*/NULL); goto IL_003e; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0023; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0031; throw e; } CATCH_0023: { // begin catch(System.IndexOutOfRangeException) RuntimeObject* L_6 = __this->get_comparer_2(); IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A(L_6, /*hidden argument*/NULL); goto IL_003e; } // end catch (depth: 1) CATCH_0031: { // begin catch(System.Exception) V_0 = ((Exception_t *)__exception_local); Exception_t * L_7 = V_0; InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_8 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_mC40AA9579B996C6FBAE023590139C16304D81DC6(L_8, _stringLiteralFB1F9085CD251113A1CE1C7E7F6CB3C672DA6565, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_RuntimeMethod_var); } // end catch (depth: 1) IL_003e: { return; } } IL2CPP_EXTERN_C void SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C_AdjustorThunk (RuntimeObject * __this, int32_t ___left0, int32_t ___length1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_IntrospectiveSort_mC57E0BEC1F35CAE786159355D810C3B6C4169C6C(_thisAdjusted, ___left0, ___length1, method); } // System.Void System.Array_SorterObjectArray::IntroSort(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { goto IL_0073; } IL_0002: { int32_t L_0 = ___hi1; int32_t L_1 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)((int32_t)16)))) { goto IL_0049; } } { int32_t L_3 = V_0; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0012; } } { return; } IL_0012: { int32_t L_4 = V_0; if ((!(((uint32_t)L_4) == ((uint32_t)2)))) { goto IL_001f; } } { int32_t L_5 = ___lo0; int32_t L_6 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_5, L_6, /*hidden argument*/NULL); return; } IL_001f: { int32_t L_7 = V_0; if ((!(((uint32_t)L_7) == ((uint32_t)3)))) { goto IL_0040; } } { int32_t L_8 = ___lo0; int32_t L_9 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)), /*hidden argument*/NULL); int32_t L_10 = ___lo0; int32_t L_11 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_10, L_11, /*hidden argument*/NULL); int32_t L_12 = ___hi1; int32_t L_13 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL); return; } IL_0040: { int32_t L_14 = ___lo0; int32_t L_15 = ___hi1; SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_14, L_15, /*hidden argument*/NULL); return; } IL_0049: { int32_t L_16 = ___depthLimit2; if (L_16) { goto IL_0055; } } { int32_t L_17 = ___lo0; int32_t L_18 = ___hi1; SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_17, L_18, /*hidden argument*/NULL); return; } IL_0055: { int32_t L_19 = ___depthLimit2; ___depthLimit2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); int32_t L_20 = ___lo0; int32_t L_21 = ___hi1; int32_t L_22 = SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_20, L_21, /*hidden argument*/NULL); V_1 = L_22; int32_t L_23 = V_1; int32_t L_24 = ___hi1; int32_t L_25 = ___depthLimit2; SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)), L_24, L_25, /*hidden argument*/NULL); int32_t L_26 = V_1; ___hi1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); } IL_0073: { int32_t L_27 = ___hi1; int32_t L_28 = ___lo0; if ((((int32_t)L_27) > ((int32_t)L_28))) { goto IL_0002; } } { return; } } IL2CPP_EXTERN_C void SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, int32_t ___depthLimit2, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_IntroSort_m54195F7BA3E1A294115EF6AC4EAD1B32C9B8EFF3(_thisAdjusted, ___lo0, ___hi1, ___depthLimit2, method); } // System.Int32 System.Array_SorterObjectArray::PickPivotAndPartition(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { int32_t L_0 = ___lo0; int32_t L_1 = ___hi1; int32_t L_2 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))/(int32_t)2)))); int32_t L_3 = ___lo0; int32_t L_4 = V_0; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_3, L_4, /*hidden argument*/NULL); int32_t L_5 = ___lo0; int32_t L_6 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_5, L_6, /*hidden argument*/NULL); int32_t L_7 = V_0; int32_t L_8 = ___hi1; SorterObjectArray_SwapIfGreaterWithItems_mD0CA9EF265494212F34FEC772A67246F4C344929((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_7, L_8, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get_keys_0(); int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = L_10; RuntimeObject * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_1 = L_12; int32_t L_13 = V_0; int32_t L_14 = ___hi1; SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_13, ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL); int32_t L_15 = ___lo0; V_2 = L_15; int32_t L_16 = ___hi1; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); goto IL_007d; } IL_003b: { RuntimeObject* L_17 = __this->get_comparer_2(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_keys_0(); int32_t L_19 = V_2; int32_t L_20 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); V_2 = L_20; NullCheck(L_18); int32_t L_21 = L_20; RuntimeObject * L_22 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_21)); RuntimeObject * L_23 = V_1; NullCheck(L_17); int32_t L_24 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_17, L_22, L_23); if ((((int32_t)L_24) < ((int32_t)0))) { goto IL_003b; } } IL_0056: { RuntimeObject* L_25 = __this->get_comparer_2(); RuntimeObject * L_26 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = __this->get_keys_0(); int32_t L_28 = V_3; int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1)); V_3 = L_29; NullCheck(L_27); int32_t L_30 = L_29; RuntimeObject * L_31 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); NullCheck(L_25); int32_t L_32 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_25, L_26, L_31); if ((((int32_t)L_32) < ((int32_t)0))) { goto IL_0056; } } { int32_t L_33 = V_2; int32_t L_34 = V_3; if ((((int32_t)L_33) >= ((int32_t)L_34))) { goto IL_0081; } } { int32_t L_35 = V_2; int32_t L_36 = V_3; SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_35, L_36, /*hidden argument*/NULL); } IL_007d: { int32_t L_37 = V_2; int32_t L_38 = V_3; if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_003b; } } IL_0081: { int32_t L_39 = V_2; int32_t L_40 = ___hi1; SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_39, ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1)), /*hidden argument*/NULL); int32_t L_41 = V_2; return L_41; } } IL2CPP_EXTERN_C int32_t SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); return SorterObjectArray_PickPivotAndPartition_m54A40E47DE8E8EE1435E68B2003A851227F3DA06(_thisAdjusted, ___lo0, ___hi1, method); } // System.Void System.Array_SorterObjectArray::Heapsort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___hi1; int32_t L_1 = ___lo0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = V_0; V_1 = ((int32_t)((int32_t)L_2/(int32_t)2)); goto IL_0019; } IL_000c: { int32_t L_3 = V_1; int32_t L_4 = V_0; int32_t L_5 = ___lo0; SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_3, L_4, L_5, /*hidden argument*/NULL); int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); } IL_0019: { int32_t L_7 = V_1; if ((((int32_t)L_7) >= ((int32_t)1))) { goto IL_000c; } } { int32_t L_8 = V_0; V_2 = L_8; goto IL_003c; } IL_0021: { int32_t L_9 = ___lo0; int32_t L_10 = ___lo0; int32_t L_11 = V_2; SorterObjectArray_Swap_m7BF8111C317F7DD5A998412B1988073D81AC0833((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), /*hidden argument*/NULL); int32_t L_12 = V_2; int32_t L_13 = ___lo0; SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A((SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *)__this, 1, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)), L_13, /*hidden argument*/NULL); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); } IL_003c: { int32_t L_15 = V_2; if ((((int32_t)L_15) > ((int32_t)1))) { goto IL_0021; } } { return; } } IL2CPP_EXTERN_C void SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_Heapsort_m9D5FCC664979AB3CCEBBA1293ED87A1AEA8918F8(_thisAdjusted, ___lo0, ___hi1, method); } // System.Void System.Array_SorterObjectArray::DownHeap(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; RuntimeObject * V_1 = NULL; int32_t V_2 = 0; RuntimeObject * G_B3_0 = NULL; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0(); int32_t L_1 = ___lo2; int32_t L_2 = ___i0; NullCheck(L_0); int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1)); RuntimeObject * L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); V_0 = L_4; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_items_1(); if (L_5) { goto IL_0018; } } { G_B3_0 = NULL; goto IL_0024; } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_items_1(); int32_t L_7 = ___lo2; int32_t L_8 = ___i0; NullCheck(L_6); int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)), (int32_t)1)); RuntimeObject * L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); G_B3_0 = L_10; } IL_0024: { V_1 = G_B3_0; goto IL_00b0; } IL_002a: { int32_t L_11 = ___i0; V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_11)); int32_t L_12 = V_2; int32_t L_13 = ___n1; if ((((int32_t)L_12) >= ((int32_t)L_13))) { goto IL_005a; } } { RuntimeObject* L_14 = __this->get_comparer_2(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = __this->get_keys_0(); int32_t L_16 = ___lo2; int32_t L_17 = V_2; NullCheck(L_15); int32_t L_18 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), (int32_t)1)); RuntimeObject * L_19 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_keys_0(); int32_t L_21 = ___lo2; int32_t L_22 = V_2; NullCheck(L_20); int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22)); RuntimeObject * L_24 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); NullCheck(L_14); int32_t L_25 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_14, L_19, L_24); if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_005a; } } { int32_t L_26 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_005a: { RuntimeObject* L_27 = __this->get_comparer_2(); RuntimeObject * L_28 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get_keys_0(); int32_t L_30 = ___lo2; int32_t L_31 = V_2; NullCheck(L_29); int32_t L_32 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)), (int32_t)1)); RuntimeObject * L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); NullCheck(L_27); int32_t L_34 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_27, L_28, L_33); if ((((int32_t)L_34) >= ((int32_t)0))) { goto IL_00b9; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_35 = __this->get_keys_0(); int32_t L_36 = ___lo2; int32_t L_37 = ___i0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = __this->get_keys_0(); int32_t L_39 = ___lo2; int32_t L_40 = V_2; NullCheck(L_38); int32_t L_41 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)L_40)), (int32_t)1)); RuntimeObject * L_42 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_41)); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_42); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_37)), (int32_t)1))), (RuntimeObject *)L_42); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_43 = __this->get_items_1(); if (!L_43) { goto IL_00ad; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_44 = __this->get_items_1(); int32_t L_45 = ___lo2; int32_t L_46 = ___i0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_47 = __this->get_items_1(); int32_t L_48 = ___lo2; int32_t L_49 = V_2; NullCheck(L_47); int32_t L_50 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)L_49)), (int32_t)1)); RuntimeObject * L_51 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_50)); NullCheck(L_44); ArrayElementTypeCheck (L_44, L_51); (L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46)), (int32_t)1))), (RuntimeObject *)L_51); } IL_00ad: { int32_t L_52 = V_2; ___i0 = L_52; } IL_00b0: { int32_t L_53 = ___i0; int32_t L_54 = ___n1; if ((((int32_t)L_53) <= ((int32_t)((int32_t)((int32_t)L_54/(int32_t)2))))) { goto IL_002a; } } IL_00b9: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = __this->get_keys_0(); int32_t L_56 = ___lo2; int32_t L_57 = ___i0; RuntimeObject * L_58 = V_0; NullCheck(L_55); ArrayElementTypeCheck (L_55, L_58); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_57)), (int32_t)1))), (RuntimeObject *)L_58); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_59 = __this->get_items_1(); if (!L_59) { goto IL_00db; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = __this->get_items_1(); int32_t L_61 = ___lo2; int32_t L_62 = ___i0; RuntimeObject * L_63 = V_1; NullCheck(L_60); ArrayElementTypeCheck (L_60, L_63); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)L_62)), (int32_t)1))), (RuntimeObject *)L_63); } IL_00db: { return; } } IL2CPP_EXTERN_C void SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A_AdjustorThunk (RuntimeObject * __this, int32_t ___i0, int32_t ___n1, int32_t ___lo2, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_DownHeap_mBC5EE48708B60CE1B8870CCDD595BB62810A8C3A(_thisAdjusted, ___i0, ___n1, ___lo2, method); } // System.Void System.Array_SorterObjectArray::InsertionSort(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2 (SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; RuntimeObject * V_3 = NULL; RuntimeObject * G_B4_0 = NULL; { int32_t L_0 = ___lo0; V_0 = L_0; goto IL_0099; } IL_0007: { int32_t L_1 = V_0; V_1 = L_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get_keys_0(); int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); RuntimeObject * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_2 = L_5; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_items_1(); if (L_6) { goto IL_001f; } } { G_B4_0 = NULL; goto IL_0029; } IL_001f: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get_items_1(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); G_B4_0 = L_10; } IL_0029: { V_3 = G_B4_0; goto IL_005c; } IL_002c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = __this->get_keys_0(); int32_t L_12 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = __this->get_keys_0(); int32_t L_14 = V_1; NullCheck(L_13); int32_t L_15 = L_14; RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_16); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))), (RuntimeObject *)L_16); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = __this->get_items_1(); if (!L_17) { goto IL_0058; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = __this->get_items_1(); int32_t L_19 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_items_1(); int32_t L_21 = V_1; NullCheck(L_20); int32_t L_22 = L_21; RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_23); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))), (RuntimeObject *)L_23); } IL_0058: { int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); } IL_005c: { int32_t L_25 = V_1; int32_t L_26 = ___lo0; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_0077; } } { RuntimeObject* L_27 = __this->get_comparer_2(); RuntimeObject * L_28 = V_2; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get_keys_0(); int32_t L_30 = V_1; NullCheck(L_29); int32_t L_31 = L_30; RuntimeObject * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); NullCheck(L_27); int32_t L_33 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_27, L_28, L_32); if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_002c; } } IL_0077: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = __this->get_keys_0(); int32_t L_35 = V_1; RuntimeObject * L_36 = V_2; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1))), (RuntimeObject *)L_36); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_37 = __this->get_items_1(); if (!L_37) { goto IL_0095; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = __this->get_items_1(); int32_t L_39 = V_1; RuntimeObject * L_40 = V_3; NullCheck(L_38); ArrayElementTypeCheck (L_38, L_40); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))), (RuntimeObject *)L_40); } IL_0095: { int32_t L_41 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_0099: { int32_t L_42 = V_0; int32_t L_43 = ___hi1; if ((((int32_t)L_42) < ((int32_t)L_43))) { goto IL_0007; } } { return; } } IL2CPP_EXTERN_C void SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2_AdjustorThunk (RuntimeObject * __this, int32_t ___lo0, int32_t ___hi1, const RuntimeMethod* method) { SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 * _thisAdjusted = reinterpret_cast<SorterObjectArray_tFBBE2F63F86573B28BE7E3BE0BFF9C614F12BDB4 *>(__this + 1); SorterObjectArray_InsertionSort_mAC63A57B5938B87D88A92189CB1235C7011CDAC2(_thisAdjusted, ___lo0, ___hi1, 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.ArraySpec::.ctor(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArraySpec__ctor_m7829BADEF006060440EBF1330EC85B9FF17CE6B4 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, int32_t ___dimensions0, bool ___bound1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___dimensions0; __this->set_dimensions_0(L_0); bool L_1 = ___bound1; __this->set_bound_1(L_1); return; } } // System.Type System.ArraySpec::Resolve(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * ArraySpec_Resolve_m54EB9F25CDE838BA329A82D02D6114005C75B246 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, Type_t * ___type0, const RuntimeMethod* method) { { bool L_0 = __this->get_bound_1(); if (!L_0) { goto IL_0010; } } { Type_t * L_1 = ___type0; NullCheck(L_1); Type_t * L_2 = VirtFuncInvoker1< Type_t *, int32_t >::Invoke(20 /* System.Type System.Type::MakeArrayType(System.Int32) */, L_1, 1); return L_2; } IL_0010: { int32_t L_3 = __this->get_dimensions_0(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0020; } } { Type_t * L_4 = ___type0; NullCheck(L_4); Type_t * L_5 = VirtFuncInvoker0< Type_t * >::Invoke(19 /* System.Type System.Type::MakeArrayType() */, L_4); return L_5; } IL_0020: { Type_t * L_6 = ___type0; int32_t L_7 = __this->get_dimensions_0(); NullCheck(L_6); Type_t * L_8 = VirtFuncInvoker1< Type_t *, int32_t >::Invoke(20 /* System.Type System.Type::MakeArrayType(System.Int32) */, L_6, L_7); return L_8; } } // System.Text.StringBuilder System.ArraySpec::Append(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639 (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, StringBuilder_t * ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_bound_1(); if (!L_0) { goto IL_0014; } } { StringBuilder_t * L_1 = ___sb0; NullCheck(L_1); StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_1, _stringLiteral731634FF73E12680BA57A79BB4FFDBF6FA8A8F72, /*hidden argument*/NULL); return L_2; } IL_0014: { StringBuilder_t * L_3 = ___sb0; NullCheck(L_3); StringBuilder_t * L_4 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_3, ((int32_t)91), /*hidden argument*/NULL); int32_t L_5 = __this->get_dimensions_0(); NullCheck(L_4); StringBuilder_t * L_6 = StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(L_4, ((int32_t)44), ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL); NullCheck(L_6); StringBuilder_t * L_7 = StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_6, ((int32_t)93), /*hidden argument*/NULL); return L_7; } } // System.String System.ArraySpec::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F (ArraySpec_tF374BB8994F7190916C6F14C7EA8FE6EFE017970 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArraySpec_ToString_mD91A17CAFE62504A681BA64D57A9A4C9B3E0070F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL); StringBuilder_t * L_1 = ArraySpec_Append_mEA5F3D33185A31FDCF7365E21B65937F2FE17639(__this, L_0, /*hidden argument*/NULL); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ArrayTypeMismatchException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1 (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayTypeMismatchException__ctor_m1E7F220C883CE2ED1C4AA08ACA96D4E4B1A635F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral721C8C5C51906148BF57F662A1D9D497D2658685, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233085), /*hidden argument*/NULL); return; } } // System.Void System.ArrayTypeMismatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_m6BBF48A560D2F52B5B110CF795C82F8089E8247B (ArrayTypeMismatchException_tE34C1032B089C37399200997F079C640D23D9499 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.AssemblyLoadEventArgs::.ctor(System.Reflection.Assembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8 (AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * __this, Assembly_t * ___loadedAssembly0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AssemblyLoadEventArgs__ctor_m1F35C892F2C6D04A5792F741C905D13E163D60E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventArgs_t8E6CA180BE0E56674C6407011A94BAF7C757352E_il2cpp_TypeInfo_var); EventArgs__ctor_m3551293259861C5A78CD47689D559F828ED29DF7(__this, /*hidden argument*/NULL); Assembly_t * L_0 = ___loadedAssembly0; __this->set_m_loadedAssembly_1(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.AssemblyLoadEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler__ctor_m369E4F3C5E1F387C01BAA9C93C793063EB2C80E2 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __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.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_Invoke_m8F8FC0944BD880531B58755B35ACD61D7E980142 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * ___args1, const RuntimeMethod* method) { DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, ___sender0, ___args1); else GenericVirtActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, ___sender0, ___args1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___sender0, ___args1); else VirtActionInvoker1< AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___sender0, ___args1); } } else { typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___sender0, ___args1, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1); else GenericVirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(targetMethod, targetThis, ___sender0, ___args1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___sender0, ___args1); else VirtActionInvoker2< RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___sender0, ___args1); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject *, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 *, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___sender0, ___args1, targetMethod); } } } } // System.IAsyncResult System.AssemblyLoadEventHandler::BeginInvoke(System.Object,System.AssemblyLoadEventArgs,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AssemblyLoadEventHandler_BeginInvoke_m1ADB392B952FE127E3D6104B95810002A36A7225 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __this, RuntimeObject * ___sender0, AssemblyLoadEventArgs_t51DAAB04039C3B2D8C3FBF65C13441BC6C6A7AE8 * ___args1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { void *__d_args[3] = {0}; __d_args[0] = ___sender0; __d_args[1] = ___args1; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3); } // System.Void System.AssemblyLoadEventHandler::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_EndInvoke_m3DE6D4CF1FC884467F0CA5D48BFA9690F3E917E3 (AssemblyLoadEventHandler_t53F8340027F9EE67E8A22E7D8C1A3770345153C9 * __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.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_m36AEE927E6AFEE950656BC5F7841682D23DE2EBB (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __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.AsyncCallback::Invoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_m1830E56CD41BDD255C144AA16A9426EEE301617C (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, 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 == 1) { // open typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___ar0, 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)) GenericInterfaceActionInvoker0::Invoke(targetMethod, ___ar0); else GenericVirtActionInvoker0::Invoke(targetMethod, ___ar0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ar0); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ar0); } } else { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod); } } else { // closed if (il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (targetThis == NULL) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(___ar0, targetMethod); } else if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0); else GenericVirtActionInvoker1< RuntimeObject* >::Invoke(targetMethod, targetThis, ___ar0); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ar0); else VirtActionInvoker1< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ar0); } } else { typedef void (*FunctionPointerType) (void*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, ___ar0, targetMethod); } } } } // System.IAsyncResult System.AsyncCallback::BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncCallback_BeginInvoke_mE4C005FA524EAFFDF3C40F562AC58CB070F03AC5 (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __this, RuntimeObject* ___ar0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___ar0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2); } // System.Void System.AsyncCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_EndInvoke_m23ABC7762B20ED65D3C3A2A1C3B240A6F4BF1F3F (AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * __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.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.PropertyInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3 (PropertyInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyInfo_t * L_0 = ___element0; Type_t * L_1 = ___type1; bool L_2 = ___inherit2; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_0, L_1, L_2, /*hidden argument*/NULL); return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_3, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var)); } } // System.Attribute[] System.Attribute::InternalGetCustomAttributes(System.Reflection.EventInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87 (EventInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventInfo_t * L_0 = ___element0; Type_t * L_1 = ___type1; bool L_2 = ___inherit2; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = MonoCustomAttrs_GetCustomAttributes_m1FD79FB099EEB9D47077C17F9496F4E17AD97115(L_0, L_1, L_2, /*hidden argument*/NULL); return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_3, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var)); } } // System.Boolean System.Attribute::InternalIsDefined(System.Reflection.PropertyInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8 (PropertyInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { PropertyInfo_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; bool L_2 = ___inherit2; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var); bool L_3 = MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Attribute::InternalIsDefined(System.Reflection.EventInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24 (EventInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EventInfo_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; bool L_2 = ___inherit2; IL2CPP_RUNTIME_CLASS_INIT(MonoCustomAttrs_t9E88BD614E6A34BF71106F71D0524DBA27E7FA98_il2cpp_TypeInfo_var); bool L_3 = MonoCustomAttrs_IsDefined_m9AFDDAF3585947E9D03C1AB992DF1011D7CB0CF4(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8 (MemberInfo_t * ___element0, Type_t * ___type1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { MemberInfo_t * L_0 = ___element0; bool L_1 = MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___type1; 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_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var); } IL_0028: { Type_t * L_6 = ___type1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(107 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8); if (L_9) { goto IL_005c; } } { Type_t * L_10 = ___type1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_005c; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8_RuntimeMethod_var); } IL_005c: { MemberInfo_t * L_16 = ___element0; NullCheck(L_16); int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_16); V_0 = L_17; int32_t L_18 = V_0; if ((((int32_t)L_18) == ((int32_t)2))) { goto IL_007a; } } { int32_t L_19 = V_0; if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)16))))) { goto IL_0088; } } { MemberInfo_t * L_20 = ___element0; Type_t * L_21 = ___type1; bool L_22 = ___inherit2; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_23 = Attribute_InternalGetCustomAttributes_m79A1BD09EEADB51067F0EAD54C2FCFED60825FD3(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_20, PropertyInfo_t_il2cpp_TypeInfo_var)), L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_007a: { MemberInfo_t * L_24 = ___element0; Type_t * L_25 = ___type1; bool L_26 = ___inherit2; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_27 = Attribute_InternalGetCustomAttributes_m786427FC13FB2D718DF52743D0D56B4F4A4B7C87(((EventInfo_t *)CastclassClass((RuntimeObject*)L_24, EventInfo_t_il2cpp_TypeInfo_var)), L_25, L_26, /*hidden argument*/NULL); return L_27; } IL_0088: { MemberInfo_t * L_28 = ___element0; Type_t * L_29 = ___type1; bool L_30 = ___inherit2; NullCheck(L_28); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(11 /* System.Object[] System.Reflection.MemberInfo::GetCustomAttributes(System.Type,System.Boolean) */, L_28, L_29, L_30); return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)IsInst((RuntimeObject*)L_31, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var)); } } // System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m3456E1BF5B06C7ABFA5F19192A475A854D6C3F43 (MemberInfo_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method) { { MemberInfo_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; bool L_2 = Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293(L_0, L_1, (bool)1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Attribute::IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293 (MemberInfo_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { MemberInfo_t * L_0 = ___element0; bool L_1 = MemberInfo_op_Equality_m9B77A8811138313780ADCD0A9EE018748B9249D9(L_0, (MemberInfo_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___attributeType1; 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_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var); } IL_0028: { Type_t * L_6 = ___attributeType1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(107 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8); if (L_9) { goto IL_005c; } } { Type_t * L_10 = ___attributeType1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_005c; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Attribute_IsDefined_m31F47119B9BD6DFED01BA37BCF77DFF894816293_RuntimeMethod_var); } IL_005c: { MemberInfo_t * L_16 = ___element0; NullCheck(L_16); int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Reflection.MemberTypes System.Reflection.MemberInfo::get_MemberType() */, L_16); V_0 = L_17; int32_t L_18 = V_0; if ((((int32_t)L_18) == ((int32_t)2))) { goto IL_007a; } } { int32_t L_19 = V_0; if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)16))))) { goto IL_0088; } } { MemberInfo_t * L_20 = ___element0; Type_t * L_21 = ___attributeType1; bool L_22 = ___inherit2; bool L_23 = Attribute_InternalIsDefined_m5C7E046C44198677CBCA00781979A7B3799460B8(((PropertyInfo_t *)CastclassClass((RuntimeObject*)L_20, PropertyInfo_t_il2cpp_TypeInfo_var)), L_21, L_22, /*hidden argument*/NULL); return L_23; } IL_007a: { MemberInfo_t * L_24 = ___element0; Type_t * L_25 = ___attributeType1; bool L_26 = ___inherit2; bool L_27 = Attribute_InternalIsDefined_mE8B292CB9DC5662A6C36528E28A23B38664E6A24(((EventInfo_t *)CastclassClass((RuntimeObject*)L_24, EventInfo_t_il2cpp_TypeInfo_var)), L_25, L_26, /*hidden argument*/NULL); return L_27; } IL_0088: { MemberInfo_t * L_28 = ___element0; Type_t * L_29 = ___attributeType1; bool L_30 = ___inherit2; NullCheck(L_28); bool L_31 = VirtFuncInvoker2< bool, Type_t *, bool >::Invoke(12 /* System.Boolean System.Reflection.MemberInfo::IsDefined(System.Type,System.Boolean) */, L_28, L_29, L_30); return L_31; } } // 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) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL; { MemberInfo_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; bool L_2 = ___inherit2; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = Attribute_GetCustomAttributes_m51F1A204FE1FB412E23B00056B127E5EE03041A8(L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = V_0; if (!L_4) { goto IL_0010; } } { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = V_0; NullCheck(L_5); if ((((RuntimeArray*)L_5)->max_length)) { goto IL_0012; } } IL_0010: { return (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)NULL; } IL_0012: { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = V_0; NullCheck(L_6); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))) == ((uint32_t)1)))) { goto IL_001c; } } { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); return L_9; } IL_001c: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF, /*hidden argument*/NULL); AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * L_11 = (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 *)il2cpp_codegen_object_new(AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Attribute_GetCustomAttribute_m2A281F2593CC0DC3D02E97D79A3581C72A7512E4_RuntimeMethod_var); } } // System.Attribute[] System.Attribute::GetCustomAttributes(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498 (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Assembly_t * L_0 = ___element0; bool L_1 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_0, (Assembly_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralDECE05484839DF110745B0A800297C33CC078287, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___attributeType1; 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_0028; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_5, _stringLiteralEF46D75152852B41CC6121A161522C9643FFF123, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var); } IL_0028: { Type_t * L_6 = ___attributeType1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); bool L_9 = VirtFuncInvoker1< bool, Type_t * >::Invoke(107 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_6, L_8); if (L_9) { goto IL_005c; } } { Type_t * L_10 = ___attributeType1; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL); bool L_13 = Type_op_Inequality_m615014191FB05FD50F63A24EB9A6CCA785E7CEC9(L_10, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_005c; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral6BB30BF3B61DFE1865F4ABE8C032368ED35891A7, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498_RuntimeMethod_var); } IL_005c: { Assembly_t * L_16 = ___element0; Type_t * L_17 = ___attributeType1; bool L_18 = ___inherit2; NullCheck(L_16); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = VirtFuncInvoker2< ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, Type_t *, bool >::Invoke(12 /* System.Object[] System.Reflection.Assembly::GetCustomAttributes(System.Type,System.Boolean) */, L_16, L_17, L_18); return ((AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17*)Castclass((RuntimeObject*)L_19, AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17_il2cpp_TypeInfo_var)); } } // System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_m2F7052FBA63683DCBD28CA75E300CB453AF531F8 (Assembly_t * ___element0, Type_t * ___attributeType1, const RuntimeMethod* method) { { Assembly_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_2 = Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE(L_0, L_1, (bool)1, /*hidden argument*/NULL); return L_2; } } // System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.Assembly,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE (Assembly_t * ___element0, Type_t * ___attributeType1, bool ___inherit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* V_0 = NULL; { Assembly_t * L_0 = ___element0; Type_t * L_1 = ___attributeType1; bool L_2 = ___inherit2; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_3 = Attribute_GetCustomAttributes_m42F9AB42F21554BE6F973B3CD699692A97B6E498(L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_4 = V_0; if (!L_4) { goto IL_0010; } } { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_5 = V_0; NullCheck(L_5); if ((((RuntimeArray*)L_5)->max_length)) { goto IL_0012; } } IL_0010: { return (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 *)NULL; } IL_0012: { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_6 = V_0; NullCheck(L_6); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))) == ((uint32_t)1)))) { goto IL_001c; } } { AttributeU5BU5D_t777BEFAB7857CFA5F0EE6C3EB1F8F7FF61F00A17* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); return L_9; } IL_001c: { String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC1734285C685E958AD0B932A43A2CF72C6E069BF, /*hidden argument*/NULL); AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 * L_11 = (AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349 *)il2cpp_codegen_object_new(AmbiguousMatchException_tA6167784E27C39A0B575BAD72BC25059F3B8B349_il2cpp_TypeInfo_var); AmbiguousMatchException__ctor_m1828F14B6EA9C5F008237590CB3C4B0A59C03006(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, NULL, Attribute_GetCustomAttribute_mD832C65CE28D6177FDE62D3C23C5229D8BDEF9AE_RuntimeMethod_var); } } // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Boolean System.Attribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_Equals_mCF07CF66D36F64A6F7616756BFD76617398AFDB9_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject * V_2 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_3 = NULL; int32_t V_4 = 0; { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); V_0 = ((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_1, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)); RuntimeObject * L_2 = ___obj0; NullCheck(L_2); Type_t * L_3 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_2, /*hidden argument*/NULL); RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_4 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var); bool L_5 = RuntimeType_op_Inequality_mA98A719712593FEE5DCCFDB47CCABDB58BEE1B0D(((RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F *)CastclassClass((RuntimeObject*)L_3, RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F_il2cpp_TypeInfo_var)), L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0026; } } { return (bool)0; } IL_0026: { V_1 = __this; RuntimeType_t40F13BCEAD97478C72C4B40BFDC2A220161CDB8F * L_6 = V_0; NullCheck(L_6); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_7 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_6, ((int32_t)52)); V_3 = L_7; V_4 = 0; goto IL_0065; } IL_0036: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_8 = V_3; int32_t L_9 = V_4; NullCheck(L_8); int32_t L_10 = L_9; FieldInfo_t * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); RuntimeObject * L_12 = V_1; NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_11, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var))); RuntimeObject * L_13 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_11, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), L_12, /*hidden argument*/NULL); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_14 = V_3; int32_t L_15 = V_4; NullCheck(L_14); int32_t L_16 = L_15; FieldInfo_t * L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); RuntimeObject * L_18 = ___obj0; NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_17, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var))); RuntimeObject * L_19 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_17, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), L_18, /*hidden argument*/NULL); V_2 = L_19; RuntimeObject * L_20 = V_2; bool L_21 = Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C(L_13, L_20, /*hidden argument*/NULL); if (L_21) { goto IL_005f; } } { return (bool)0; } IL_005f: { int32_t L_22 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0065: { int32_t L_23 = V_4; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_24 = V_3; NullCheck(L_24); if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))))) { goto IL_0036; } } { return (bool)1; } } // System.Boolean System.Attribute::AreFieldValuesEqual(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C (RuntimeObject * ___thisValue0, RuntimeObject * ___thatValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; RuntimeArray * V_1 = NULL; int32_t V_2 = 0; { RuntimeObject * L_0 = ___thisValue0; if (L_0) { goto IL_0008; } } { RuntimeObject * L_1 = ___thatValue1; if (L_1) { goto IL_0008; } } { return (bool)1; } IL_0008: { RuntimeObject * L_2 = ___thisValue0; if (!L_2) { goto IL_000e; } } { RuntimeObject * L_3 = ___thatValue1; if (L_3) { goto IL_0010; } } IL_000e: { return (bool)0; } IL_0010: { RuntimeObject * L_4 = ___thisValue0; NullCheck(L_4); Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL); NullCheck(L_5); bool L_6 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_007a; } } { RuntimeObject * L_7 = ___thisValue0; NullCheck(L_7); Type_t * L_8 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_7, /*hidden argument*/NULL); RuntimeObject * L_9 = ___thatValue1; NullCheck(L_9); Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL); NullCheck(L_8); bool L_11 = VirtFuncInvoker1< bool, Type_t * >::Invoke(112 /* System.Boolean System.Type::Equals(System.Type) */, L_8, L_10); if (L_11) { goto IL_0032; } } { return (bool)0; } IL_0032: { RuntimeObject * L_12 = ___thisValue0; V_0 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_12, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeObject * L_13 = ___thatValue1; V_1 = ((RuntimeArray *)IsInstClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray * L_14 = V_0; NullCheck(L_14); int32_t L_15 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_14, /*hidden argument*/NULL); RuntimeArray * L_16 = V_1; NullCheck(L_16); int32_t L_17 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_16, /*hidden argument*/NULL); if ((((int32_t)L_15) == ((int32_t)L_17))) { goto IL_0050; } } { return (bool)0; } IL_0050: { V_2 = 0; goto IL_006f; } IL_0054: { RuntimeArray * L_18 = V_0; int32_t L_19 = V_2; NullCheck(L_18); RuntimeObject * L_20 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_18, L_19, /*hidden argument*/NULL); RuntimeArray * L_21 = V_1; int32_t L_22 = V_2; NullCheck(L_21); RuntimeObject * L_23 = Array_GetValue_m9B1409D22139722A3149AC49ABCF558A2E066544(L_21, L_22, /*hidden argument*/NULL); bool L_24 = Attribute_AreFieldValuesEqual_mCE8854319561E79CD481D3F0D0F76F6D1CE26C1C(L_20, L_23, /*hidden argument*/NULL); if (L_24) { goto IL_006b; } } { return (bool)0; } IL_006b: { int32_t L_25 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_006f: { int32_t L_26 = V_2; RuntimeArray * L_27 = V_0; NullCheck(L_27); int32_t L_28 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_27, /*hidden argument*/NULL); if ((((int32_t)L_26) < ((int32_t)L_28))) { goto IL_0054; } } { goto IL_0085; } IL_007a: { RuntimeObject * L_29 = ___thisValue0; RuntimeObject * L_30 = ___thatValue1; NullCheck(L_29); bool L_31 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_29, L_30); if (L_31) { goto IL_0085; } } { return (bool)0; } IL_0085: { return (bool)1; } } // System.Int32 System.Attribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* V_1 = NULL; RuntimeObject * V_2 = NULL; int32_t V_3 = 0; RuntimeObject * V_4 = NULL; { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); V_0 = L_0; Type_t * L_1 = V_0; NullCheck(L_1); FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_2 = VirtFuncInvoker1< FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE*, int32_t >::Invoke(43 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_1, ((int32_t)52)); V_1 = L_2; V_2 = NULL; V_3 = 0; goto IL_0042; } IL_0016: { FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_3 = V_1; int32_t L_4 = V_3; NullCheck(L_3); int32_t L_5 = L_4; FieldInfo_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); NullCheck(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_6, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var))); RuntimeObject * L_7 = RtFieldInfo_UnsafeGetValue_m9B9ACFD585730B17FE5E4CE36C3F0BE529D62E3A(((RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579 *)CastclassClass((RuntimeObject*)L_6, RtFieldInfo_tF0C3D7BDCAD69A06344DAB6D508A916B5A0F6579_il2cpp_TypeInfo_var)), __this, /*hidden argument*/NULL); V_4 = L_7; RuntimeObject * L_8 = V_4; if (!L_8) { goto IL_003b; } } { RuntimeObject * L_9 = V_4; NullCheck(L_9); Type_t * L_10 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_9, /*hidden argument*/NULL); NullCheck(L_10); bool L_11 = Type_get_IsArray_m0B4E20F93B1B34C0B5C4B089F543D1AA338DC9FE(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_003b; } } { RuntimeObject * L_12 = V_4; V_2 = L_12; } IL_003b: { RuntimeObject * L_13 = V_2; if (L_13) { goto IL_0048; } } { int32_t L_14 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); } IL_0042: { int32_t L_15 = V_3; FieldInfoU5BU5D_t9C36FA93372CA01DAF85946064B058CD9CE2E8BE* L_16 = V_1; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))))) { goto IL_0016; } } IL_0048: { RuntimeObject * L_17 = V_2; if (!L_17) { goto IL_0052; } } { RuntimeObject * L_18 = V_2; NullCheck(L_18); int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_18); return L_19; } IL_0052: { Type_t * L_20 = V_0; NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_20); return L_21; } } #ifdef __clang__ #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.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, int32_t ___validOn0, const RuntimeMethod* method) { { __this->set_m_attributeTarget_0(((int32_t)32767)); __this->set_m_inherited_2((bool)1); Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL); int32_t L_0 = ___validOn0; __this->set_m_attributeTarget_0(L_0); return; } } // System.Boolean System.AttributeUsageAttribute::get_AllowMultiple() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mF910B0B16B485A8F02C54854FC9A9604B8810FF7 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_allowMultiple_1(); return L_0; } } // System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_mD819677C280298DDA703CB1B3D0819AD9B6844C4 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_m_allowMultiple_1(L_0); return; } } // System.Boolean System.AttributeUsageAttribute::get_Inherited() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_mE46032EFECAED37FA15BCEE3384DFA4E9868024F (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_inherited_2(); return L_0; } } // System.Void System.AttributeUsageAttribute::set_Inherited(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_Inherited_mCFAF5425443C2E65151F5B8370D09654BA349DD9 (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_m_inherited_2(L_0); return; } } // System.Void System.AttributeUsageAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (AttributeUsageAttribute__cctor_mF8E35DDC8310D4D1AF8C15442899BB38317F1DE9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 * L_0 = (AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388 *)il2cpp_codegen_object_new(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var); AttributeUsageAttribute__ctor_mC429C14AB95A0097160F40CE859CC1894C406051(L_0, ((int32_t)32767), /*hidden argument*/NULL); ((AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t1B765F643562D0CD97D0B6B34D121C6AD9CE2388_il2cpp_TypeInfo_var))->set_Default_3(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.BadImageFormatException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BadImageFormatException__ctor_m3AA3D56F804ADB66408EB0FB1EE3BA3CFE065EC0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mA5C18468FAEC29F4CE61209B9AED6A530EE6023E (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m3A8BBD5E4BDDF39C98370C07015B4EADE131A1F1 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, Exception_t * ___inner1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t * L_1 = ___inner1; SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A(__this, L_0, L_1, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m0770706AFE893E9F0163DD7AB8C8752D8CAE41B7 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024885), /*hidden argument*/NULL); String_t* L_1 = ___fileName1; __this->set__fileName_17(L_1); return; } } // System.String System.BadImageFormatException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_Message_m63D7C6BF3878D29F6B574942B512AFCFF030E68F (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { { BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84(__this, /*hidden argument*/NULL); String_t* L_0 = ((Exception_t *)__this)->get__message_2(); return L_0; } } // System.Void System.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BadImageFormatException_SetMessageField_m2C8D670210E769C795AABA7CF753B6A278036A84_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((Exception_t *)__this)->get__message_2(); if (L_0) { goto IL_0045; } } { String_t* L_1 = __this->get__fileName_17(); if (L_1) { goto IL_002e; } } { int32_t L_2 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-2146233088))))) { goto IL_002e; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral88C4304D27482BED2241CE9527351C05CDBBBF8A, /*hidden argument*/NULL); ((Exception_t *)__this)->set__message_2(L_3); return; } IL_002e: { String_t* L_4 = __this->get__fileName_17(); int32_t L_5 = Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline(__this, /*hidden argument*/NULL); String_t* L_6 = FileLoadException_FormatFileLoadExceptionMessage_m0DB5F9435778EFAEB7E4A91987B1C1925CCAA6F6(L_4, L_5, /*hidden argument*/NULL); ((Exception_t *)__this)->set__message_2(L_6); } IL_0045: { return; } } // System.String System.BadImageFormatException::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BadImageFormatException_ToString_mD518BBE5092DF17432446363042C9BC0E91B609F_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* 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); { Type_t * L_0 = Exception_GetType_mA3390B9D538D5FAC3802D9D8A2FCAC31465130F3(__this, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_0); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); String_t* L_3 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_1, _stringLiteralCECA32E904728D1645727CB2B9CDEAA153807D77, L_2, /*hidden argument*/NULL); V_0 = L_3; String_t* L_4 = __this->get__fileName_17(); if (!L_4) { goto IL_0056; } } { String_t* L_5 = __this->get__fileName_17(); NullCheck(L_5); int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0056; } } { String_t* L_7 = V_0; String_t* L_8 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; String_t* L_11 = __this->get__fileName_17(); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_11); String_t* L_12 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE62577734DC95246ED5E8213FAE683CEE96DDAC8, L_10, /*hidden argument*/NULL); String_t* L_13 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_7, L_8, L_12, /*hidden argument*/NULL); V_0 = L_13; } IL_0056: { Exception_t * L_14 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(__this, /*hidden argument*/NULL); if (!L_14) { goto IL_0075; } } { String_t* L_15 = V_0; Exception_t * L_16 = Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline(__this, /*hidden argument*/NULL); NullCheck(L_16); String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_16); String_t* L_18 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_15, _stringLiteral0EF8991E15895E04C4E0B24686E452411F00B53D, L_17, /*hidden argument*/NULL); V_0 = L_18; } IL_0075: { String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Exception::get_StackTrace() */, __this); if (!L_19) { goto IL_008f; } } { String_t* L_20 = V_0; String_t* L_21 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Exception::get_StackTrace() */, __this); String_t* L_23 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_20, L_21, L_22, /*hidden argument*/NULL); V_0 = L_23; } IL_008f: { } IL_0090: try { // begin try (depth: 1) { String_t* L_24 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL); if (!L_24) { goto IL_00c6; } } IL_0098: { String_t* L_25 = V_0; if (L_25) { goto IL_00a1; } } IL_009b: { V_0 = _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6; } IL_00a1: { String_t* L_26 = V_0; String_t* L_27 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_28 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_26, L_27, /*hidden argument*/NULL); V_0 = L_28; String_t* L_29 = V_0; String_t* L_30 = Environment_get_NewLine_m5D4F4667FA5D1E2DBDD4DF9696D0CE76C83EF318(/*hidden argument*/NULL); String_t* L_31 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_29, L_30, /*hidden argument*/NULL); V_0 = L_31; String_t* L_32 = V_0; String_t* L_33 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL); String_t* L_34 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_32, L_33, /*hidden argument*/NULL); V_0 = L_34; } IL_00c6: { goto IL_00cb; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00c8; throw e; } CATCH_00c8: { // begin catch(System.Security.SecurityException) goto IL_00cb; } // end catch (depth: 1) IL_00cb: { String_t* L_35 = V_0; return L_35; } } // System.Void System.BadImageFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BadImageFormatException__ctor_m897E6C06B73FB4B83F49B3DAD834507A8C19C404_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; NullCheck(L_2); String_t* L_3 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_2, _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4, /*hidden argument*/NULL); __this->set__fileName_17(L_3); } IL_0019: try { // begin try (depth: 1) SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0; NullCheck(L_4); String_t* L_5 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_4, _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2, /*hidden argument*/NULL); __this->set__fusionLog_18(L_5); goto IL_0036; } // 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_002c; throw e; } CATCH_002c: { // begin catch(System.Object) __this->set__fusionLog_18((String_t*)NULL); goto IL_0036; } // end catch (depth: 1) IL_0036: { return; } } // System.String System.BadImageFormatException::get_FusionLog() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__fusionLog_18(); return L_0; } } // System.Void System.BadImageFormatException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991 (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BadImageFormatException_GetObjectData_m5580B939314DA98EF6FCADE83DA3E7C9BE3BD991_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; String_t* L_3 = __this->get__fileName_17(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL); NullCheck(L_2); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_2, _stringLiteral3EA8B873C3337C5D440A0BC514F56B96C35623C4, L_3, L_5, /*hidden argument*/NULL); } IL_0023: try { // begin try (depth: 1) SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; String_t* L_7 = BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline(__this, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_8 = { reinterpret_cast<intptr_t> (String_t_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); NullCheck(L_6); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_6, _stringLiteral5864A8D7BB6199A1EFA79008591241930D5E7EF2, L_7, L_9, /*hidden argument*/NULL); goto IL_0043; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0040; throw e; } CATCH_0040: { // begin catch(System.Security.SecurityException) goto IL_0043; } // end catch (depth: 1) IL_0043: { 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.Boolean System.BitConverter::AmILittleEndian() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8 (const RuntimeMethod* method) { double V_0 = 0.0; uint8_t* V_1 = NULL; { V_0 = (1.0); V_1 = (uint8_t*)(((uintptr_t)(&V_0))); uint8_t* L_0 = V_1; int32_t L_1 = *((uint8_t*)L_0); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Byte[] System.BitConverter::GetBytes(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_GetBytes_mB7DFC7C4705F916C40527A87C9AA6D0EABC23512_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B4_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1; V_1 = L_2; G_B1_0 = L_1; if (!L_2) { G_B2_0 = L_1; goto IL_0010; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1; NullCheck(L_3); G_B2_0 = G_B1_0; if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { G_B3_0 = G_B1_0; goto IL_0015; } } IL_0010: { V_0 = (uint8_t*)(((uintptr_t)0)); G_B4_0 = G_B2_0; goto IL_001e; } IL_0015: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1; NullCheck(L_4); V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))))); G_B4_0 = G_B3_0; } IL_001e: { uint8_t* L_5 = V_0; int16_t L_6 = ___value0; *((int16_t*)L_5) = (int16_t)L_6; V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; return G_B4_0; } } // System.Byte[] System.BitConverter::GetBytes(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_GetBytes_mB5BCBAAFE3AE14F2AF1731187C7155A236DF38EA_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B2_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B1_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B3_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B4_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1; V_1 = L_2; G_B1_0 = L_1; if (!L_2) { G_B2_0 = L_1; goto IL_0010; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1; NullCheck(L_3); G_B2_0 = G_B1_0; if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { G_B3_0 = G_B1_0; goto IL_0015; } } IL_0010: { V_0 = (uint8_t*)(((uintptr_t)0)); G_B4_0 = G_B2_0; goto IL_001e; } IL_0015: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1; NullCheck(L_4); V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))))); G_B4_0 = G_B3_0; } IL_001e: { uint8_t* L_5 = V_0; int32_t L_6 = ___value0; *((int32_t*)L_5) = (int32_t)L_6; V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; return G_B4_0; } } // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))); uint8_t* L_7 = V_1; V_0 = (uint8_t*)(((uintptr_t)L_7)); int32_t L_8 = ___startIndex1; if (((int32_t)((int32_t)L_8%(int32_t)2))) { goto IL_003c; } } { uint8_t* L_9 = V_0; int32_t L_10 = *((int16_t*)L_9); return (int16_t)L_10; } IL_003c: { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if (!L_11) { goto IL_004e; } } { uint8_t* L_12 = V_0; int32_t L_13 = *((uint8_t*)L_12); uint8_t* L_14 = V_0; int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1))); return (((int16_t)((int16_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))))); } IL_004e: { uint8_t* L_16 = V_0; int32_t L_17 = *((uint8_t*)L_16); uint8_t* L_18 = V_0; int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)1))); return (((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_17<<(int32_t)8))|(int32_t)L_19))))); } } // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))); uint8_t* L_7 = V_1; V_0 = (uint8_t*)(((uintptr_t)L_7)); int32_t L_8 = ___startIndex1; if (((int32_t)((int32_t)L_8%(int32_t)4))) { goto IL_003c; } } { uint8_t* L_9 = V_0; int32_t L_10 = *((int32_t*)L_9); return L_10; } IL_003c: { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if (!L_11) { goto IL_005d; } } { uint8_t* L_12 = V_0; int32_t L_13 = *((uint8_t*)L_12); uint8_t* L_14 = V_0; int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1))); uint8_t* L_16 = V_0; int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2))); uint8_t* L_18 = V_0; int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3))); return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24))))); } IL_005d: { uint8_t* L_20 = V_0; int32_t L_21 = *((uint8_t*)L_20); uint8_t* L_22 = V_0; int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)1))); uint8_t* L_24 = V_0; int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)2))); uint8_t* L_26 = V_0; int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)3))); return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)8))))|(int32_t)L_27)); } } // System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6))); uint8_t* L_7 = V_1; V_0 = (uint8_t*)(((uintptr_t)L_7)); int32_t L_8 = ___startIndex1; if (((int32_t)((int32_t)L_8%(int32_t)8))) { goto IL_003c; } } { uint8_t* L_9 = V_0; int64_t L_10 = *((int64_t*)L_9); return L_10; } IL_003c: { IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); bool L_11 = ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->get_IsLittleEndian_0(); if (!L_11) { goto IL_0080; } } { uint8_t* L_12 = V_0; int32_t L_13 = *((uint8_t*)L_12); uint8_t* L_14 = V_0; int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1))); uint8_t* L_16 = V_0; int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2))); uint8_t* L_18 = V_0; int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3))); uint8_t* L_20 = V_0; int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4))); uint8_t* L_22 = V_0; int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)5))); uint8_t* L_24 = V_0; int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)6))); uint8_t* L_26 = V_0; int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)7))); V_2 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_27<<(int32_t)((int32_t)24))))); int32_t L_28 = V_2; return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24)))))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_28)))<<(int32_t)((int32_t)32))))); } IL_0080: { uint8_t* L_29 = V_0; int32_t L_30 = *((uint8_t*)L_29); uint8_t* L_31 = V_0; int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1))); uint8_t* L_33 = V_0; int32_t L_34 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)2))); uint8_t* L_35 = V_0; int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)3))); V_3 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_30<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_32<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_34<<(int32_t)8))))|(int32_t)L_36)); uint8_t* L_37 = V_0; int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4))); uint8_t* L_39 = V_0; int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)5))); uint8_t* L_41 = V_0; int32_t L_42 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_41, (int32_t)6))); uint8_t* L_43 = V_0; int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)7))); int32_t L_45 = V_3; return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_38<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_40<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_42<<(int32_t)8))))|(int32_t)L_44))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_45)))<<(int32_t)((int32_t)32))))); } } // System.UInt16 System.BitConverter::ToUInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToUInt16_m8D6CAA71ACA3A50B5481B836E51FC8D26C14ED90_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int16_t L_7 = BitConverter_ToInt16_mBFC7B476188DF611E2B21C89693258F6A4969CEA(L_5, L_6, /*hidden argument*/NULL); return (uint16_t)(((int32_t)((uint16_t)L_7))); } } // System.UInt32 System.BitConverter::ToUInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToUInt32_mD6A3C2F4BA020691B99FABF863F6FFF6A456FF59_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int32_t L_7 = BitConverter_ToInt32_m900A016CA90064569D8DF6D9195044C9C106B391(L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.UInt64 System.BitConverter::ToUInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToUInt64_m2AB7FBC373C5A2DEB276DDF00289A69C80A84451_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m4A3AE1D7B45B9E589828B500895B18D7E6A2740E(((int32_t)15), /*hidden argument*/NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; NullCheck(L_2); if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))))))) { goto IL_001b; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m2C56CC1BC1245743344B9236D279FC9315896F51(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL); } IL_001b: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_mC79DA77CCE9B239510DDD4C46043FC216B2A5B84(5, /*hidden argument*/NULL); } IL_0029: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___value0; int32_t L_6 = ___startIndex1; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); int64_t L_7 = BitConverter_ToInt64_m28987106F93DB8C163FD4E740B4FEA405CC8A7FA(L_5, L_6, /*hidden argument*/NULL); return L_7; } } // System.Char System.BitConverter::GetHexValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3 (int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = ___i0; if ((((int32_t)L_0) >= ((int32_t)((int32_t)10)))) { goto IL_000b; } } { int32_t L_1 = ___i0; return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)48)))))); } IL_000b: { int32_t L_2 = ___i0; return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)10))), (int32_t)((int32_t)65)))))); } } // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; uint8_t V_4 = 0x0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001c; } } { int32_t L_3 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))) { goto IL_0031; } } { int32_t L_5 = ___startIndex1; if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0031; } } IL_001c: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var); } IL_0031: { int32_t L_8 = ___length2; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_004a; } } { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var); } IL_004a: { int32_t L_11 = ___startIndex1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___value0; NullCheck(L_12); int32_t L_13 = ___length2; if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), (int32_t)L_13))))) { goto IL_0062; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var); } IL_0062: { int32_t L_16 = ___length2; if (L_16) { goto IL_006b; } } { String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_17; } IL_006b: { int32_t L_18 = ___length2; if ((((int32_t)L_18) <= ((int32_t)((int32_t)715827882)))) { goto IL_009b; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19; int32_t L_21 = ((int32_t)715827882); RuntimeObject * L_22 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_21); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22); String_t* L_23 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral532E128909AB556DD052ED48219FF87E1482B7E8, L_20, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_24 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_24, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211_RuntimeMethod_var); } IL_009b: { int32_t L_25 = ___length2; V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)3)); int32_t L_26 = V_0; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_26); V_1 = L_27; V_2 = 0; int32_t L_28 = ___startIndex1; V_3 = L_28; V_2 = 0; goto IL_00de; } IL_00ae: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___value0; int32_t L_30 = V_3; int32_t L_31 = L_30; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); NullCheck(L_29); int32_t L_32 = L_31; uint8_t L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); V_4 = L_33; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_34 = V_1; int32_t L_35 = V_2; uint8_t L_36 = V_4; IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); Il2CppChar L_37 = BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3(((int32_t)((int32_t)L_36/(int32_t)((int32_t)16))), /*hidden argument*/NULL); NullCheck(L_34); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (Il2CppChar)L_37); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_38 = V_1; int32_t L_39 = V_2; uint8_t L_40 = V_4; Il2CppChar L_41 = BitConverter_GetHexValue_mDB37DC2A53B2CFD01D8FE51C0CF7B8211E8FBBE3(((int32_t)((int32_t)L_40%(int32_t)((int32_t)16))), /*hidden argument*/NULL); NullCheck(L_38); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))), (Il2CppChar)L_41); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_42 = V_1; int32_t L_43 = V_2; NullCheck(L_42); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)2))), (Il2CppChar)((int32_t)45)); int32_t L_44 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)3)); } IL_00de: { int32_t L_45 = V_2; int32_t L_46 = V_0; if ((((int32_t)L_45) < ((int32_t)L_46))) { goto IL_00ae; } } { CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_47 = V_1; CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_48 = V_1; NullCheck(L_48); String_t* L_49 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_47, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (int32_t)1)), /*hidden argument*/NULL); return L_49; } } // System.String System.BitConverter::ToString(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, BitConverter_ToString_m6201360C9B19FD17437AA1C88AF1743DCF3442E3_RuntimeMethod_var); } IL_000e: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___value0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___value0; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var); String_t* L_4 = BitConverter_ToString_mE205625C9473E721CCB9D53D113874A4C0E31211(L_2, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), /*hidden argument*/NULL); return L_4; } } // System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_mE511B45BE25B2E1D22059420D16055CBA7E1EAA4 (double ___value0, const RuntimeMethod* method) { { int64_t L_0 = *((int64_t*)(((uintptr_t)(&___value0)))); return L_0; } } // System.Double System.BitConverter::Int64BitsToDouble(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_Int64BitsToDouble_m9BCBEBF8C6E35A37E6A233B11F97164D9F0BF694 (int64_t ___value0, const RuntimeMethod* method) { { double L_0 = *((double*)(((uintptr_t)(&___value0)))); return L_0; } } // System.Void System.BitConverter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (BitConverter__cctor_m96EE9A8F92BEA2B6D94CE6AD09A88BF603E134E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = BitConverter_AmILittleEndian_m905B5F8C9D11AF2B785413526A5A1C627735ACC8(/*hidden argument*/NULL); ((BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_tD5DF1CB5C5A5CB087D90BD881C8E75A332E546EE_il2cpp_TypeInfo_var))->set_IsLittleEndian_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.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737 (bool* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_0006; } } { return 0; } IL_0006: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_GetHashCode_m92C426D44100ED098FEECC96A743C3CB92DFF737(_thisAdjusted, method); } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301 (bool* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_000a; } } { return _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD; } IL_000a: { return _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_ToString_m62D1EFD5F6D5F6B6AF0D14A07BF5741C94413301(_thisAdjusted, method); } // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_000a; } } { return _stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD; } IL_000a: { return _stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_ToString_m3648A6DE851336A90E914283E247188B8AA664BF(_thisAdjusted, ___provider0, method); } // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject * L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(bool*)((bool*)UnBox(L_2, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7(_thisAdjusted, ___obj0, method); } // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060 (bool* __this, bool ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060_AdjustorThunk (RuntimeObject * __this, bool ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_Equals_mD6223639457331BC16211ED4772C5927668DC060(_thisAdjusted, ___obj0, method); } // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD6DC02C9D8E4C868B5A707AFF489D319C7474F1B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_RuntimeMethod_var); } IL_001d: { int32_t L_4 = *((uint8_t*)__this); RuntimeObject * L_5 = ___obj0; if ((!(((uint32_t)L_4) == ((uint32_t)((*(bool*)((bool*)UnBox(L_5, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))))))) { goto IL_0029; } } { return 0; } IL_0029: { int32_t L_6 = *((uint8_t*)__this); if (L_6) { goto IL_002f; } } { return (-1); } IL_002f: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_CompareTo_m0EAC2794983417EAB0C9D8A09209BEEB26F4FC68(_thisAdjusted, ___obj0, method); } // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911 (bool* __this, bool ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___value0; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_0007; } } { return 0; } IL_0007: { int32_t L_2 = *((uint8_t*)__this); if (L_2) { goto IL_000d; } } { return (-1); } IL_000d: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_CompareTo_m0646A70387C90DAF7C85AF4234879E31E4422911(_thisAdjusted, ___value0, method); } // System.Boolean System.Boolean::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { String_t* L_0 = ___value0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var); } IL_000e: { V_0 = (bool)0; String_t* L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var); bool L_3 = Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61(L_2, (bool*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_002a; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2C1B23E451F9B7284192F8746A59CBEFB5F8470A, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_5 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Boolean_Parse_m82CC57BC939797529A5CC485B6C26E8CE67A646F_RuntimeMethod_var); } IL_002a: { bool L_6 = V_0; return L_6; } } // System.Boolean System.Boolean::TryParse(System.String,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_TryParse_m5EA8C5E47A3BF0223FD368503B36206256937A61_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool* L_0 = ___result1; *((int8_t*)L_0) = (int8_t)0; String_t* L_1 = ___value0; if (L_1) { goto IL_0008; } } { return (bool)0; } IL_0008: { String_t* L_2 = ___value0; NullCheck(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612); bool L_3 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612, L_2, 5, /*hidden argument*/NULL); if (!L_3) { goto IL_001b; } } { bool* L_4 = ___result1; *((int8_t*)L_4) = (int8_t)1; return (bool)1; } IL_001b: { String_t* L_5 = ___value0; NullCheck(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD); bool L_6 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD, L_5, 5, /*hidden argument*/NULL); if (!L_6) { goto IL_002e; } } { bool* L_7 = ___result1; *((int8_t*)L_7) = (int8_t)0; return (bool)1; } IL_002e: { String_t* L_8 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var); String_t* L_9 = Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C(L_8, /*hidden argument*/NULL); ___value0 = L_9; String_t* L_10 = ___value0; NullCheck(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612); bool L_11 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612, L_10, 5, /*hidden argument*/NULL); if (!L_11) { goto IL_0049; } } { bool* L_12 = ___result1; *((int8_t*)L_12) = (int8_t)1; return (bool)1; } IL_0049: { String_t* L_13 = ___value0; NullCheck(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD); bool L_14 = String_Equals_mB42D01789A129C548840C18E9065ACF9412F1F84(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD, L_13, 5, /*hidden argument*/NULL); if (!L_14) { goto IL_005c; } } { bool* L_15 = ___result1; *((int8_t*)L_15) = (int8_t)0; return (bool)1; } IL_005c: { return (bool)0; } } // System.String System.Boolean::TrimWhiteSpaceAndNull(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_TrimWhiteSpaceAndNull_mD8E9241675F8550855A9C956B39EDCE5167E381C_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; { V_0 = 0; String_t* L_0 = ___value0; NullCheck(L_0); int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); V_2 = 0; goto IL_002b; } IL_000f: { String_t* L_2 = ___value0; int32_t L_3 = V_0; NullCheck(L_2); Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_5 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_0027; } } { String_t* L_6 = ___value0; int32_t L_7 = V_0; NullCheck(L_6); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL); Il2CppChar L_9 = V_2; if ((!(((uint32_t)L_8) == ((uint32_t)L_9)))) { goto IL_0052; } } IL_0027: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_002b: { int32_t L_11 = V_0; String_t* L_12 = ___value0; NullCheck(L_12); int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL); if ((((int32_t)L_11) < ((int32_t)L_13))) { goto IL_000f; } } { goto IL_0052; } IL_0036: { String_t* L_14 = ___value0; int32_t L_15 = V_1; NullCheck(L_14); Il2CppChar L_16 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, L_15, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_17 = Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_004e; } } { String_t* L_18 = ___value0; int32_t L_19 = V_1; NullCheck(L_18); Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, L_19, /*hidden argument*/NULL); Il2CppChar L_21 = V_2; if ((!(((uint32_t)L_20) == ((uint32_t)L_21)))) { goto IL_0056; } } IL_004e: { int32_t L_22 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)); } IL_0052: { int32_t L_23 = V_1; int32_t L_24 = V_0; if ((((int32_t)L_23) >= ((int32_t)L_24))) { goto IL_0036; } } IL_0056: { String_t* L_25 = ___value0; int32_t L_26 = V_0; int32_t L_27 = V_1; int32_t L_28 = V_0; NullCheck(L_25); String_t* L_29 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_25, L_26, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), (int32_t)1)), /*hidden argument*/NULL); return L_29; } } // System.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88 (bool* __this, const RuntimeMethod* method) { { return (int32_t)(3); } } IL2CPP_EXTERN_C int32_t Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_GetTypeCode_mDA98DB5F00159689F46329C57C3A888F7DB37B88(_thisAdjusted, method); } // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (bool)L_0; } } IL2CPP_EXTERN_C bool Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToBoolean_m0DD28BDDA1CB08D62A712D03811E18AEA4E2624C(_thisAdjusted, ___provider0, method); } // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_RuntimeMethod_var); } } IL2CPP_EXTERN_C Il2CppChar Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToChar_mE18F3277483F7811F304D4E99EA7E360F9118355(_thisAdjusted, ___provider0, method); } // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_mE5314E3F9BD2A1FB38C2E8F91065A515DB980349((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToSByte_mAC032534462E0AD198BA7906416A23E4112CC6EC(_thisAdjusted, ___provider0, method); } // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_1 = Convert_ToByte_m2F75DB84C61D7D1D64393FD5756A9C9DE04FF716((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToByte_mFF4270F494313DA6CC0147DDC3E67B109E3F772E(_thisAdjusted, ___provider0, method); } // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_mE5AC67CF54A1DC058F4FF94444E2BED13D4E41A1((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToInt16_m727A01D32EC90D90318D6C6B06D8AC13C5AD18A9(_thisAdjusted, ___provider0, method); } // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_mE5DBE88FC67DB81359A27BEC9BC61EE1C4816F7E((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToUInt16_mC928F043B4D8431286CF7AE89DAFAA2FFC51C588(_thisAdjusted, ___provider0, method); } // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m39901AE09C5431063E0EDBD286948E875E747B66((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToInt32_m5CEA3620A1F02A3934D7EC726B545728E793FE50(_thisAdjusted, ___provider0, method); } // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_m0A1093A798B8004A58C7905A23886132BDC347ED((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToUInt32_m4DBC7B3247CEFB6A9C6D78CB26B3DE782BBC85DF(_thisAdjusted, ___provider0, method); } // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_mBF88328347C2C2FC83315E9B950ADD1CF473559E((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToInt64_m1E2848D92D1AB763FB42134E14C03BE7E8AF09FD(_thisAdjusted, ___provider0, method); } // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_m46350FEF6029990034BDFAB1FBC4F25EAF47B53B((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToUInt64_mBBF3682359CE16072F3107ABCF86D3A5C78F1E05(_thisAdjusted, ___provider0, method); } // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_1 = Convert_ToSingle_m8C04F9D9C974F7AD8B41E87B5419FFA9EB9C88E7((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C float Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToSingle_m97A3DC1A7593925D02E2DDCD7C5118775BB9EF2E(_thisAdjusted, ___provider0, method); } // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); double L_1 = Convert_ToDouble_mF6258103D74509D52040BECC84FB241B09B6CC62((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C double Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToDouble_m67354865C502874D39D7BD50195607060ACF6198(_thisAdjusted, ___provider0, method); } // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_mF2C5F32DF4C8DC0938C223031CDDF4AC1E08A0CC((bool)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToDecimal_mB0D07724C706E6146346316DB42F9ED81880546D(_thisAdjusted, ___provider0, method); } // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_RuntimeMethod_var); } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToDateTime_m705685E35BE852078645876E3ABE7D96C32D587B(_thisAdjusted, ___provider0, method); } // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ((bool)L_0); RuntimeObject * L_2 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_1); Type_t * L_3 = ___type0; RuntimeObject* L_4 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject * Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { bool* _thisAdjusted = reinterpret_cast<bool*>(__this + 1); return Boolean_System_IConvertible_ToType_m34626980346FCE43AD156FDE435C29670B899220(_thisAdjusted, ___type0, ___provider1, method); } // System.Void System.Boolean::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Boolean__cctor_mD84E33DC70FD9D37BAEA0AEB64150B59FB2C5852_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))->set_TrueString_5(_stringLiteral88B33E4E12F75AC8BF792AEBDE41F1A090F3A612); ((Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var))->set_FalseString_6(_stringLiteral97CDBDC7FEFF827EFB082A6B6DD2727237CD49FD); 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.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method) { typedef bool (*Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t); using namespace il2cpp::icalls; return ((Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2_ftn)mscorlib::System::Buffer::InternalBlockCopy) (___src0, ___srcOffsetBytes1, ___dst2, ___dstOffsetBytes3, ___byteCount4); } // System.Int32 System.Buffer::IndexOfByte(System.Byte*,System.Byte,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_m04E6E27CA0059C3D1F07DF6FEE96517B0A795EB8 (uint8_t* ___src0, uint8_t ___value1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint32_t V_1 = 0; uint32_t V_2 = 0; uint32_t V_3 = 0; int32_t V_4 = 0; { uint8_t* L_0 = ___src0; int32_t L_1 = ___index2; V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1)); goto IL_0021; } IL_0006: { int32_t L_2 = ___count3; if (L_2) { goto IL_000b; } } { return (-1); } IL_000b: { uint8_t* L_3 = V_0; int32_t L_4 = *((uint8_t*)L_3); uint8_t L_5 = ___value1; if ((!(((uint32_t)L_4) == ((uint32_t)L_5)))) { goto IL_0018; } } { uint8_t* L_6 = V_0; uint8_t* L_7 = ___src0; return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_6, (intptr_t)L_7))/(int32_t)1)))))))); } IL_0018: { int32_t L_8 = ___count3; ___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); uint8_t* L_9 = V_0; V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1)); } IL_0021: { uint8_t* L_10 = V_0; if (((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_10)))&(int32_t)3))) { goto IL_0006; } } { uint8_t L_11 = ___value1; uint8_t L_12 = ___value1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_11<<(int32_t)8)), (int32_t)L_12)); uint32_t L_13 = V_1; uint32_t L_14 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_13<<(int32_t)((int32_t)16))), (int32_t)L_14)); goto IL_0096; } IL_0036: { uint8_t* L_15 = V_0; int32_t L_16 = *((uint32_t*)L_15); V_2 = L_16; uint32_t L_17 = V_2; uint32_t L_18 = V_1; V_2 = ((int32_t)((int32_t)L_17^(int32_t)L_18)); uint32_t L_19 = V_2; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)2130640639), (int32_t)L_19)); uint32_t L_20 = V_2; V_2 = ((int32_t)((int32_t)L_20^(int32_t)(-1))); uint32_t L_21 = V_2; uint32_t L_22 = V_3; V_2 = ((int32_t)((int32_t)L_21^(int32_t)L_22)); uint32_t L_23 = V_2; V_2 = ((int32_t)((int32_t)L_23&(int32_t)((int32_t)-2130640640))); uint32_t L_24 = V_2; if (!L_24) { goto IL_008d; } } { uint8_t* L_25 = V_0; uint8_t* L_26 = ___src0; V_4 = (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_25, (intptr_t)L_26))/(int32_t)1)))))))); uint8_t* L_27 = V_0; int32_t L_28 = *((uint8_t*)L_27); uint8_t L_29 = ___value1; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { goto IL_0069; } } { int32_t L_30 = V_4; return L_30; } IL_0069: { uint8_t* L_31 = V_0; int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1))); uint8_t L_33 = ___value1; if ((!(((uint32_t)L_32) == ((uint32_t)L_33)))) { goto IL_0075; } } { int32_t L_34 = V_4; return ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_0075: { uint8_t* L_35 = V_0; int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2))); uint8_t L_37 = ___value1; if ((!(((uint32_t)L_36) == ((uint32_t)L_37)))) { goto IL_0081; } } { int32_t L_38 = V_4; return ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)2)); } IL_0081: { uint8_t* L_39 = V_0; int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)3))); uint8_t L_41 = ___value1; if ((!(((uint32_t)L_40) == ((uint32_t)L_41)))) { goto IL_008d; } } { int32_t L_42 = V_4; return ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3)); } IL_008d: { int32_t L_43 = ___count3; ___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)4)); uint8_t* L_44 = V_0; V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (int32_t)4)); } IL_0096: { int32_t L_45 = ___count3; if ((((int32_t)L_45) > ((int32_t)3))) { goto IL_0036; } } { goto IL_00b2; } IL_009c: { uint8_t* L_46 = V_0; int32_t L_47 = *((uint8_t*)L_46); uint8_t L_48 = ___value1; if ((!(((uint32_t)L_47) == ((uint32_t)L_48)))) { goto IL_00a9; } } { uint8_t* L_49 = V_0; uint8_t* L_50 = ___src0; return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_49, (intptr_t)L_50))/(int32_t)1)))))))); } IL_00a9: { int32_t L_51 = ___count3; ___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1)); uint8_t* L_52 = V_0; V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, (int32_t)1)); } IL_00b2: { int32_t L_53 = ___count3; if ((((int32_t)L_53) > ((int32_t)0))) { goto IL_009c; } } { return (-1); } } // System.Int32 System.Buffer::_ByteLength(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34 (RuntimeArray * ___array0, const RuntimeMethod* method) { typedef int32_t (*Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34_ftn) (RuntimeArray *); using namespace il2cpp::icalls; return ((Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34_ftn)mscorlib::System::Buffer::_ByteLength) (___array0); } // System.Void System.Buffer::ZeroMemory(System.Byte*,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_ZeroMemory_mAB17C8C19C2C8DD1F10E232FAE69C2FCBC31CCAC (uint8_t* ___src0, int64_t ___len1, const RuntimeMethod* method) { { goto IL_0008; } IL_0002: { uint8_t* L_0 = ___src0; int64_t L_1 = ___len1; *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)L_1))))) = (int8_t)0; } IL_0008: { int64_t L_2 = ___len1; int64_t L_3 = L_2; ___len1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)(((int64_t)((int64_t)1))))); if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)0)))))) { goto IL_0002; } } { return; } } // System.Void System.Buffer::Memcpy(System.Byte[],System.Int32,System.Byte*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_mDB0DE0234F1410CA74D01118A783FFB927B73354 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dest0, int32_t ___destIndex1, uint8_t* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method) { uint8_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; { int32_t L_0 = ___len4; if (L_0) { goto IL_0005; } } { return; } IL_0005: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___dest0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1; V_1 = L_2; if (!L_2) { goto IL_000f; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1; NullCheck(L_3); if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0014; } } IL_000f: { V_0 = (uint8_t*)(((uintptr_t)0)); goto IL_001d; } IL_0014: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1; NullCheck(L_4); V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))))); } IL_001d: { uint8_t* L_5 = V_0; int32_t L_6 = ___destIndex1; uint8_t* L_7 = ___src2; int32_t L_8 = ___srcIndex3; int32_t L_9 = ___len4; Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL); V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; return; } } // System.Void System.Buffer::Memcpy(System.Byte*,System.Int32,System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m440DCCE8D0D13779D26E7B41618066CA98F4DEF3 (uint8_t* ___pDest0, int32_t ___destIndex1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method) { uint8_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; { int32_t L_0 = ___len4; if (L_0) { goto IL_0005; } } { return; } IL_0005: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___src2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = L_1; V_1 = L_2; if (!L_2) { goto IL_000f; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_1; NullCheck(L_3); if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0014; } } IL_000f: { V_0 = (uint8_t*)(((uintptr_t)0)); goto IL_001d; } IL_0014: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_1; NullCheck(L_4); V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))))); } IL_001d: { uint8_t* L_5 = ___pDest0; int32_t L_6 = ___destIndex1; uint8_t* L_7 = V_0; int32_t L_8 = ___srcIndex3; int32_t L_9 = ___len4; Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL); V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; return; } } // System.Int32 System.Buffer::ByteLength(System.Array) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8 (RuntimeArray * ___array0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; int32_t G_B3_0 = 0; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; int32_t L_3 = Buffer__ByteLength_m35D3BB15D47BB68204C272415AB08FB4B290CA34(L_2, /*hidden argument*/NULL); int32_t L_4 = L_3; G_B3_0 = L_4; if ((((int32_t)L_4) >= ((int32_t)0))) { G_B4_0 = L_4; goto IL_0028; } } { String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteralB3EEB66EC519D8B1B40897F0EE3BDFC97D6DA28B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8_RuntimeMethod_var); } IL_0028: { return G_B4_0; } } // System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___src0; 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, _stringLiteralF27FEDE2220BCD326AEE3E86DDFD4EBD0FE58CB9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___dst2; if (L_2) { goto IL_001c; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, _stringLiteralA7F719BF74E49F78DA1A4EDFED258B184A7054FF, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_001c: { int32_t L_4 = ___srcOffset1; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0035; } } { String_t* L_5 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteralCA9DBD57FE93DBA1A159E859C91C3D45DCCEA5E0, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_0035: { int32_t L_7 = ___dstOffset3; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_004e; } } { String_t* L_8 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, _stringLiteralDEB3608672319EF258C05F3590E2E46E95BC5F1D, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_004e: { int32_t L_10 = ___count4; if ((((int32_t)L_10) >= ((int32_t)0))) { goto IL_0068; } } { String_t* L_11 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_0068: { RuntimeArray * L_13 = ___src0; int32_t L_14 = ___srcOffset1; RuntimeArray * L_15 = ___dst2; int32_t L_16 = ___dstOffset3; int32_t L_17 = ___count4; bool L_18 = Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2(L_13, L_14, L_15, L_16, L_17, /*hidden argument*/NULL); if (L_18) { goto IL_009d; } } { int32_t L_19 = ___srcOffset1; RuntimeArray * L_20 = ___src0; int32_t L_21 = Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8(L_20, /*hidden argument*/NULL); int32_t L_22 = ___count4; if ((((int32_t)L_19) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22))))) { goto IL_008d; } } { int32_t L_23 = ___dstOffset3; RuntimeArray * L_24 = ___dst2; int32_t L_25 = Buffer_ByteLength_m32E578C5A2F2E27327E83B6F9D3EB404F29656E8(L_24, /*hidden argument*/NULL); int32_t L_26 = ___count4; if ((((int32_t)L_23) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26))))) { goto IL_009d; } } IL_008d: { String_t* L_27 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_28, L_27, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, NULL, Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353_RuntimeMethod_var); } IL_009d: { return; } } // System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method) { { goto IL_003c; } IL_0002: { uint8_t* L_0 = ___dest0; uint8_t* L_1 = ___src1; int32_t L_2 = *((int32_t*)L_1); *((int32_t*)L_0) = (int32_t)L_2; uint8_t* L_3 = ___dest0; uint8_t* L_4 = ___src1; int32_t L_5 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)4))); *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)4))) = (int32_t)L_5; uint8_t* L_6 = ___dest0; uint8_t* L_7 = ___src1; int32_t L_8 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))))); *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))))) = (int32_t)L_8; uint8_t* L_9 = ___dest0; uint8_t* L_10 = ___src1; int32_t L_11 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4))))); *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4))))) = (int32_t)L_11; uint8_t* L_12 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)((int32_t)16))); uint8_t* L_13 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)((int32_t)16))); int32_t L_14 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)16))); } IL_003c: { int32_t L_15 = ___size2; if ((((int32_t)L_15) >= ((int32_t)((int32_t)16)))) { goto IL_0002; } } { goto IL_0056; } IL_0043: { uint8_t* L_16 = ___dest0; uint8_t* L_17 = ___src1; int32_t L_18 = *((int32_t*)L_17); *((int32_t*)L_16) = (int32_t)L_18; uint8_t* L_19 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)4)); uint8_t* L_20 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4)); int32_t L_21 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)4)); } IL_0056: { int32_t L_22 = ___size2; if ((((int32_t)L_22) >= ((int32_t)4))) { goto IL_0043; } } { goto IL_006f; } IL_005c: { uint8_t* L_23 = ___dest0; uint8_t* L_24 = ___src1; int32_t L_25 = *((uint8_t*)L_24); *((int8_t*)L_23) = (int8_t)L_25; uint8_t* L_26 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)1)); uint8_t* L_27 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (int32_t)1)); int32_t L_28 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1)); } IL_006f: { int32_t L_29 = ___size2; if ((((int32_t)L_29) > ((int32_t)0))) { goto IL_005c; } } { return; } } // System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method) { { goto IL_0039; } IL_0002: { uint8_t* L_0 = ___dest0; uint8_t* L_1 = ___src1; int32_t L_2 = *((int16_t*)L_1); *((int16_t*)L_0) = (int16_t)L_2; uint8_t* L_3 = ___dest0; uint8_t* L_4 = ___src1; int32_t L_5 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)2))); *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)2))) = (int16_t)L_5; uint8_t* L_6 = ___dest0; uint8_t* L_7 = ___src1; int32_t L_8 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2))))); *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2))))) = (int16_t)L_8; uint8_t* L_9 = ___dest0; uint8_t* L_10 = ___src1; int32_t L_11 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2))))); *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2))))) = (int16_t)L_11; uint8_t* L_12 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)8)); uint8_t* L_13 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)8)); int32_t L_14 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)8)); } IL_0039: { int32_t L_15 = ___size2; if ((((int32_t)L_15) >= ((int32_t)8))) { goto IL_0002; } } { goto IL_0052; } IL_003f: { uint8_t* L_16 = ___dest0; uint8_t* L_17 = ___src1; int32_t L_18 = *((int16_t*)L_17); *((int16_t*)L_16) = (int16_t)L_18; uint8_t* L_19 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2)); uint8_t* L_20 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)2)); int32_t L_21 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)2)); } IL_0052: { int32_t L_22 = ___size2; if ((((int32_t)L_22) >= ((int32_t)2))) { goto IL_003f; } } { int32_t L_23 = ___size2; if ((((int32_t)L_23) <= ((int32_t)0))) { goto IL_005e; } } { uint8_t* L_24 = ___dest0; uint8_t* L_25 = ___src1; int32_t L_26 = *((uint8_t*)L_25); *((int8_t*)L_24) = (int8_t)L_26; } IL_005e: { return; } } // System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method) { { goto IL_004d; } IL_0002: { uint8_t* L_0 = ___dest0; uint8_t* L_1 = ___src1; int32_t L_2 = *((uint8_t*)L_1); *((int8_t*)L_0) = (int8_t)L_2; uint8_t* L_3 = ___dest0; uint8_t* L_4 = ___src1; int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)1))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)1))) = (int8_t)L_5; uint8_t* L_6 = ___dest0; uint8_t* L_7 = ___src1; int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)2))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)2))) = (int8_t)L_8; uint8_t* L_9 = ___dest0; uint8_t* L_10 = ___src1; int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)3))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)3))) = (int8_t)L_11; uint8_t* L_12 = ___dest0; uint8_t* L_13 = ___src1; int32_t L_14 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)4))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)4))) = (int8_t)L_14; uint8_t* L_15 = ___dest0; uint8_t* L_16 = ___src1; int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)5))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)5))) = (int8_t)L_17; uint8_t* L_18 = ___dest0; uint8_t* L_19 = ___src1; int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)6))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)6))) = (int8_t)L_20; uint8_t* L_21 = ___dest0; uint8_t* L_22 = ___src1; int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)7))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)7))) = (int8_t)L_23; uint8_t* L_24 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)8)); uint8_t* L_25 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, (int32_t)8)); int32_t L_26 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)8)); } IL_004d: { int32_t L_27 = ___size2; if ((((int32_t)L_27) >= ((int32_t)8))) { goto IL_0002; } } { goto IL_006e; } IL_0053: { uint8_t* L_28 = ___dest0; uint8_t* L_29 = ___src1; int32_t L_30 = *((uint8_t*)L_29); *((int8_t*)L_28) = (int8_t)L_30; uint8_t* L_31 = ___dest0; uint8_t* L_32 = ___src1; int32_t L_33 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)1))); *((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1))) = (int8_t)L_33; uint8_t* L_34 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)2)); uint8_t* L_35 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2)); int32_t L_36 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)2)); } IL_006e: { int32_t L_37 = ___size2; if ((((int32_t)L_37) >= ((int32_t)2))) { goto IL_0053; } } { int32_t L_38 = ___size2; if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_007a; } } { uint8_t* L_39 = ___dest0; uint8_t* L_40 = ___src1; int32_t L_41 = *((uint8_t*)L_40); *((int8_t*)L_39) = (int8_t)L_41; } IL_007a: { return; } } // System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method) { { uint8_t* L_0 = ___dest0; uint8_t* L_1 = ___src1; if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_0)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_1)))))&(int32_t)3))) { goto IL_0073; } } { uint8_t* L_2 = ___dest0; if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_2)))&(int32_t)1))) { goto IL_002c; } } { uint8_t* L_3 = ___src1; if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_3)))&(int32_t)1))) { goto IL_002c; } } { int32_t L_4 = ___size2; if ((((int32_t)L_4) < ((int32_t)1))) { goto IL_002c; } } { uint8_t* L_5 = ___dest0; uint8_t* L_6 = ___src1; int32_t L_7 = *((uint8_t*)L_6); *((int8_t*)L_5) = (int8_t)L_7; uint8_t* L_8 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)1)); uint8_t* L_9 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1)); int32_t L_10 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); } IL_002c: { uint8_t* L_11 = ___dest0; if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_11)))&(int32_t)2))) { goto IL_004f; } } { uint8_t* L_12 = ___src1; if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_12)))&(int32_t)2))) { goto IL_004f; } } { int32_t L_13 = ___size2; if ((((int32_t)L_13) < ((int32_t)2))) { goto IL_004f; } } { uint8_t* L_14 = ___dest0; uint8_t* L_15 = ___src1; int32_t L_16 = *((int16_t*)L_15); *((int16_t*)L_14) = (int16_t)L_16; uint8_t* L_17 = ___dest0; ___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, (int32_t)2)); uint8_t* L_18 = ___src1; ___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)2)); int32_t L_19 = ___size2; ___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)2)); } IL_004f: { uint8_t* L_20 = ___dest0; uint8_t* L_21 = ___src1; if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_20)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_21)))))&(int32_t)1))) { goto IL_0061; } } { uint8_t* L_22 = ___dest0; uint8_t* L_23 = ___src1; int32_t L_24 = ___size2; Buffer_memcpy1_m05CB8A5961029C3F989884D69BE7163043B9A7DF((uint8_t*)(uint8_t*)L_22, (uint8_t*)(uint8_t*)L_23, L_24, /*hidden argument*/NULL); return; } IL_0061: { uint8_t* L_25 = ___dest0; uint8_t* L_26 = ___src1; if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_25)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_26)))))&(int32_t)2))) { goto IL_0073; } } { uint8_t* L_27 = ___dest0; uint8_t* L_28 = ___src1; int32_t L_29 = ___size2; Buffer_memcpy2_mAA37EECC87926D9B7F5CBE42C84A7AA6F2E5306E((uint8_t*)(uint8_t*)L_27, (uint8_t*)(uint8_t*)L_28, L_29, /*hidden argument*/NULL); return; } IL_0073: { uint8_t* L_30 = ___dest0; uint8_t* L_31 = ___src1; int32_t L_32 = ___size2; Buffer_memcpy4_mDA39112959C9161FBC66E893A249B2A7F06EF771((uint8_t*)(uint8_t*)L_30, (uint8_t*)(uint8_t*)L_31, L_32, /*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.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861 (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralDD4F9004C2B0F33E8BB2DA348539883E15A3683A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_RuntimeMethod_var); } IL_001d: { int32_t L_4 = *((uint8_t*)__this); RuntimeObject * L_5 = ___value0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_5, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_CompareTo_mEA497C7EA9BF920C3657300C16B5C0B4475AE861(_thisAdjusted, ___value0, method); } // System.Int32 System.Byte::CompareTo(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___value0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376_AdjustorThunk (RuntimeObject * __this, uint8_t ___value0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_CompareTo_m928FA81F92D3A4D461F22BB4F82CF9D3B19B8376(_thisAdjusted, ___value0, method); } // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject * L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_2, Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF(_thisAdjusted, ___obj0, method); } // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16_AdjustorThunk (RuntimeObject * __this, uint8_t ___obj0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_Equals_m87DDF4363A9B222224EFCA173189FFA2574A7E16(_thisAdjusted, ___obj0, method); } // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0 (uint8_t* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return L_0; } } IL2CPP_EXTERN_C int32_t Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0(_thisAdjusted, method); } // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mEFBC459D6ADA0FED490539CD8731E45AE2D2587C (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___s0; RuntimeObject* L_1 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); uint8_t L_3 = Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26(L_0, 7, L_2, /*hidden argument*/NULL); return L_3; } } // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mF53D7EFF3FC8B040EE675E62145287C7F728F772 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) { { int32_t L_0 = ___style1; NumberFormatInfo_ValidateParseStyleInteger_m5BD1C04C26D5589F0DFA5953294B72E1DDC2B7E3(L_0, /*hidden argument*/NULL); String_t* L_1 = ___s0; int32_t L_2 = ___style1; RuntimeObject* L_3 = ___provider2; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_4 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_3, /*hidden argument*/NULL); uint8_t L_5 = Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26(L_1, L_2, L_4, /*hidden argument*/NULL); return L_5; } } // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * 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 = 0; } IL_0002: try { // begin try (depth: 1) String_t* L_0 = ___s0; int32_t L_1 = ___style1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = ___info2; int32_t L_3 = Number_ParseInt32_mF4B8DA28891C736EAC85641489780C2E91F8AECF(L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_001f; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_000d; throw e; } CATCH_000d: { // begin catch(System.OverflowException) V_1 = ((OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)__exception_local); String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_5 = V_1; OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_6 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_m15CD001EEB2E79D7497E101546B04D9A5520357E(L_6, L_4, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var); } // end catch (depth: 1) IL_001f: { int32_t L_7 = V_0; if ((((int32_t)L_7) < ((int32_t)0))) { goto IL_002b; } } { int32_t L_8 = V_0; if ((((int32_t)L_8) <= ((int32_t)((int32_t)255)))) { goto IL_003b; } } IL_002b: { String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral66A2CA93B4D74A9945AF3335F6FDED9B5261D3B4, /*hidden argument*/NULL); OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D * L_10 = (OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D *)il2cpp_codegen_object_new(OverflowException_tD89571E2350DE06D9DE4AB65ADCA77D607B5693D_il2cpp_TypeInfo_var); OverflowException__ctor_mE1A042FFEBF00B79612E8595B8D49785B357D731(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, Byte_Parse_m203BD807DCAAE15F0B382060F41F2FAF0DB4FD26_RuntimeMethod_var); } IL_003b: { int32_t L_11 = V_0; return (uint8_t)(((int32_t)((uint8_t)L_11))); } } // System.Boolean System.Byte::TryParse(System.String,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_m4E27B75C7E05A8F2EEF380671471C958A32BB3EA (String_t* ___s0, uint8_t* ___result1, const RuntimeMethod* method) { { String_t* L_0 = ___s0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); uint8_t* L_2 = ___result1; bool L_3 = Byte_TryParse_m4808D6C3380A38298F4BAC84B3300D8E53CD59A1(L_0, 7, L_1, (uint8_t*)L_2, /*hidden argument*/NULL); return L_3; } } // System.Boolean System.Byte::TryParse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_m4808D6C3380A38298F4BAC84B3300D8E53CD59A1 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___info2, uint8_t* ___result3, const RuntimeMethod* method) { int32_t V_0 = 0; { uint8_t* L_0 = ___result3; *((int8_t*)L_0) = (int8_t)0; String_t* L_1 = ___s0; int32_t L_2 = ___style1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = ___info2; bool L_4 = Number_TryParseInt32_mF9FA8AD887CFF429B3C9DCAED08CBF7746DB250D(L_1, L_2, L_3, (int32_t*)(&V_0), /*hidden argument*/NULL); if (L_4) { goto IL_0011; } } { return (bool)0; } IL_0011: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)0))) { goto IL_001d; } } { int32_t L_6 = V_0; if ((((int32_t)L_6) <= ((int32_t)((int32_t)255)))) { goto IL_001f; } } IL_001d: { return (bool)0; } IL_001f: { uint8_t* L_7 = ___result3; int32_t L_8 = V_0; *((int8_t*)L_7) = (int8_t)(((int32_t)((uint8_t)L_8))); return (bool)1; } } // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263 (uint8_t* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_1 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); String_t* L_2 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL); return L_2; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_ToString_m461A53F95948CC32D6646704F994C1F38DD8B263(_thisAdjusted, method); } // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___format0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_get_CurrentInfo_m595DF03E32E0C5B01F1EC45F7264B2BD09BA61C9(/*hidden argument*/NULL); String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_ToString_m5F54DEEC2138DAC5587E05890F97866DB78E75BA(_thisAdjusted, ___format0, method); } // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); RuntimeObject* L_1 = ___provider0; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_2 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_1, /*hidden argument*/NULL); String_t* L_3 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_ToString_m0E74FC03C86ECFB7B6639F93E224A1975374D8F7(_thisAdjusted, ___provider0, method); } // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___format0; RuntimeObject* L_2 = ___provider1; NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * L_3 = NumberFormatInfo_GetInstance_m713D298B436F3765F059FEA6C446F0A6ABF0A89A(L_2, /*hidden argument*/NULL); String_t* L_4 = Number_FormatInt32_mFA98EABDFB7493EF299EB1F0C2B432EAFDFC7984(L_0, L_1, L_3, /*hidden argument*/NULL); return L_4; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25(_thisAdjusted, ___format0, ___provider1, method); } // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724 (uint8_t* __this, const RuntimeMethod* method) { { return (int32_t)(6); } } IL2CPP_EXTERN_C int32_t Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_GetTypeCode_m043F4E13AF78380223AD83B1A86A028020F7A724(_thisAdjusted, method); } // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); bool L_1 = Convert_ToBoolean_mC149366F949BE8368C7C7C7BF3830DE15EA40AA8((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C bool Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToBoolean_m7A4B4EE75F5BEF1E619D61EB8B8D49964F68E500(_thisAdjusted, ___provider0, method); } // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Il2CppChar L_1 = Convert_ToChar_m2FF337FDDCAD52939473E0D7ED3FBFD49A4C2E18((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Il2CppChar Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToChar_m10B7CBD2706B3503DA799C558B07E48092AD78B5(_thisAdjusted, ___provider0, method); } // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_m750B83AD00E06419AEDFE4436323AF85520E3E00((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToSByte_mF66016E0FC4B7E49EEF132E352A2AD32CEF72181(_thisAdjusted, ___provider0, method); } // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (uint8_t)L_0; } } IL2CPP_EXTERN_C uint8_t Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToByte_mB9C96B9313EFCB55DCD45F90D4B2193A050C99F8(_thisAdjusted, ___provider0, method); } // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_mEC55F68B89662CDBC0E1D7D596EC04153B377E60((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToInt16_mFF8D9C92037D2BAF9973403DFCE0D95A5F90A686(_thisAdjusted, ___provider0, method); } // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_m7251119DC9E451E9DB0AB5742769643B7F414876((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToUInt16_m742D9F8DEDF7F193031B2AE5F568F1D719F1A33B(_thisAdjusted, ___provider0, method); } // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m322C82C3EB50E7389A4A38C4601FD08705CA56CF((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToInt32_mF379F3CA75AD006689B24A20D9BF29E012FA4DA4(_thisAdjusted, ___provider0, method); } // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_m4D054799D266E79452F38327EF9D954E0D3F64D3((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToUInt32_m850A894A8D8822D7834231C6377CD436FDD85F1D(_thisAdjusted, ___provider0, method); } // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_m503ADEC363722EBF6A65F9C9F5619150BF00DDCC((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToInt64_m84EED178461E04EC01849311ED380F8138E6BFB9(_thisAdjusted, ___provider0, method); } // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_mAD731FB7078B5949B0592212E8563C59F1CC7172((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToUInt64_mAA94DD1DCFB2238DFB2484891B886A1AF7F5E556(_thisAdjusted, ___provider0, method); } // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); float L_1 = Convert_ToSingle_m0DC063AF835020D49B1FB600753AFCDA0205609A((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C float Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToSingle_mBA74CDD13CAC5DE3EA580A8989F36DCE519AB5A8(_thisAdjusted, ___provider0, method); } // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); double L_1 = Convert_ToDouble_mFB12B649AA6A4D71FDA6BD62D88FD785E2452FA5((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C double Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToDouble_m468227250242DE89E4795473E83201BB9913E3B8(_thisAdjusted, ___provider0, method); } // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_1 = Convert_ToDecimal_m22A4086CA96BD7E3E1D23660A838AFA0F48946D6((uint8_t)L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToDecimal_m413CB4F79476D1E7813978876A02B846D25E8F49(_thisAdjusted, ___provider0, method); } // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7803EE252527503B67D1EEB0DEB252622746CEBD); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_RuntimeMethod_var); } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToDateTime_m361C2521C26807471E37FF74DD007A82C67073AE(_thisAdjusted, ___provider0, method); } // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ((uint8_t)L_0); RuntimeObject * L_2 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_1); Type_t * L_3 = ___type0; RuntimeObject* L_4 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject * Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + 1); return Byte_System_IConvertible_ToType_m4804D3B132B389E28D354551C1E504534DF470C4(_thisAdjusted, ___type0, ___provider1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ByteMatcher::AddMapping(System.TermInfoStrings,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___key0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___val1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___val1; NullCheck(L_0); if ((((RuntimeArray*)L_0)->max_length)) { goto IL_0005; } } { return; } IL_0005: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_map_0(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___val1; int32_t L_3 = ___key0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_4); NullCheck(L_1); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_1, (RuntimeObject *)(RuntimeObject *)L_2, L_5); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get_starts_1(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___val1; NullCheck(L_7); int32_t L_8 = 0; uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); int32_t L_10 = ((int32_t)L_9); RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10); bool L_12 = ((bool)1); RuntimeObject * L_13 = Box(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var, &L_12); NullCheck(L_6); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_6, L_11, L_13); return; } } // System.Void System.ByteMatcher::Sort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_Sort_mCA31E5D0C950F75E86DC00A106D3BB6219D29C4F (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method) { { return; } } // System.Boolean System.ByteMatcher::StartsWith(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_starts_1(); int32_t L_1 = ___c0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_2); NullCheck(L_0); RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3); return (bool)((!(((RuntimeObject*)(RuntimeObject *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.TermInfoStrings System.ByteMatcher::Match(System.Char[],System.Int32,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___offset1, int32_t ___length2, int32_t* ___used3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; 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) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get_map_0(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(23 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_0); NullCheck(L_1); RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_1); V_0 = L_2; } IL_0011: try { // begin try (depth: 1) { goto IL_005d; } IL_0013: { RuntimeObject* L_3 = V_0; NullCheck(L_3); RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_3); V_1 = ((ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)Castclass((RuntimeObject*)L_4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var)); V_2 = 0; goto IL_0053; } IL_0023: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_1; int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7 = L_6; uint8_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___buffer0; int32_t L_10 = ___offset1; int32_t L_11 = V_2; NullCheck(L_9); int32_t L_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); uint16_t L_13 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); if ((!(((uint32_t)L_8) == ((uint32_t)L_13)))) { goto IL_005d; } } IL_002d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = V_1; NullCheck(L_14); int32_t L_15 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), (int32_t)1))) == ((uint32_t)L_15)))) { goto IL_004f; } } IL_0035: { int32_t* L_16 = ___used3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1; NullCheck(L_17); *((int32_t*)L_16) = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_18 = __this->get_map_0(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_1; NullCheck(L_18); RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_18, (RuntimeObject *)(RuntimeObject *)L_19); V_3 = ((*(int32_t*)((int32_t*)UnBox(L_20, TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var)))); IL2CPP_LEAVE(0x81, FINALLY_0067); } IL_004f: { int32_t L_21 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_0053: { int32_t L_22 = V_2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_005d; } } IL_0059: { int32_t L_24 = V_2; int32_t L_25 = ___length2; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_0023; } } IL_005d: { RuntimeObject* L_26 = V_0; 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_0013; } } IL_0065: { IL2CPP_LEAVE(0x7B, FINALLY_0067); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0067; } FINALLY_0067: { // begin finally (depth: 1) { RuntimeObject* L_28 = V_0; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_28, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var)); RuntimeObject* L_29 = V_4; if (!L_29) { goto IL_007a; } } IL_0073: { RuntimeObject* L_30 = V_4; NullCheck(L_30); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_30); } IL_007a: { IL2CPP_END_FINALLY(103) } } // end finally (depth: 1) IL2CPP_CLEANUP(103) { IL2CPP_JUMP_TBL(0x81, IL_0081) IL2CPP_JUMP_TBL(0x7B, IL_007b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_007b: { int32_t* L_31 = ___used3; *((int32_t*)L_31) = (int32_t)0; return (int32_t)((-1)); } IL_0081: { int32_t L_32 = V_3; return L_32; } } // System.Void System.ByteMatcher::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144_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_map_0(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); __this->set_starts_1(L_1); 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.CLRConfig::CheckThrowUnobservedTaskExceptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3 (const RuntimeMethod* method) { typedef bool (*CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3_ftn) (); using namespace il2cpp::icalls; return ((CLRConfig_CheckThrowUnobservedTaskExceptions_m7E817CDBB28FAAD9A350E189D536A84EA75A37D3_ftn)mscorlib::System::CLRConfig::CheckThrowUnobservedTaskExceptions) (); } #ifdef __clang__ #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.CLSCompliantAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m1B684292A6CFF2DDFE4FDE0C45E457C35D03EBC5 (CLSCompliantAttribute_tDC4B8ADF0962285DBD3D530871274CBA04E791E6 * __this, bool ___isCompliant0, const RuntimeMethod* method) { { Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL); bool L_0 = ___isCompliant0; __this->set_m_compliant_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.CannotUnloadAppDomainException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CannotUnloadAppDomainException__ctor_m20216922572B65851E8665AD1294DD90D5402965_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral15C7457958B8D5AA390C0B6241FAEAE45284DF64, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146234347), /*hidden argument*/NULL); return; } } // System.Void System.CannotUnloadAppDomainException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m761AA01762FEFEBECF6C2C159E4E1F57D5130A40 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146234347), /*hidden argument*/NULL); return; } } // System.Void System.CannotUnloadAppDomainException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m9847387CC489DA8E8F9BC39C46DEA3E0D5636236 (CannotUnloadAppDomainException_t77C958E8438F7A43A17AC069D151A50E9F781A89 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)127)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3 (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields*)il2cpp_codegen_static_fields_for(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))->get_categoryForLatin1_3(); Il2CppChar L_1 = ___ch0; NullCheck(L_0); Il2CppChar L_2 = L_1; uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); return (int32_t)(L_3); } } // System.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2 (Il2CppChar* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); int32_t L_1 = *((uint16_t*)__this); return ((int32_t)((int32_t)L_0|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16))))); } } IL2CPP_EXTERN_C int32_t Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_GetHashCode_m9FACC936FF239053F0CF62F1C13EB23347CDE5B2(_thisAdjusted, method); } // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint16_t*)__this); RuntimeObject * L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_2, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8(_thisAdjusted, ___obj0, method); } // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___obj0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_Equals_mF5F094BED35D6DE2ACEAE25F6FEF524B8BD9CBAC(_thisAdjusted, ___obj0, method); } // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject * L_1 = ___value0; if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4803F4151EEE6A399BE429B82E4EDED6135177C0, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_3 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_RuntimeMethod_var); } IL_001d: { int32_t L_4 = *((uint16_t*)__this); RuntimeObject * L_5 = ___value0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_5, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_CompareTo_mDEA952E088BA3A94E70BA1F05E373D69248A9087(_thisAdjusted, ___value0, method); } // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___value0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___value0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_CompareTo_m77A7EE789DCA50E2E67BFF5935438AC61E6A4A8C(_thisAdjusted, ___value0, method); } // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8 (Il2CppChar* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); String_t* L_1 = Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_ToString_mA42A88FEBA41B72D48BB24373E3101B7A91B6FD8(_thisAdjusted, method); } // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); String_t* L_1 = Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_ToString_mF758476EBA0494508C18E74ADF20D7732A872BDE(_thisAdjusted, ___provider0, method); } // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m106C901B4CB0DDEF732750349DAB71498C42C53F (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; String_t* L_1 = String_CreateString_m0E7BBCE09E386877E2B63BF7FA36B956BF221C93(NULL, L_0, 1, /*hidden argument*/NULL); return L_1; } } // System.Char System.Char::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var); } IL_000e: { String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB66A404869995E54B8D48D938E63CA3C7D1C7DCD, /*hidden argument*/NULL); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_5 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var); FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Char_Parse_mD55168D7D07F3B2336263A978C44F1E8F6D965EB_RuntimeMethod_var); } IL_0027: { String_t* L_6 = ___s0; NullCheck(L_6); Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, 0, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsDigit_m29508E0B60DAE54350BDC3DED0D42895DBA4087E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) < ((int32_t)((int32_t)48)))) { goto IL_0016; } } { Il2CppChar L_3 = ___c0; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0016: { return (bool)0; } IL_0018: { Il2CppChar L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_4, /*hidden argument*/NULL); return (bool)((((int32_t)L_5) == ((int32_t)8))? 1 : 0); } } // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6 (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)L_0) <= ((uint32_t)4)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { return (bool)0; } } // System.Boolean System.Char::IsLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsLetter_mCC7F387F16C2DE7C85B6A1A0C5BC75D92A813DFE_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0033; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0027; } } { Il2CppChar L_4 = ___c0; ___c0 = (((int32_t)((uint16_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)32)))))); Il2CppChar L_5 = ___c0; if ((((int32_t)L_5) < ((int32_t)((int32_t)97)))) { goto IL_0025; } } { Il2CppChar L_6 = ___c0; return (bool)((((int32_t)((((int32_t)L_6) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0025: { return (bool)0; } IL_0027: { Il2CppChar L_7 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_8 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_7, /*hidden argument*/NULL); bool L_9 = Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6(L_8, /*hidden argument*/NULL); return L_9; } IL_0033: { Il2CppChar L_10 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_11 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_12 = Char_CheckLetter_mD46EA70277A4CDD51568114D46B5C6CB5E5265B6(L_11, /*hidden argument*/NULL); return L_12; } } // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_001f; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)L_1) < ((int32_t)((int32_t)9)))) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) <= ((int32_t)((int32_t)13)))) { goto IL_001f; } } IL_000f: { Il2CppChar L_3 = ___c0; if ((((int32_t)L_3) == ((int32_t)((int32_t)160)))) { goto IL_001f; } } { Il2CppChar L_4 = ___c0; if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)133))))) { goto IL_0021; } } IL_001f: { return (bool)1; } IL_0021: { return (bool)0; } } // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m8AE1C4157A1E1D8F5022630F4229AB26223BDC6B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsWhiteSpaceLatin1_m13356CA19562C77A7D5FE447D9D0D5FAC2663CE0(L_2, /*hidden argument*/NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); bool L_5 = CharUnicodeInfo_IsWhiteSpace_m746D142522BF05468B06174B025F9049EAE2A780(L_4, /*hidden argument*/NULL); return L_5; } } // System.Boolean System.Char::IsUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsUpper_m94DFB4B66A46914F0588FB7EB42E9BB4A14C3513_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)65)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)90)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_7 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_6, /*hidden argument*/NULL); return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_9 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_8, /*hidden argument*/NULL); return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLower_mE89996F09044C07A991164C7E6A4A9C02867CC90 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsLower_mE89996F09044C07A991164C7E6A4A9C02867CC90_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_7 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_6, /*hidden argument*/NULL); return (bool)((((int32_t)L_7) == ((int32_t)1))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_9 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_8, /*hidden argument*/NULL); return (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0); } } // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571 (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)18)))) <= ((uint32_t)6)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsPunctuation(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsPunctuation_m2F82DCD9CE2CBED034F8CF39E247BBB065935D51_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL); bool L_4 = Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571(L_3, /*hidden argument*/NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_7 = Char_CheckPunctuation_m907FC59526778DAFBD88DCD8B2C262DD73297571(L_6, /*hidden argument*/NULL); return L_7; } } // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9 (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)L_0) > ((uint32_t)4)))) { goto IL_0008; } } { int32_t L_1 = ___uc0; if ((!(((uint32_t)L_1) == ((uint32_t)8)))) { goto IL_000a; } } IL_0008: { return (bool)1; } IL_000a: { return (bool)0; } } // System.Boolean System.Char::IsLetterOrDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_mD7307B3157DFA4EC20D58F68ACB6A9793D3A8292_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL); bool L_4 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_3, /*hidden argument*/NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_7 = Char_CheckLetterOrDigit_m6494ECB3F3B19DC41364285D1E12B83BC0132CB9(L_6, /*hidden argument*/NULL); return L_7; } } // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture1; 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, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02_RuntimeMethod_var); } IL_000e: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture1; NullCheck(L_2); TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_3 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2); Il2CppChar L_4 = ___c0; NullCheck(L_3); Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_3, L_4); return L_5; } } // System.Char System.Char::ToUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToUpper_m5D0AC7F9601D2981E2BCC8710BED485D804CE4DA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); Il2CppChar L_2 = Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Char::ToUpperInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToUpperInvariant_m2FF95DAB0D20E1EB1E34ECE24F85253269017915_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); Il2CppChar L_2 = Char_ToUpper_m7DB88D6BD4EB66188E540B0BF985DE410B660F02(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160 (Il2CppChar ___c0, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture1; 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, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160_RuntimeMethod_var); } IL_000e: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture1; NullCheck(L_2); TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_3 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2); Il2CppChar L_4 = ___c0; NullCheck(L_3); Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_3, L_4); return L_5; } } // System.Char System.Char::ToLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_mEC53192820FB75E0714C1C874F6BC1E89BDBBC74 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToLower_mEC53192820FB75E0714C1C874F6BC1E89BDBBC74_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); Il2CppChar L_2 = Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Char::ToLowerInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ToLowerInvariant_m691DAE5E85A00BC3A653CB4F3C0045BF1528641D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); Il2CppChar L_2 = Char_ToLower_m10AA9F9260876F97230F7BAA4C070AD23ABBC160(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D (Il2CppChar* __this, const RuntimeMethod* method) { { return (int32_t)(4); } } IL2CPP_EXTERN_C int32_t Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_GetTypeCode_m7A1E2062075E3B10C48060D3CB572D7A753B907D(_thisAdjusted, method); } // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralB76FF4906F33C2DD97DDD929B9662BA8CAC6174C); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_RuntimeMethod_var); } } IL2CPP_EXTERN_C bool Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToBoolean_m4B3E7F71862B0AA10F450EEBA622EA1DE2C11777(_thisAdjusted, ___provider0, method); } // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); return L_0; } } IL2CPP_EXTERN_C Il2CppChar Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToChar_mFC5D9E072E60CB2493F51AD5230291F847673562(_thisAdjusted, ___provider0, method); } // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int8_t L_1 = Convert_ToSByte_m0D0A382E0BFF2DAE7019CAB2F6309EB48EFFFD94(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToSByte_m1D979640A4CCE8FEEFBA4DDA835C142F977F27F6(_thisAdjusted, ___provider0, method); } // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint8_t L_1 = Convert_ToByte_mF058F63299585352A96AB211EF4DA55B9996ADA5(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToByte_m09A5B60F0F39430CA523AB8B4A083B3CE322D720(_thisAdjusted, ___provider0, method); } // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int16_t L_1 = Convert_ToInt16_mBAB0E578750A2DE0990F9B301C7CBE2397A61A35(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToInt16_m8CDE3667D85BE1FC4D5953B26385CA088AFFE276(_thisAdjusted, ___provider0, method); } // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint16_t L_1 = Convert_ToUInt16_m2F8D708D059B3A7FC317AD8A56D492253E359E24(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToUInt16_m9BC6FFADAB30B18476B92629BB218C20565214C4(_thisAdjusted, ___provider0, method); } // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int32_t L_1 = Convert_ToInt32_m8BE65713C8D5E0AD45D53B82A5A7BD187BEBA917(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToInt32_mA05A6A742AB6769032A9D4961BCDE5809CC4DA86(_thisAdjusted, ___provider0, method); } // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint32_t L_1 = Convert_ToUInt32_m123C758E6CB699FCFD9E8ABCF1042C1CD70DE944(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToUInt32_m8D0D6E1830B211101AB72CA12B8EB0486833D32E(_thisAdjusted, ___provider0, method); } // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); int64_t L_1 = Convert_ToInt64_mAF15CED595F02814C73326AF76050B600CAED358(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToInt64_m594B3D5B4D5E6FD0B6A7BA3EFD498BC5C1A3D9A4(_thisAdjusted, ___provider0, method); } // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); uint64_t L_1 = Convert_ToUInt64_mFCB74BC6F5D944A1894E875C4B8D3D53DE7EFA75(L_0, /*hidden argument*/NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToUInt64_m66C36846973039556B91036BB9F50723F54A8959(_thisAdjusted, ___provider0, method); } // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralDD1186892A2F5C2BD17CD7D41F90482E39BD02C5); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_RuntimeMethod_var); } } IL2CPP_EXTERN_C float Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToSingle_m605FF523B71D3E4B4235F2A7BE045DA666862830(_thisAdjusted, ___provider0, method); } // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral81581597044514BF54D4F97266022FC991F3915E); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral81581597044514BF54D4F97266022FC991F3915E); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_RuntimeMethod_var); } } IL2CPP_EXTERN_C double Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToDouble_m3FDC36FF5A8E360B98D73BF4D3A62BF175E5B35E(_thisAdjusted, ___provider0, method); } // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE4C3A2D0CC24A4535EF91791064FFE989CBD382A); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_RuntimeMethod_var); } } IL2CPP_EXTERN_C Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToDecimal_mF8276A811375C288FA03CD4C714BC9216E53B4DB(_thisAdjusted, ___provider0, method); } // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral0F9BA953E35135A3F8EC268817CC92F2557202A9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF1E5BAF5ECC3589631088C40CBDD43061976ED8F); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE5559C91F3F57F398B8B547CA356C67FFA1F6497, L_2, /*hidden argument*/NULL); InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA * L_4 = (InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA *)il2cpp_codegen_object_new(InvalidCastException_t91DF9E7D7FCCDA6C562CB4A9A18903E016680FDA_il2cpp_TypeInfo_var); InvalidCastException__ctor_m3795145150387C6C362DA693613505C604AB8812(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_RuntimeMethod_var); } } IL2CPP_EXTERN_C DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToDateTime_mFB415440FE78E9348BCB151E3A604FB9EF064533(_thisAdjusted, ___provider0, method); } // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ((Il2CppChar)L_0); RuntimeObject * L_2 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_1); Type_t * L_3 = ___type0; RuntimeObject* L_4 = ___provider1; IL2CPP_RUNTIME_CLASS_INIT(Convert_t1C7A851BFB2F0782FD7F72F6AA1DCBB7B53A9C7E_il2cpp_TypeInfo_var); RuntimeObject * L_5 = Convert_DefaultToType_m899D5F6B9FE3E8B878BC56172C6BFE788B6C1BE3((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject * Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + 1); return Char_System_IConvertible_ToType_mF4D9C6B44CF028692C4868CA48B9CC63619836BB(_thisAdjusted, ___type0, ___provider1, method); } // System.Boolean System.Char::IsControl(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsControl_m32D58EB3C86758859BA4AC8BC075AB54F166F44E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)14)))? 1 : 0); } IL_0013: { Il2CppChar L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_4, /*hidden argument*/NULL); return (bool)((((int32_t)L_5) == ((int32_t)((int32_t)14)))? 1 : 0); } } // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)8))) <= ((uint32_t)2)))) { goto IL_0008; } } { return (bool)1; } IL_0008: { return (bool)0; } } // System.Boolean System.Char::IsNumber(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsNumber_m6B4D661D496A7EBCC142740E91F55B01754FC24F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002c; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsAscii_m6F0B6AF1A65126EF6D32AF73DE043D7B5EF241E8(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)48)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_7 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_6, /*hidden argument*/NULL); bool L_8 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_7, /*hidden argument*/NULL); return L_8; } IL_002c: { Il2CppChar L_9 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_10 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_11 = Char_CheckNumber_m8993FC5CD9BEC2CD77509400615ABAB93118489E(L_10, /*hidden argument*/NULL); return L_11; } } // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_mA37B99B44339849D416C46F29C4159F6EC86969D (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)11)))) <= ((uint32_t)2)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_m2A5B7CB13D0606CD25210FEDD764898FD86546FD (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_000e; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)L_1) == ((int32_t)((int32_t)160)))? 1 : 0); } IL_000e: { return (bool)1; } } // System.Boolean System.Char::IsSeparator(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparator_m63614CEC080B97A4F9DBC3EE000CFF7BCDC5ED8A (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsSeparator_m63614CEC080B97A4F9DBC3EE000CFF7BCDC5ED8A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_3 = Char_IsSeparatorLatin1_m2A5B7CB13D0606CD25210FEDD764898FD86546FD(L_2, /*hidden argument*/NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mC5602CC632FDD7E8690D8DEF9A5F76A49A6F4C4C(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_6 = Char_CheckSeparator_mA37B99B44339849D416C46F29C4159F6EC86969D(L_5, /*hidden argument*/NULL); return L_6; } } // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F_RuntimeMethod_var); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_9 = Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1(L_8, /*hidden argument*/NULL); return L_9; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_m07C2D4BEA7C630EF8D87B2244689C5C315EC4914_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_3 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_2, /*hidden argument*/NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_5 = CharUnicodeInfo_InternalGetUnicodeCategory_m2F385E842FECF592E5F45027976E6126084657B9(L_4, /*hidden argument*/NULL); return L_5; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_5, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Char_GetUnicodeCategory_m32235A3BC0D7A496CD2181A9966DA0FD80DD0CA0_RuntimeMethod_var); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_9 = Char_IsLatin1_m2C0F22F8C188ADA91F693A582BB94E3C252A7931(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { String_t* L_10 = ___s0; int32_t L_11 = ___index1; NullCheck(L_10); Il2CppChar L_12 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_10, L_11, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); int32_t L_13 = Char_GetLatin1UnicodeCategory_m9F07BF6B9FD5E85F60F2C42C25B38F9ACC8D3DB3(L_12, /*hidden argument*/NULL); return L_13; } IL_003d: { String_t* L_14 = ___s0; int32_t L_15 = ___index1; IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t753A11F0CF6C79D3C262266DAA5FD2A8FD40085F_il2cpp_TypeInfo_var); int32_t L_16 = CharUnicodeInfo_InternalGetUnicodeCategory_m94698AE2E38DC942BEABD312ACC55FD82EF98E68(L_14, L_15, /*hidden argument*/NULL); return L_16; } } // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)56319)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001b; } } { int32_t L_3 = ___index1; String_t* L_4 = ___s0; NullCheck(L_4); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0026; } } IL_001b: { ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_6, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB_RuntimeMethod_var); } IL_0026: { String_t* L_7 = ___s0; int32_t L_8 = ___index1; NullCheck(L_7); Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_10 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_9, /*hidden argument*/NULL); return L_10; } } // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)56320)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m186784A2523D247DD43AC669D29A140AE0E992CF (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method) { { Il2CppChar L_0 = ___highSurrogate0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0026; } } { Il2CppChar L_1 = ___highSurrogate0; if ((((int32_t)L_1) > ((int32_t)((int32_t)56319)))) { goto IL_0026; } } { Il2CppChar L_2 = ___lowSurrogate1; if ((((int32_t)L_2) < ((int32_t)((int32_t)56320)))) { goto IL_0024; } } { Il2CppChar L_3 = ___lowSurrogate1; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0024: { return (bool)0; } IL_0026: { return (bool)0; } } // System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___highSurrogate0; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_1 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_001d; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral3BA5D088825A2BB3865D186C1B5F13FCA57D7FBE, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralEA19AED74C943D2A2783BB26F4229A162DA1F082, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var); } IL_001d: { Il2CppChar L_4 = ___lowSurrogate1; IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var); bool L_5 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_003a; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralAA6D5DDB95B6B39F2D84E6E17984CEC320ED0F39, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral6D8AD060BC78FE7857A50CD1CE647997DE67E87F, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601_RuntimeMethod_var); } IL_003a: { Il2CppChar L_8 = ___highSurrogate0; Il2CppChar L_9 = ___lowSurrogate1; return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)55296))), (int32_t)((int32_t)1024))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)56320))))), (int32_t)((int32_t)65536))); } } // System.Void System.Char::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Char__cctor_m36A597E4A09E96474A4F9904DCDEAFE13277CE2D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_72_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields*)il2cpp_codegen_static_fields_for(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var))->set_categoryForLatin1_3(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.CharEnumerator::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_mF290FC81A2221C77C971AF8896279ED4ECB8DFFD (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, String_t* ___str0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); String_t* L_0 = ___str0; __this->set_str_0(L_0); __this->set_index_1((-1)); return; } } // System.Object System.CharEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CharEnumerator_Clone_mEC393AE0D1837D5060508BE0D72FBE12D8107D36 (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.CharEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharEnumerator_MoveNext_m1689A4568C226AB519D03A6047E17BF551AA0C6D (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_index_1(); String_t* L_1 = __this->get_str_0(); NullCheck(L_1); int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL); if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1))))) { goto IL_003c; } } { int32_t L_3 = __this->get_index_1(); __this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); String_t* L_4 = __this->get_str_0(); int32_t L_5 = __this->get_index_1(); NullCheck(L_4); Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, L_5, /*hidden argument*/NULL); __this->set_currentElement_2(L_6); return (bool)1; } IL_003c: { String_t* L_7 = __this->get_str_0(); NullCheck(L_7); int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_7, /*hidden argument*/NULL); __this->set_index_1(L_8); return (bool)0; } } // System.Void System.CharEnumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Dispose_m953D307BE8FBD5DA4F9D0C10A593B949838EE49C (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_str_0(); if (!L_0) { goto IL_0019; } } { String_t* L_1 = __this->get_str_0(); NullCheck(L_1); int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL); __this->set_index_1(L_2); } IL_0019: { __this->set_str_0((String_t*)NULL); return; } } // System.Object System.CharEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1 (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_index_1(); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1_RuntimeMethod_var); } IL_0019: { int32_t L_3 = __this->get_index_1(); String_t* L_4 = __this->get_str_0(); NullCheck(L_4); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_003c; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, CharEnumerator_System_Collections_IEnumerator_get_Current_m311AB48412996DAAA979792FC355BA51B1B4F2F1_RuntimeMethod_var); } IL_003c: { Il2CppChar L_8 = __this->get_currentElement_2(); Il2CppChar L_9 = L_8; RuntimeObject * L_10 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_9); return L_10; } } // System.Char System.CharEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9 (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_index_1(); if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0019; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9_RuntimeMethod_var); } IL_0019: { int32_t L_3 = __this->get_index_1(); String_t* L_4 = __this->get_str_0(); NullCheck(L_4); int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_003c; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, CharEnumerator_get_Current_m2C9590C1375021CA10C3049823690BB0E26BE3A9_RuntimeMethod_var); } IL_003c: { Il2CppChar L_8 = __this->get_currentElement_2(); return L_8; } } // System.Void System.CharEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Reset_mB10759A262CC6DCEE2203A7D7A38470D4630F36B (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { { __this->set_currentElement_2(0); __this->set_index_1((-1)); return; } } // System.Void System.CharEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_m7C7C726A40CC9BB2FB9FF96C172BCDA6A6B653D3 (CharEnumerator_t2EA2A40D79D38A2498DA996D174FD1DE79CD5244 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CharEnumerator__ctor_m7C7C726A40CC9BB2FB9FF96C172BCDA6A6B653D3_MetadataUsageId); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(CharEnumerator__ctor_m7C7C726A40CC9BB2FB9FF96C172BCDA6A6B653D3_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList__ctor_m481FA7B37620B59B8C0434A764F5705A6ABDEAE6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var))->get_emptyArray_4(); __this->set__items_0(L_0); return; } } // System.Void System.Collections.ArrayList::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_002d; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860); String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral30604394791BC9E659A2233492C5416B09AC67D5, L_2, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C_RuntimeMethod_var); } IL_002d: { int32_t L_5 = ___capacity0; if (L_5) { goto IL_003c; } } { IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var))->get_emptyArray_4(); __this->set__items_0(L_6); return; } IL_003c: { int32_t L_7 = ___capacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7); __this->set__items_0(L_8); return; } } // 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) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___c0; if (L_0) { goto IL_001e; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral79E496705A1B410233B3C4A5379A590462D60C37, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral84A516841BA77A5B4648DE2CD0DFCB30EA46DBB4, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayList__ctor_m5BD62A8348AB3A2F573860E81A181B5376AF8FA1_RuntimeMethod_var); } IL_001e: { RuntimeObject* L_3 = ___c0; NullCheck(L_3); int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_3); V_0 = L_4; int32_t L_5 = V_0; if (L_5) { goto IL_0034; } } { IL2CPP_RUNTIME_CLASS_INIT(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var))->get_emptyArray_4(); __this->set__items_0(L_6); return; } IL_0034: { int32_t L_7 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7); __this->set__items_0(L_8); RuntimeObject* L_9 = ___c0; VirtActionInvoker1< RuntimeObject* >::Invoke(25 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, __this, L_9); return; } } // System.Void System.Collections.ArrayList::set_Capacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_set_Capacity_m37AF3E266AF9C2FCF18521954F8990191441F8FB (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_set_Capacity_m37AF3E266AF9C2FCF18521954F8990191441F8FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = __this->get__size_1(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_001e; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, ArrayList_set_Capacity_m37AF3E266AF9C2FCF18521954F8990191441F8FB_RuntimeMethod_var); } IL_001e: { int32_t L_4 = ___value0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__items_0(); NullCheck(L_5); if ((((int32_t)L_4) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_0065; } } { int32_t L_6 = ___value0; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_0059; } } { int32_t L_7 = ___value0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7); V_0 = L_8; int32_t L_9 = __this->get__size_1(); if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_0051; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__items_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_0; int32_t L_12 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_10, 0, (RuntimeArray *)(RuntimeArray *)L_11, 0, L_12, /*hidden argument*/NULL); } IL_0051: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_0; __this->set__items_0(L_13); return; } IL_0059: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4); __this->set__items_0(L_14); } IL_0065: { return; } } // System.Int32 System.Collections.ArrayList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayList_get_Count_m6EF826A52A07CB62C96D882BEEB5C617A925D47E (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_1(); return L_0; } } // System.Boolean System.Collections.ArrayList::get_IsReadOnly() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayList_get_IsReadOnly_m872F6CBFA59DA8ABF64E52802DEED7E7DBD08BEC (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Object System.Collections.ArrayList::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayList_get_SyncRoot_mBEA7D650600CCD432BA113764EF8D3641400F8E9 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_get_SyncRoot_mBEA7D650600CCD432BA113764EF8D3641400F8E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = __this->get__syncRoot_3(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = __this->get_address_of__syncRoot_3(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)L_1, L_2, NULL); } IL_001a: { RuntimeObject * L_3 = __this->get__syncRoot_3(); return L_3; } } // System.Object System.Collections.ArrayList::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayList_get_Item_m1BA9F33368DA08EB91C1077010214C4D47113126 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_get_Item_m1BA9F33368DA08EB91C1077010214C4D47113126_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = __this->get__size_1(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList_get_Item_m1BA9F33368DA08EB91C1077010214C4D47113126_RuntimeMethod_var); } IL_0022: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__items_0(); int32_t L_6 = ___index0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return L_8; } } // System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_set_Item_m7FFC94448E2745B19E0D3A4621E7B68AF5D1A379 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_set_Item_m7FFC94448E2745B19E0D3A4621E7B68AF5D1A379_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = __this->get__size_1(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList_set_Item_m7FFC94448E2745B19E0D3A4621E7B68AF5D1A379_RuntimeMethod_var); } IL_0022: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__items_0(); int32_t L_6 = ___index0; RuntimeObject * L_7 = ___value1; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (RuntimeObject *)L_7); int32_t L_8 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); return; } } // System.Int32 System.Collections.ArrayList::Add(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayList_Add_m16A927AB49D1355AACD8C14E2912E2873B4882C0 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get__size_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__items_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = __this->get__size_1(); ArrayList_EnsureCapacity_mDA044FF02E59C70020A08408073BD2DC2B289D35(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL); } IL_001e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__items_0(); int32_t L_4 = __this->get__size_1(); RuntimeObject * L_5 = ___value0; NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_5); int32_t L_6 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1))); int32_t L_7 = __this->get__size_1(); V_0 = L_7; int32_t L_8 = V_0; __this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))); int32_t L_9 = V_0; return L_9; } } // System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_AddRange_mF9D433AB4B115B25BDEAF70B3090C3522FD5F7A0 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject* ___c0, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_1(); RuntimeObject* L_1 = ___c0; VirtActionInvoker2< int32_t, RuntimeObject* >::Invoke(33 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, __this, L_0, L_1); return; } } // System.Void System.Collections.ArrayList::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_Clear_m8D4784024A7541034C808FB9C1C86E27D4BE0429 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_1(); if ((((int32_t)L_0) <= ((int32_t)0))) { goto IL_0022; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__items_0(); int32_t L_2 = __this->get__size_1(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_1, 0, L_2, /*hidden argument*/NULL); __this->set__size_1(0); } IL_0022: { int32_t L_3 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); return; } } // System.Object System.Collections.ArrayList::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayList_Clone_mAE2BA31BE8F770F96E32EE896F8F720263C5E5D7 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_Clone_mAE2BA31BE8F770F96E32EE896F8F720263C5E5D7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * V_0 = NULL; { int32_t L_0 = __this->get__size_1(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 *)il2cpp_codegen_object_new(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var); ArrayList__ctor_m0EEFF564D3B55439C82DC958952CCC98C47ABF4C(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_2 = V_0; int32_t L_3 = __this->get__size_1(); NullCheck(L_2); L_2->set__size_1(L_3); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_4 = V_0; int32_t L_5 = __this->get__version_2(); NullCheck(L_4); L_4->set__version_2(L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get__items_0(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_7 = V_0; NullCheck(L_7); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7->get__items_0(); int32_t L_9 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_8, 0, L_9, /*hidden argument*/NULL); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_10 = V_0; return L_10; } } // System.Boolean System.Collections.ArrayList::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayList_Contains_mC8B35E33F1A1264FD7779FF33D13CA0BC5E7523B (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject * ___item0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { RuntimeObject * L_0 = ___item0; if (L_0) { goto IL_0022; } } { V_0 = 0; goto IL_0017; } IL_0007: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__items_0(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); if (L_4) { goto IL_0013; } } { return (bool)1; } IL_0013: { int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); } IL_0017: { int32_t L_6 = V_0; int32_t L_7 = __this->get__size_1(); if ((((int32_t)L_6) < ((int32_t)L_7))) { goto IL_0007; } } { return (bool)0; } IL_0022: { V_1 = 0; goto IL_0046; } IL_0026: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__items_0(); int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); if (!L_11) { goto IL_0042; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get__items_0(); int32_t L_13 = V_1; NullCheck(L_12); int32_t L_14 = L_13; RuntimeObject * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); RuntimeObject * L_16 = ___item0; NullCheck(L_15); bool L_17 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_15, L_16); if (!L_17) { goto IL_0042; } } { return (bool)1; } IL_0042: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0046: { int32_t L_19 = V_1; int32_t L_20 = __this->get__size_1(); if ((((int32_t)L_19) < ((int32_t)L_20))) { goto IL_0026; } } { return (bool)0; } } // System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_CopyTo_m85D5F24A2D7F3D8D406FA460C74CB93096401600 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_CopyTo_m85D5F24A2D7F3D8D406FA460C74CB93096401600_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (!L_0) { goto IL_001c; } } { RuntimeArray * L_1 = ___array0; NullCheck(L_1); int32_t L_2 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_1, /*hidden argument*/NULL); if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_001c; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList_CopyTo_m85D5F24A2D7F3D8D406FA460C74CB93096401600_RuntimeMethod_var); } IL_001c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__items_0(); RuntimeArray * L_6 = ___array0; int32_t L_7 = ___arrayIndex1; int32_t L_8 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, L_7, L_8, /*hidden argument*/NULL); return; } } // System.Void System.Collections.ArrayList::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_EnsureCapacity_mDA044FF02E59C70020A08408073BD2DC2B289D35 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B4_0 = 0; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__items_0(); NullCheck(L_0); int32_t L_1 = ___min0; if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))))) >= ((int32_t)L_1))) { goto IL_003d; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get__items_0(); NullCheck(L_2); if (!(((RuntimeArray*)L_2)->max_length)) { goto IL_0020; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__items_0(); NullCheck(L_3); G_B4_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), (int32_t)2)); goto IL_0021; } IL_0020: { G_B4_0 = 4; } IL_0021: { V_0 = G_B4_0; int32_t L_4 = V_0; if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0030; } } { V_0 = ((int32_t)2146435071); } IL_0030: { int32_t L_5 = V_0; int32_t L_6 = ___min0; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0036; } } { int32_t L_7 = ___min0; V_0 = L_7; } IL_0036: { int32_t L_8 = V_0; VirtActionInvoker1< int32_t >::Invoke(18 /* System.Void System.Collections.ArrayList::set_Capacity(System.Int32) */, __this, L_8); } IL_003d: { return; } } // System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ArrayList_GetEnumerator_mB8CE3D18D87278167F21A8491DE8726F3E56A683 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_GetEnumerator_mB8CE3D18D87278167F21A8491DE8726F3E56A683_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * L_0 = (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F *)il2cpp_codegen_object_new(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); ArrayListEnumeratorSimple__ctor_m756A442DA7502E724BC9F670BC872C3C0CFDC16A(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Collections.ArrayList::IndexOf(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ArrayList_IndexOf_m9B25E6F6CC41E40F1A0BD1506CDF9BE775938F92 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method) { { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__items_0(); RuntimeObject * L_1 = ___value0; int32_t L_2 = __this->get__size_1(); int32_t L_3 = Array_IndexOf_m0F86629A6EFC0E9EF350A0D1D37EF582CDC48135((RuntimeArray *)(RuntimeArray *)L_0, L_1, 0, L_2, /*hidden argument*/NULL); return L_3; } } // System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_Insert_m77BB0CB47F6957559395C42506DAD86A7586C2C6 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_Insert_m77BB0CB47F6957559395C42506DAD86A7586C2C6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = __this->get__size_1(); if ((((int32_t)L_1) <= ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralECDB6AE7F656B2F85D114FEBC2E471496FCA6946, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList_Insert_m77BB0CB47F6957559395C42506DAD86A7586C2C6_RuntimeMethod_var); } IL_0022: { int32_t L_5 = __this->get__size_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get__items_0(); NullCheck(L_6); if ((!(((uint32_t)L_5) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))) { goto IL_0040; } } { int32_t L_7 = __this->get__size_1(); ArrayList_EnsureCapacity_mDA044FF02E59C70020A08408073BD2DC2B289D35(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)), /*hidden argument*/NULL); } IL_0040: { int32_t L_8 = ___index0; int32_t L_9 = __this->get__size_1(); if ((((int32_t)L_8) >= ((int32_t)L_9))) { goto IL_0066; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__items_0(); int32_t L_11 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get__items_0(); int32_t L_13 = ___index0; int32_t L_14 = __this->get__size_1(); int32_t L_15 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_10, L_11, (RuntimeArray *)(RuntimeArray *)L_12, ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)L_15)), /*hidden argument*/NULL); } IL_0066: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get__items_0(); int32_t L_17 = ___index0; RuntimeObject * L_18 = ___value1; NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_17), (RuntimeObject *)L_18); int32_t L_19 = __this->get__size_1(); __this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))); int32_t L_20 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); return; } } // System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___index0, RuntimeObject* ___c1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; { RuntimeObject* L_0 = ___c1; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral79E496705A1B410233B3C4A5379A590462D60C37, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral84A516841BA77A5B4648DE2CD0DFCB30EA46DBB4, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1_RuntimeMethod_var); } IL_0018: { int32_t L_3 = ___index0; if ((((int32_t)L_3) < ((int32_t)0))) { goto IL_0025; } } { int32_t L_4 = ___index0; int32_t L_5 = __this->get__size_1(); if ((((int32_t)L_4) <= ((int32_t)L_5))) { goto IL_003a; } } IL_0025: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ArrayList_InsertRange_m16E7BD9196E88D7CBD9FF7A5880588179BCBA1D1_RuntimeMethod_var); } IL_003a: { RuntimeObject* L_8 = ___c1; NullCheck(L_8); int32_t L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_8); V_0 = L_9; int32_t L_10 = V_0; if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_00b1; } } { int32_t L_11 = __this->get__size_1(); int32_t L_12 = V_0; ArrayList_EnsureCapacity_mDA044FF02E59C70020A08408073BD2DC2B289D35(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); int32_t L_13 = ___index0; int32_t L_14 = __this->get__size_1(); if ((((int32_t)L_13) >= ((int32_t)L_14))) { goto IL_0079; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = __this->get__items_0(); int32_t L_16 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = __this->get__items_0(); int32_t L_18 = ___index0; int32_t L_19 = V_0; int32_t L_20 = __this->get__size_1(); int32_t L_21 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_15, L_16, (RuntimeArray *)(RuntimeArray *)L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL); } IL_0079: { int32_t L_22 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_22); V_1 = L_23; RuntimeObject* L_24 = ___c1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = V_1; NullCheck(L_24); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_24, (RuntimeArray *)(RuntimeArray *)L_25, 0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = V_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = __this->get__items_0(); int32_t L_28 = ___index0; NullCheck((RuntimeArray *)(RuntimeArray *)L_26); Array_CopyTo_m455300D414FFB0EBFE53EA4E8BBD31532006EBB7((RuntimeArray *)(RuntimeArray *)L_26, (RuntimeArray *)(RuntimeArray *)L_27, L_28, /*hidden argument*/NULL); int32_t L_29 = __this->get__size_1(); int32_t L_30 = V_0; __this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)L_30))); int32_t L_31 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1))); } IL_00b1: { return; } } // System.Void System.Collections.ArrayList::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_Remove_m312B6F467FEAE13F926A8F4978B5288678A28D37 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t V_0 = 0; { RuntimeObject * L_0 = ___obj0; int32_t L_1 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(31 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, __this, L_0); V_0 = L_1; int32_t L_2 = V_0; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_0013; } } { int32_t L_3 = V_0; VirtActionInvoker1< int32_t >::Invoke(35 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, __this, L_3); } IL_0013: { return; } } // System.Void System.Collections.ArrayList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList_RemoveAt_m604511EBE073D76873D5B79449E98ADD97EE8A6E (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_RemoveAt_m604511EBE073D76873D5B79449E98ADD97EE8A6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = __this->get__size_1(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayList_RemoveAt_m604511EBE073D76873D5B79449E98ADD97EE8A6E_RuntimeMethod_var); } IL_0022: { int32_t L_5 = __this->get__size_1(); __this->set__size_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1))); int32_t L_6 = ___index0; int32_t L_7 = __this->get__size_1(); if ((((int32_t)L_6) >= ((int32_t)L_7))) { goto IL_0056; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__items_0(); int32_t L_9 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__items_0(); int32_t L_11 = ___index0; int32_t L_12 = __this->get__size_1(); int32_t L_13 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_8, ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_10, L_11, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL); } IL_0056: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = __this->get__items_0(); int32_t L_15 = __this->get__size_1(); NullCheck(L_14); ArrayElementTypeCheck (L_14, NULL); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject *)NULL); int32_t L_16 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1))); return; } } // System.Object[] System.Collections.ArrayList::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ArrayList_ToArray_m94739ABC95D4D300E757047A082400297FDD8FA5 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_ToArray_m94739ABC95D4D300E757047A082400297FDD8FA5_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; { int32_t L_0 = __this->get__size_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get__items_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_0; int32_t L_4 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_3, 0, L_4, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_0; return L_5; } } // System.Array System.Collections.ArrayList::ToArray(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray * ArrayList_ToArray_mA747CA021786BE2729CFFD4B9CE2BF57A3990C76 (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList_ToArray_mA747CA021786BE2729CFFD4B9CE2BF57A3990C76_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeArray * V_0 = NULL; { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); bool L_1 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_0, (Type_t *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralD0A3E7F81A9885E99049D1CAE0336D269D5E47A9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, ArrayList_ToArray_mA747CA021786BE2729CFFD4B9CE2BF57A3990C76_RuntimeMethod_var); } IL_0014: { Type_t * L_3 = ___type0; Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_4 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)1); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = L_4; int32_t L_6 = __this->get__size_1(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)L_6); RuntimeArray * L_7 = Array_UnsafeCreateInstance_m48C48756F11E597154438531519DD9279FEA273B(L_3, L_5, /*hidden argument*/NULL); V_0 = L_7; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__items_0(); RuntimeArray * L_9 = V_0; int32_t L_10 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_8, 0, L_9, 0, L_10, /*hidden argument*/NULL); RuntimeArray * L_11 = V_0; return L_11; } } // System.Void System.Collections.ArrayList::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__cctor_m728B9FB508863097CCE6A679225695E064BD273A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayList__cctor_m728B9FB508863097CCE6A679225695E064BD273A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var))->get_Value_0(); ((ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_StaticFields*)il2cpp_codegen_static_fields_for(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_il2cpp_TypeInfo_var))->set_emptyArray_4(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.ArrayList_ArrayListEnumeratorSimple::.ctor(System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple__ctor_m756A442DA7502E724BC9F670BC872C3C0CFDC16A (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayListEnumeratorSimple__ctor_m756A442DA7502E724BC9F670BC872C3C0CFDC16A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_0 = ___list0; __this->set_list_0(L_0); __this->set_index_1((-1)); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = ___list0; NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); __this->set_version_2(L_2); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_3 = ___list0; NullCheck(L_3); Type_t * L_4 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_3, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_5 = { reinterpret_cast<intptr_t> (ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4_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); __this->set_isArrayList_4(L_7); IL2CPP_RUNTIME_CLASS_INIT(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); RuntimeObject * L_8 = ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->get_dummyObject_5(); __this->set_currentElement_3(L_8); return; } } // System.Object System.Collections.ArrayList_ArrayListEnumeratorSimple::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayListEnumeratorSimple_Clone_m66B1798ADE7AC08D1C32D2E95395A5BB3C0EE1C6 (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Collections.ArrayList_ArrayListEnumeratorSimple::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayListEnumeratorSimple_MoveNext_m44B1A29111DEB18390CBB7C336575906A0F14ABE (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayListEnumeratorSimple_MoveNext_m44B1A29111DEB18390CBB7C336575906A0F14ABE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_version_2(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get_list_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayListEnumeratorSimple_MoveNext_m44B1A29111DEB18390CBB7C336575906A0F14ABE_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_isArrayList_4(); if (!L_5) { goto IL_0083; } } { int32_t L_6 = __this->get_index_1(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_7 = __this->get_list_0(); NullCheck(L_7); int32_t L_8 = L_7->get__size_1(); if ((((int32_t)L_6) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1))))) { goto IL_0065; } } { ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_9 = __this->get_list_0(); NullCheck(L_9); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9->get__items_0(); int32_t L_11 = __this->get_index_1(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); int32_t L_12 = V_0; __this->set_index_1(L_12); int32_t L_13 = V_0; NullCheck(L_10); int32_t L_14 = L_13; RuntimeObject * L_15 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); __this->set_currentElement_3(L_15); return (bool)1; } IL_0065: { IL2CPP_RUNTIME_CLASS_INIT(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); RuntimeObject * L_16 = ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->get_dummyObject_5(); __this->set_currentElement_3(L_16); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_17 = __this->get_list_0(); NullCheck(L_17); int32_t L_18 = L_17->get__size_1(); __this->set_index_1(L_18); return (bool)0; } IL_0083: { int32_t L_19 = __this->get_index_1(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_20 = __this->get_list_0(); NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_20); if ((((int32_t)L_19) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1))))) { goto IL_00bc; } } { ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_22 = __this->get_list_0(); int32_t L_23 = __this->get_index_1(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); int32_t L_24 = V_0; __this->set_index_1(L_24); int32_t L_25 = V_0; NullCheck(L_22); RuntimeObject * L_26 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_22, L_25); __this->set_currentElement_3(L_26); return (bool)1; } IL_00bc: { ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_27 = __this->get_list_0(); NullCheck(L_27); int32_t L_28 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_27); __this->set_index_1(L_28); IL2CPP_RUNTIME_CLASS_INIT(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); RuntimeObject * L_29 = ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->get_dummyObject_5(); __this->set_currentElement_3(L_29); return (bool)0; } } // System.Object System.Collections.ArrayList_ArrayListEnumeratorSimple::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115 (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { RuntimeObject * L_0 = __this->get_currentElement_3(); V_0 = L_0; IL2CPP_RUNTIME_CLASS_INIT(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); RuntimeObject * L_1 = ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->get_dummyObject_5(); RuntimeObject * L_2 = V_0; if ((!(((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)L_2)))) { goto IL_0038; } } { int32_t L_3 = __this->get_index_1(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0028; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115_RuntimeMethod_var); } IL_0028: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ArrayListEnumeratorSimple_get_Current_m4FC8903C12BB0E5CD964DF7F33573F0AC110C115_RuntimeMethod_var); } IL_0038: { RuntimeObject * L_8 = V_0; return L_8; } } // System.Void System.Collections.ArrayList_ArrayListEnumeratorSimple::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple_Reset_m2589CBC0F391537C700CAF174C29B7E1A8CF9A85 (ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayListEnumeratorSimple_Reset_m2589CBC0F391537C700CAF174C29B7E1A8CF9A85_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_2(); ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * L_1 = __this->get_list_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ArrayListEnumeratorSimple_Reset_m2589CBC0F391537C700CAF174C29B7E1A8CF9A85_RuntimeMethod_var); } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var); RuntimeObject * L_5 = ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->get_dummyObject_5(); __this->set_currentElement_3(L_5); __this->set_index_1((-1)); return; } } // System.Void System.Collections.ArrayList_ArrayListEnumeratorSimple::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple__cctor_mDFC4483845B6790B4EF8A2DDAE737A32F7BA5745 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ArrayListEnumeratorSimple__cctor_mDFC4483845B6790B4EF8A2DDAE737A32F7BA5745_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL); ((ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_t5D7B0FA86AC4B1D493307CB5973DD33C5A64505F_il2cpp_TypeInfo_var))->set_dummyObject_5(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.Collections.CaseInsensitiveComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_mF59F5E497B30AB1FC035C293912FB8D4D3AF3D6E (CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveComparer__ctor_mF59F5E497B30AB1FC035C293912FB8D4D3AF3D6E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); NullCheck(L_0); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_1 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0); __this->set_m_compareInfo_0(L_1); return; } } // System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4 (CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4_RuntimeMethod_var); } IL_0014: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture0; NullCheck(L_2); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_3 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2); __this->set_m_compareInfo_0(L_3); return; } } // System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveComparer_get_Default_m1E0D7C553D3E1A4E201C807116BDD551279306E9_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * L_1 = (CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE *)il2cpp_codegen_object_new(CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE_il2cpp_TypeInfo_var); CaseInsensitiveComparer__ctor_mD5DC15C2FD17907674949A807D68DE4A52A3F8B4(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Collections.CaseInsensitiveComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveComparer_Compare_m25D85D2341A5D722725DB24DFF2FEE89BDB982D2 (CaseInsensitiveComparer_tF9935EB25E69CEF5A3B17CE8D22E2797F23B17BE * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveComparer_Compare_m25D85D2341A5D722725DB24DFF2FEE89BDB982D2_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { RuntimeObject * L_0 = ___a0; V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)); RuntimeObject * L_1 = ___b1; V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var)); String_t* L_2 = V_0; if (!L_2) { goto IL_0023; } } { String_t* L_3 = V_1; if (!L_3) { goto IL_0023; } } { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = __this->get_m_compareInfo_0(); String_t* L_5 = V_0; String_t* L_6 = V_1; NullCheck(L_4); int32_t L_7 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_5, L_6, 1); return L_7; } IL_0023: { IL2CPP_RUNTIME_CLASS_INIT(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_8 = ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->get_Default_1(); RuntimeObject * L_9 = ___a0; RuntimeObject * L_10 = ___b1; NullCheck(L_8); int32_t L_11 = Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6(L_8, L_9, L_10, /*hidden argument*/NULL); return L_11; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_m6D2AC9A88ACE3D34B91BD33FC15984D5B3CA7860 (CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_m6D2AC9A88ACE3D34B91BD33FC15984D5B3CA7860_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); NullCheck(L_0); TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_1 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); __this->set_m_text_0(L_1); return; } } // System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A (CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A_RuntimeMethod_var); } IL_0014: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture0; NullCheck(L_2); TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_3 = VirtFuncInvoker0< TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2); __this->set_m_text_0(L_3); return; } } // System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_get_Default_mEB75D6529BEF600AEC8A3F848B9CAB5650C588B8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * L_1 = (CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 *)il2cpp_codegen_object_new(CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34_il2cpp_TypeInfo_var); CaseInsensitiveHashCodeProvider__ctor_m34F0F884884090CA3735F6B231D2A7222F50787A(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Collections.CaseInsensitiveHashCodeProvider::GetHashCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveHashCodeProvider_GetHashCode_m659ED12E81DB107B53E20F18AFCC475410DD131F (CaseInsensitiveHashCodeProvider_tC6D5564219051252BBC7B49F78CC8173105F0C34 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_GetHashCode_m659ED12E81DB107B53E20F18AFCC475410DD131F_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CaseInsensitiveHashCodeProvider_GetHashCode_m659ED12E81DB107B53E20F18AFCC475410DD131F_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = ___obj0; V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var)); String_t* L_3 = V_0; if (L_3) { goto IL_001f; } } { RuntimeObject * L_4 = ___obj0; NullCheck(L_4); int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4); return L_5; } IL_001f: { TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * L_6 = __this->get_m_text_0(); String_t* L_7 = V_0; NullCheck(L_6); int32_t L_8 = TextInfo_GetCaseInsensitiveHashCode_mA0883910FCFF73F435F0AD0F2CDF49A47112A9E4(L_6, L_7, /*hidden argument*/NULL); return L_8; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Comparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m889DDAB235E7DC7EC1B3114181A56C24D3AEFC53 (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); __this->set_m_compareInfo_0((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *)NULL); return; } } // System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral8F2E7CD784967D6A79ABD59093146FB1F82E336D, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA_RuntimeMethod_var); } IL_0014: { CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = ___culture0; NullCheck(L_2); CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_3 = VirtFuncInvoker0< CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2); __this->set_m_compareInfo_0(L_3); return; } } // System.Void System.Collections.Comparer::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m76728DE9740F679A88C195D8D46D65D32A401D31 (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer__ctor_m76728DE9740F679A88C195D8D46D65D32A401D31_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_0 = NULL; String_t* V_1 = NULL; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); __this->set_m_compareInfo_0((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *)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_004a; } IL_0016: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_2 = V_0; NullCheck(L_2); String_t* L_3 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_2, /*hidden argument*/NULL); V_1 = L_3; String_t* L_4 = V_1; bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_4, _stringLiteral4DB206F9DB18065B4394FC7E58AF1B5FED5DED50, /*hidden argument*/NULL); if (!L_5) { goto IL_004a; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_6); RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral4DB206F9DB18065B4394FC7E58AF1B5FED5DED50, L_8, /*hidden argument*/NULL); __this->set_m_compareInfo_0(((CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 *)CastclassClass((RuntimeObject*)L_9, CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1_il2cpp_TypeInfo_var))); } IL_004a: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_10 = V_0; NullCheck(L_10); bool L_11 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0016; } } { return; } } // System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6 (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; { RuntimeObject * L_0 = ___a0; RuntimeObject * L_1 = ___b1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return 0; } IL_0006: { RuntimeObject * L_2 = ___a0; if (L_2) { goto IL_000b; } } { return (-1); } IL_000b: { RuntimeObject * L_3 = ___b1; if (L_3) { goto IL_0010; } } { return 1; } IL_0010: { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = __this->get_m_compareInfo_0(); if (!L_4) { goto IL_003a; } } { RuntimeObject * L_5 = ___a0; V_2 = ((String_t*)IsInstSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)); RuntimeObject * L_6 = ___b1; V_3 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var)); String_t* L_7 = V_2; if (!L_7) { goto IL_003a; } } { String_t* L_8 = V_3; if (!L_8) { goto IL_003a; } } { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_9 = __this->get_m_compareInfo_0(); String_t* L_10 = V_2; String_t* L_11 = V_3; NullCheck(L_9); int32_t L_12 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_9, L_10, L_11); return L_12; } IL_003a: { RuntimeObject * L_13 = ___a0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_0; if (!L_14) { goto IL_004c; } } { RuntimeObject* L_15 = V_0; RuntimeObject * L_16 = ___b1; NullCheck(L_15); int32_t L_17 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_15, L_16); return L_17; } IL_004c: { RuntimeObject * L_18 = ___b1; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var)); RuntimeObject* L_19 = V_1; if (!L_19) { goto IL_005f; } } { RuntimeObject* L_20 = V_1; RuntimeObject * L_21 = ___a0; NullCheck(L_20); int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_20, L_21); return ((-L_22)); } IL_005f: { String_t* L_23 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_24 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_24, L_23, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, NULL, Comparer_Compare_mC30345311C0BD73811513B7240E66C2CFBE632E6_RuntimeMethod_var); } } // System.Void System.Collections.Comparer::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_GetObjectData_m7B140702669F0DDE13D5888DB99DE1E40D3AC761 (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer_GetObjectData_m7B140702669F0DDE13D5888DB99DE1E40D3AC761_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Comparer_GetObjectData_m7B140702669F0DDE13D5888DB99DE1E40D3AC761_RuntimeMethod_var); } IL_000e: { CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_2 = __this->get_m_compareInfo_0(); if (!L_2) { goto IL_0027; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_3 = ___info0; CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * L_4 = __this->get_m_compareInfo_0(); NullCheck(L_3); SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_3, _stringLiteral4DB206F9DB18065B4394FC7E58AF1B5FED5DED50, L_4, /*hidden argument*/NULL); } IL_0027: { return; } } // System.Void System.Collections.Comparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__cctor_mAFC5C38781682A079D2C482F6A56DDEA46E86649 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Comparer__cctor_mAFC5C38781682A079D2C482F6A56DDEA46E86649_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_1 = (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B *)il2cpp_codegen_object_new(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA(L_1, L_0, /*hidden argument*/NULL); ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->set_Default_1(L_1); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_3 = (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B *)il2cpp_codegen_object_new(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA(L_3, L_2, /*hidden argument*/NULL); ((Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var))->set_DefaultInvariant_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.Collections.CompatibleComparer::.ctor(System.Collections.IComparer,System.Collections.IHashCodeProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompatibleComparer__ctor_m3FA12981F83EB4F3A494E99EF85094EB745467F7 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject* ___comparer0, RuntimeObject* ___hashCodeProvider1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; __this->set__comparer_0(L_0); RuntimeObject* L_1 = ___hashCodeProvider1; __this->set__hcp_1(L_1); return; } } // System.Int32 System.Collections.CompatibleComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject * L_0 = ___a0; RuntimeObject * L_1 = ___b1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return 0; } IL_0006: { RuntimeObject * L_2 = ___a0; if (L_2) { goto IL_000b; } } { return (-1); } IL_000b: { RuntimeObject * L_3 = ___b1; if (L_3) { goto IL_0010; } } { return 1; } IL_0010: { RuntimeObject* L_4 = __this->get__comparer_0(); if (!L_4) { goto IL_0026; } } { RuntimeObject* L_5 = __this->get__comparer_0(); RuntimeObject * L_6 = ___a0; RuntimeObject * L_7 = ___b1; NullCheck(L_5); int32_t L_8 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var, L_5, L_6, L_7); return L_8; } IL_0026: { RuntimeObject * L_9 = ___a0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_0; if (!L_10) { goto IL_0038; } } { RuntimeObject* L_11 = V_0; RuntimeObject * L_12 = ___b1; NullCheck(L_11); int32_t L_13 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_11, L_12); return L_13; } IL_0038: { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24_RuntimeMethod_var); } } // System.Boolean System.Collections.CompatibleComparer::Equals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompatibleComparer_Equals_m22DF5EBFC4A592CDF54C17F401BF454585DD7C87 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___a0; RuntimeObject * L_1 = ___b1; int32_t L_2 = CompatibleComparer_Compare_m2E5E0628E49ED08500E520253AB54846DE8A7A24(__this, L_0, L_1, /*hidden argument*/NULL); return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Collections.CompatibleComparer::GetHashCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_GetHashCode_m40239FA0DAB3B6B408A289BEF734C9B8DC524182 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CompatibleComparer_GetHashCode_m40239FA0DAB3B6B408A289BEF734C9B8DC524182_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, CompatibleComparer_GetHashCode_m40239FA0DAB3B6B408A289BEF734C9B8DC524182_RuntimeMethod_var); } IL_000e: { RuntimeObject* L_2 = __this->get__hcp_1(); if (!L_2) { goto IL_0023; } } { RuntimeObject* L_3 = __this->get__hcp_1(); RuntimeObject * L_4 = ___obj0; NullCheck(L_3); int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IHashCodeProvider::GetHashCode(System.Object) */, IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_il2cpp_TypeInfo_var, L_3, L_4); return L_5; } IL_0023: { RuntimeObject * L_6 = ___obj0; NullCheck(L_6); int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_6); return L_7; } } // System.Collections.IComparer System.Collections.CompatibleComparer::get_Comparer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_Comparer_mEBD487B199A5AEFF1B6F903B914067CC01303061 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get__comparer_0(); return L_0; } } // System.Collections.IHashCodeProvider System.Collections.CompatibleComparer::get_HashCodeProvider() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_m53653737058DB625DEE0F23D24129D0052BE0530 (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get__hcp_1(); 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.Collections.Concurrent.CDSCollectionETWBCLProvider::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m6FA90B160A07F2E2F2D90674B092B679C8E82C69 (CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CDSCollectionETWBCLProvider__ctor_m6FA90B160A07F2E2F2D90674B092B679C8E82C69_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EventSource_t263F509672F3C6747C5BA393F20E2717B7A981EB_il2cpp_TypeInfo_var); EventSource__ctor_m609A5F8A53C64F1F7E5CEEE5427E77F4D3F4B52A(__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::ConcurrentDictionary_AcquiringAllLocks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m43A8AF7CD130815A84373F092CCA7523365D91A6 (CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * __this, int32_t ___numOfBuckets0, const RuntimeMethod* method) { { bool L_0 = EventSource_IsEnabled_mD4697D2FE23E685D66BBC81F3BB5AF7668167DDC(__this, 3, (((int64_t)((int64_t)(-1)))), /*hidden argument*/NULL); if (!L_0) { goto IL_0013; } } { int32_t L_1 = ___numOfBuckets0; EventSource_WriteEvent_m44D8648B0F8F664487F15BEA6E13AE6D81543CB8(__this, 3, L_1, /*hidden argument*/NULL); } IL_0013: { return; } } // System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__cctor_m0C980520109724C58B22184B36F34E428C8D99D8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CDSCollectionETWBCLProvider__cctor_m0C980520109724C58B22184B36F34E428C8D99D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 * L_0 = (CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851 *)il2cpp_codegen_object_new(CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_il2cpp_TypeInfo_var); CDSCollectionETWBCLProvider__ctor_m6FA90B160A07F2E2F2D90674B092B679C8E82C69(L_0, /*hidden argument*/NULL); ((CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tE1A8B27D2BFB7E4D066D71945665EEB9E870C851_il2cpp_TypeInfo_var))->set_Log_29(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Collections.DictionaryEntry IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_pinvoke(const DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4& unmarshaled, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke& marshaled) { if (unmarshaled.get__key_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0())) { marshaled.____key_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__key_0())); (marshaled.____key_0)->AddRef(); } else { marshaled.____key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__key_0()); } } else { marshaled.____key_0 = NULL; } if (unmarshaled.get__value_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1())) { marshaled.____value_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__value_1())); (marshaled.____value_1)->AddRef(); } else { marshaled.____value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__value_1()); } } else { marshaled.____value_1 = NULL; } } IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_pinvoke_back(const DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke& marshaled, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.____key_0 != NULL) { unmarshaled.set__key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____key_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__key_0()), Il2CppIUnknown::IID, marshaled.____key_0); } } else { unmarshaled.set__key_0(NULL); } if (marshaled.____value_1 != NULL) { unmarshaled.set__value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____value_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__value_1()), Il2CppIUnknown::IID, marshaled.____value_1); } } else { unmarshaled.set__value_1(NULL); } } // Conversion method for clean up from marshalling of: System.Collections.DictionaryEntry IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_pinvoke_cleanup(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke& marshaled) { if (marshaled.____key_0 != NULL) { (marshaled.____key_0)->Release(); marshaled.____key_0 = NULL; } if (marshaled.____value_1 != NULL) { (marshaled.____value_1)->Release(); marshaled.____value_1 = NULL; } } // Conversion methods for marshalling of: System.Collections.DictionaryEntry IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_com(const DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4& unmarshaled, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com& marshaled) { if (unmarshaled.get__key_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0())) { marshaled.____key_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__key_0())); (marshaled.____key_0)->AddRef(); } else { marshaled.____key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__key_0()); } } else { marshaled.____key_0 = NULL; } if (unmarshaled.get__value_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1())) { marshaled.____value_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get__value_1())); (marshaled.____value_1)->AddRef(); } else { marshaled.____value_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get__value_1()); } } else { marshaled.____value_1 = NULL; } } IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_com_back(const DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com& marshaled, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.____key_0 != NULL) { unmarshaled.set__key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____key_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__key_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__key_0()), Il2CppIUnknown::IID, marshaled.____key_0); } } else { unmarshaled.set__key_0(NULL); } if (marshaled.____value_1 != NULL) { unmarshaled.set__value_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.____value_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get__value_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get__value_1()), Il2CppIUnknown::IID, marshaled.____value_1); } } else { unmarshaled.set__value_1(NULL); } } // Conversion method for clean up from marshalling of: System.Collections.DictionaryEntry IL2CPP_EXTERN_C void DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshal_com_cleanup(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com& marshaled) { if (marshaled.____key_0 != NULL) { (marshaled.____key_0)->Release(); marshaled.____key_0 = NULL; } if (marshaled.____value_1 != NULL) { (marshaled.____value_1)->Release(); marshaled.____value_1 = NULL; } } // 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) { { RuntimeObject * L_0 = ___key0; __this->set__key_0(L_0); RuntimeObject * L_1 = ___value1; __this->set__value_1(L_1); return; } } IL2CPP_EXTERN_C void DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * _thisAdjusted = reinterpret_cast<DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *>(__this + 1); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B(_thisAdjusted, ___key0, ___value1, method); } // System.Object System.Collections.DictionaryEntry::get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500 (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__key_0(); return L_0; } } IL2CPP_EXTERN_C RuntimeObject * DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * _thisAdjusted = reinterpret_cast<DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *>(__this + 1); return DictionaryEntry_get_Key_m5637186DC83BDD463E99ADDB2FE9C033D4EA0500_inline(_thisAdjusted, method); } // System.Object System.Collections.DictionaryEntry::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6 (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get__value_1(); return L_0; } } IL2CPP_EXTERN_C RuntimeObject * DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * _thisAdjusted = reinterpret_cast<DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *>(__this + 1); return DictionaryEntry_get_Value_m4B3DE9043323AB6C84FCD25C8610030572D67AE6_inline(_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.Boolean System.Collections.Generic.ByteEqualityComparer::Equals(System.Byte,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_m25F9EA406F900169EE63CFB34BDE3E8E478DF338 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, uint8_t ___x0, uint8_t ___y1, const RuntimeMethod* method) { { uint8_t L_0 = ___x0; uint8_t L_1 = ___y1; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } // System.Int32 System.Collections.Generic.ByteEqualityComparer::GetHashCode(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_mD3F3603B79D5E5BB2A10155C1641C63AF72631F9 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, uint8_t ___b0, const RuntimeMethod* method) { { int32_t L_0 = Byte_GetHashCode_m57BA90F7D83EA8E9ECCA68505FFEA649D1C748E0((uint8_t*)(&___b0), /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Collections.Generic.ByteEqualityComparer::IndexOf(System.Byte[],System.Byte,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint8_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_RuntimeMethod_var); } IL_000e: { int32_t L_2 = ___startIndex2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0027; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_RuntimeMethod_var); } IL_0027: { int32_t L_5 = ___count3; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0041; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_RuntimeMethod_var); } IL_0041: { int32_t L_8 = ___count3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___array0; NullCheck(L_9); int32_t L_10 = ___startIndex2; if ((((int32_t)L_8) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10))))) { goto IL_005a; } } { String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, NULL, ByteEqualityComparer_IndexOf_mAC273B5ADB54774390443F6E905EE2669F9E62C3_RuntimeMethod_var); } IL_005a: { int32_t L_13 = ___count3; if (L_13) { goto IL_0060; } } { return (-1); } IL_0060: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___array0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14; V_1 = L_15; if (!L_15) { goto IL_006a; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1; NullCheck(L_16); if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))) { goto IL_006f; } } IL_006a: { V_0 = (uint8_t*)(((uintptr_t)0)); goto IL_0078; } IL_006f: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1; NullCheck(L_17); V_0 = (uint8_t*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))))); } IL_0078: { uint8_t* L_18 = V_0; uint8_t L_19 = ___value1; int32_t L_20 = ___startIndex2; int32_t L_21 = ___count3; int32_t L_22 = Buffer_IndexOfByte_m04E6E27CA0059C3D1F07DF6FEE96517B0A795EB8((uint8_t*)(uint8_t*)L_18, L_19, L_20, L_21, /*hidden argument*/NULL); return L_22; } } // System.Int32 System.Collections.Generic.ByteEqualityComparer::LastIndexOf(System.Byte[],System.Byte,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_LastIndexOf_m6CFA493B3B2989CE8D140CE5660D7263954B92B9 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1)); int32_t L_2 = ___startIndex2; V_1 = L_2; goto IL_0017; } IL_000b: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0; int32_t L_4 = V_1; NullCheck(L_3); int32_t L_5 = L_4; uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); uint8_t L_7 = ___value1; if ((!(((uint32_t)L_6) == ((uint32_t)L_7)))) { goto IL_0013; } } { int32_t L_8 = V_1; return L_8; } IL_0013: { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1)); } IL_0017: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) >= ((int32_t)L_11))) { goto IL_000b; } } { return (-1); } } // System.Boolean System.Collections.Generic.ByteEqualityComparer::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_m9289C7A7A89DC4B9F90EBD2724A9844B7199E8AA (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteEqualityComparer_Equals_m9289C7A7A89DC4B9F90EBD2724A9844B7199E8AA_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___obj0; return (bool)((!(((RuntimeObject*)(ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)((ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B *)IsInstClass((RuntimeObject*)L_0, ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Int32 System.Collections.Generic.ByteEqualityComparer::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_mE56E17B600C3C04ADE7925D9F3B6BC9BAD0B4909 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, const RuntimeMethod* method) { { Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0); NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1); return L_2; } } // System.Void System.Collections.Generic.ByteEqualityComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68 (ByteEqualityComparer_t45A85C063C30D3CDABEAD21C8CDF353E3EE55B8B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ByteEqualityComparer__ctor_m2B86B16398C9ADBA996127A209179E9654EF6A68_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F(__this, /*hidden argument*/EqualityComparer_1__ctor_m280B2C62F66AC02F84BA740B306DADDA3AF2DD3F_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.Generic.DictionaryHashHelpers::get_SerializationInfoTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DictionaryHashHelpers_get_SerializationInfoTable_mCF0A53E777EAFE1AA018C02529AFF6D3CDF7A05C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = ((DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields*)il2cpp_codegen_static_fields_for(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var))->get_U3CSerializationInfoTableU3Ek__BackingField_0(); return L_0; } } // System.Void System.Collections.Generic.DictionaryHashHelpers::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryHashHelpers__cctor_m977B60DD39BDF7A143C377F55C3018153122175C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DictionaryHashHelpers__cctor_m977B60DD39BDF7A143C377F55C3018153122175C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)il2cpp_codegen_object_new(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98_il2cpp_TypeInfo_var); ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C(L_0, /*hidden argument*/ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C_RuntimeMethod_var); ((DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_StaticFields*)il2cpp_codegen_static_fields_for(DictionaryHashHelpers_tA8FE399EF3E29215C09AA5F9263572B42D4D6D00_il2cpp_TypeInfo_var))->set_U3CSerializationInfoTableU3Ek__BackingField_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Collections.Generic.InternalStringComparer::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalStringComparer_GetHashCode_mFC7A15044B893AEE9A63E67D5F10E3AC19D71E78 (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * __this, String_t* ___obj0, const RuntimeMethod* method) { { String_t* L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___obj0; NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1); return L_2; } } // System.Boolean System.Collections.Generic.InternalStringComparer::Equals(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalStringComparer_Equals_m4F829E3212C87481799BE3531F8CD4AAACF4A963 (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; if (L_0) { goto IL_0008; } } { String_t* L_1 = ___y1; return (bool)((((RuntimeObject*)(String_t*)L_1) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_0008: { String_t* L_2 = ___x0; String_t* L_3 = ___y1; if ((!(((RuntimeObject*)(String_t*)L_2) == ((RuntimeObject*)(String_t*)L_3)))) { goto IL_000e; } } { return (bool)1; } IL_000e: { String_t* L_4 = ___x0; String_t* L_5 = ___y1; NullCheck(L_4); bool L_6 = String_Equals_m9C4D78DFA0979504FE31429B64A4C26DF48020D1(L_4, L_5, /*hidden argument*/NULL); return L_6; } } // System.Int32 System.Collections.Generic.InternalStringComparer::IndexOf(System.String[],System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalStringComparer_IndexOf_m73D41BA1F05F93788B395106A08DFD7A86FC00CE (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * __this, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___array0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___startIndex2; int32_t L_1 = ___count3; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1)); int32_t L_2 = ___startIndex2; V_1 = L_2; goto IL_001e; } IL_0009: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = ___array0; int32_t L_4 = V_1; String_t* L_5 = IL2CPP_ARRAY_UNSAFE_LOAD(L_3, L_4); String_t* L_6 = ___value1; bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_5, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_001a; } } { int32_t L_8 = V_1; return L_8; } IL_001a: { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_001e: { int32_t L_10 = V_1; int32_t L_11 = V_0; if ((((int32_t)L_10) < ((int32_t)L_11))) { goto IL_0009; } } { return (-1); } } // System.Void System.Collections.Generic.InternalStringComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83 (InternalStringComparer_tCD150130A3DB4C80186B5D8145B910B33496D4CD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (InternalStringComparer__ctor_m471FF151AF831B76635ED96C53CF08114FD42C83_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9(__this, /*hidden argument*/EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Collections.Generic.IntrospectiveSortUtilities::FloorLog2(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntrospectiveSortUtilities_FloorLog2_m5D97E3CA34AA9D368A470CB423154AFEF979BFFA (int32_t ___n0, const RuntimeMethod* method) { int32_t V_0 = 0; { V_0 = 0; goto IL_000d; } IL_0004: { int32_t L_0 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)); int32_t L_1 = ___n0; ___n0 = ((int32_t)((int32_t)L_1/(int32_t)2)); } IL_000d: { int32_t L_2 = ___n0; if ((((int32_t)L_2) >= ((int32_t)1))) { goto IL_0004; } } { int32_t L_3 = V_0; return L_3; } } // System.Void System.Collections.Generic.IntrospectiveSortUtilities::ThrowOrIgnoreBadComparer(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A (RuntimeObject * ___comparer0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___comparer0; String_t* L_1 = SR_Format_mCDBB594267CC224AB2A69540BBA598151F0642C7(_stringLiteral1EA4F8C8D1E2BDF525B501F80B65A65C4D7A256C, L_0, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_mC5A16A109D5D25128EC4877C34B328EAB6567C3A_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.Collections.Generic.KeyNotFoundException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8 (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (KeyNotFoundException__ctor_mE9E1C6E6E21842095342C0A2ED65EC201FB4F3C8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B82980DAF08650EBCD07B02A4F870A65CFD9297, /*hidden argument*/NULL); SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146232969), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.KeyNotFoundException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_m9D84ADA7AF7ECBA5A71B6744811F7B2152CF821C (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A(__this, L_0, /*hidden argument*/NULL); Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146232969), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Generic.KeyNotFoundException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_m7B2F987D196533CC4321C1EE5919F10A15862C89 (KeyNotFoundException_tC28F8B9E114291001A5D135723673C6F292438E2 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949(__this, L_0, L_1, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String System.Collections.Generic.KeyValuePair::PairToString(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyValuePair_PairToString_m6BF6066704BEFFC9313BDE0D4B6D75E3A9056B03 (RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (KeyValuePair_PairToString_m6BF6066704BEFFC9313BDE0D4B6D75E3A9056B03_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringBuilder_t * V_0 = NULL; { StringBuilder_t * L_0 = StringBuilderCache_Acquire_mCA3DDB17F0BFEF32DA9B4D7E8501D5705890557D(((int32_t)16), /*hidden argument*/NULL); V_0 = L_0; StringBuilder_t * L_1 = V_0; NullCheck(L_1); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_1, ((int32_t)91), /*hidden argument*/NULL); RuntimeObject * L_2 = ___key0; if (!L_2) { goto IL_001c; } } { StringBuilder_t * L_3 = V_0; RuntimeObject * L_4 = ___key0; NullCheck(L_3); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_3, L_4, /*hidden argument*/NULL); } IL_001c: { StringBuilder_t * L_5 = V_0; NullCheck(L_5); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_5, _stringLiteralD3BC9A378DAAA1DDDBA1B19C1AA641D3E9683C46, /*hidden argument*/NULL); RuntimeObject * L_6 = ___value1; if (!L_6) { goto IL_0033; } } { StringBuilder_t * L_7 = V_0; RuntimeObject * L_8 = ___value1; NullCheck(L_7); StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65(L_7, L_8, /*hidden argument*/NULL); } IL_0033: { StringBuilder_t * L_9 = V_0; NullCheck(L_9); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_9, ((int32_t)93), /*hidden argument*/NULL); StringBuilder_t * L_10 = V_0; String_t* L_11 = StringBuilderCache_GetStringAndRelease_mDD5B8378FE9378CACF8660EB460E0CE545F215F7(L_10, /*hidden argument*/NULL); return L_11; } } #ifdef __clang__ #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.Collections.Generic.NonRandomizedStringEqualityComparer::Equals(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NonRandomizedStringEqualityComparer_Equals_mD35083F160C9DD803E606B6757404733EB70775C (NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 * __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) { { String_t* L_0 = ___x0; String_t* L_1 = ___y1; bool L_2 = String_Equals_m90EB651A751C3444BADBBD5401109CE05B3E1CFB(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Collections.Generic.NonRandomizedStringEqualityComparer::GetHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NonRandomizedStringEqualityComparer_GetHashCode_m7DB6356B7E648D637D99DC809952F830A45F4F71 (NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 * __this, String_t* ___obj0, const RuntimeMethod* method) { { String_t* L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___obj0; NullCheck(L_1); int32_t L_2 = String_GetLegacyNonRandomizedHashCode_m9CDCA17EB090873E71BB87D2976233C0A9C40513(L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Collections.Generic.NonRandomizedStringEqualityComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NonRandomizedStringEqualityComparer__ctor_m62FF1B8200DF9AB290FA6632364B9C47E2B74B9C (NonRandomizedStringEqualityComparer_t92C20503D9C5060A557792ABCCC06EF2DD77E5D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (NonRandomizedStringEqualityComparer__ctor_m62FF1B8200DF9AB290FA6632364B9C47E2B74B9C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9(__this, /*hidden argument*/EqualityComparer_1__ctor_m27579BC1B9416783CA45B05F0915789B0C2A91C9_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Generic.ObjectEqualityComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer__ctor_m915830D1728E66DAE8797E7BE46AA4754C629BD9 (ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.Generic.ObjectEqualityComparer::System.Collections.IEqualityComparer.GetHashCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ObjectEqualityComparer_System_Collections_IEqualityComparer_GetHashCode_m82FAA33DD0D354E51A01F5452F0A956367C60866 (ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { RuntimeObject * L_1 = ___obj0; NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1); return L_2; } } // System.Boolean System.Collections.Generic.ObjectEqualityComparer::System.Collections.IEqualityComparer.Equals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ObjectEqualityComparer_System_Collections_IEqualityComparer_Equals_m0041B53A123F89F72A2F8BE30E0419B1E804EDF4 (ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___x0; if (L_0) { goto IL_0008; } } { RuntimeObject * L_1 = ___y1; return (bool)((((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_0008: { RuntimeObject * L_2 = ___y1; if (L_2) { goto IL_000d; } } { return (bool)0; } IL_000d: { RuntimeObject * L_3 = ___x0; RuntimeObject * L_4 = ___y1; NullCheck(L_3); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4); return L_5; } } // System.Void System.Collections.Generic.ObjectEqualityComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectEqualityComparer__cctor_mADDEF8463750911807053CC6A98D57B1645024B5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (ObjectEqualityComparer__cctor_mADDEF8463750911807053CC6A98D57B1645024B5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC * L_0 = (ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC *)il2cpp_codegen_object_new(ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_il2cpp_TypeInfo_var); ObjectEqualityComparer__ctor_m915830D1728E66DAE8797E7BE46AA4754C629BD9(L_0, /*hidden argument*/NULL); ((ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_StaticFields*)il2cpp_codegen_static_fields_for(ObjectEqualityComparer_t816C8EE8FA554ABC9D1BDD052A3F3F919983FDCC_il2cpp_TypeInfo_var))->set_Default_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.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo> System.Collections.HashHelpers::get_SerializationInfoTable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42_MetadataUsageId); s_Il2CppMethodInitialized = true; } ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = ((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->get_s_SerializationInfoTable_1(); if (L_0) { goto IL_001a; } } { ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_1 = (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)il2cpp_codegen_object_new(ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98_il2cpp_TypeInfo_var); ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C(L_1, /*hidden argument*/ConditionalWeakTable_2__ctor_m561B03A5ECAA3DA3BF47068240246D8B9FFA7E8C_RuntimeMethod_var); V_0 = L_1; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_2 = V_0; InterlockedCompareExchangeImpl<ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *>((ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 **)(((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->get_address_of_s_SerializationInfoTable_1()), L_2, (ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 *)NULL); } IL_001a: { IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_3 = ((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->get_s_SerializationInfoTable_1(); return L_3; } } // System.Boolean System.Collections.HashHelpers::IsPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashHelpers_IsPrime_mB435CA4898F891CCFE7227DB6721A9803E35099B (int32_t ___candidate0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashHelpers_IsPrime_mB435CA4898F891CCFE7227DB6721A9803E35099B_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___candidate0; if (!((int32_t)((int32_t)L_0&(int32_t)1))) { goto IL_0023; } } { int32_t L_1 = ___candidate0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); double L_2 = sqrt((((double)((double)L_1)))); V_0 = (((int32_t)((int32_t)(int32_t)L_2))); V_1 = 3; goto IL_001d; } IL_0012: { int32_t L_3 = ___candidate0; int32_t L_4 = V_1; if (((int32_t)((int32_t)L_3%(int32_t)L_4))) { goto IL_0019; } } { return (bool)0; } IL_0019: { int32_t L_5 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)2)); } IL_001d: { int32_t L_6 = V_1; int32_t L_7 = V_0; if ((((int32_t)L_6) <= ((int32_t)L_7))) { goto IL_0012; } } { return (bool)1; } IL_0023: { int32_t L_8 = ___candidate0; return (bool)((((int32_t)L_8) == ((int32_t)2))? 1 : 0); } } // System.Int32 System.Collections.HashHelpers::GetPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297 (int32_t ___min0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___min0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0014; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9F7A8DB88B79D714FDF244C54DAED0DF890BE664, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297_RuntimeMethod_var); } IL_0014: { V_0 = 0; goto IL_002a; } IL_0018: { IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_3 = ((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->get_primes_0(); int32_t L_4 = V_0; NullCheck(L_3); int32_t L_5 = L_4; int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = L_6; int32_t L_7 = V_1; int32_t L_8 = ___min0; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_0026; } } { int32_t L_9 = V_1; return L_9; } IL_0026: { int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_002a: { int32_t L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_12 = ((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->get_primes_0(); NullCheck(L_12); if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0018; } } { int32_t L_13 = ___min0; V_2 = ((int32_t)((int32_t)L_13|(int32_t)1)); goto IL_0050; } IL_003a: { int32_t L_14 = V_2; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); bool L_15 = HashHelpers_IsPrime_mB435CA4898F891CCFE7227DB6721A9803E35099B(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_004c; } } { int32_t L_16 = V_2; if (!((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1))%(int32_t)((int32_t)101)))) { goto IL_004c; } } { int32_t L_17 = V_2; return L_17; } IL_004c: { int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)2)); } IL_0050: { int32_t L_19 = V_2; if ((((int32_t)L_19) < ((int32_t)((int32_t)2147483647LL)))) { goto IL_003a; } } { int32_t L_20 = ___min0; return L_20; } } // System.Int32 System.Collections.HashHelpers::ExpandPrime(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D (int32_t ___oldSize0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___oldSize0; V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_0)); int32_t L_1 = V_0; if ((!(((uint32_t)L_1) > ((uint32_t)((int32_t)2146435069))))) { goto IL_001a; } } { int32_t L_2 = ___oldSize0; if ((((int32_t)((int32_t)2146435069)) <= ((int32_t)L_2))) { goto IL_001a; } } { return ((int32_t)2146435069); } IL_001a: { int32_t L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_4 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297(L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.Collections.HashHelpers::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashHelpers__cctor_m73E11D520498610CE0C26CA94967CEDA5969111D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashHelpers__cctor_m73E11D520498610CE0C26CA94967CEDA5969111D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)72)); Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = L_0; RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_34_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_StaticFields*)il2cpp_codegen_static_fields_for(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var))->set_primes_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 // System.Void System.Collections.Hashtable::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m25CFEE0C3607B2CF35DCCC61FD924708F082BF90 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, bool ___trash0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { { Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA(__this, 0, (1.0f), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mAAFFE0698C829CFAFE176BD4A6C5DDA07A8ABDA9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA(__this, L_0, (1.0f), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_MetadataUsageId); s_Il2CppMethodInitialized = true; } double V_0 = 0.0; int32_t V_1 = 0; int32_t G_B10_0 = 0; { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_001f; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_RuntimeMethod_var); } IL_001f: { float L_3 = ___loadFactor1; if ((!(((float)L_3) >= ((float)(0.1f))))) { goto IL_002f; } } { float L_4 = ___loadFactor1; if ((((float)L_4) <= ((float)(1.0f)))) { goto IL_006c; } } IL_002f: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5; double L_7 = (0.1); RuntimeObject * L_8 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_7); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_6; double L_10 = (1.0); RuntimeObject * L_11 = Box(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_il2cpp_TypeInfo_var, &L_10); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_11); String_t* L_12 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5AC0F1CCB9B56649A036EFB0B54AE6828ECA8363, L_9, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralFF3FDE08B4063F92C5AE58D57837851945AEC18F, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_RuntimeMethod_var); } IL_006c: { float L_14 = ___loadFactor1; __this->set_loadFactor_4(((float)il2cpp_codegen_multiply((float)(0.72f), (float)L_14))); int32_t L_15 = ___capacity0; float L_16 = __this->get_loadFactor_4(); V_0 = (((double)((double)(double)((float)((float)(((float)((float)L_15)))/(float)L_16))))); double L_17 = V_0; if ((!(((double)L_17) > ((double)(2147483647.0))))) { goto IL_00a0; } } { String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9F7A8DB88B79D714FDF244C54DAED0DF890BE664, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_19, L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, NULL, Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA_RuntimeMethod_var); } IL_00a0: { double L_20 = V_0; if ((((double)L_20) > ((double)(3.0)))) { goto IL_00af; } } { G_B10_0 = 3; goto IL_00b6; } IL_00af: { double L_21 = V_0; IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_22 = HashHelpers_GetPrime_m743D7006C2BCBADC1DC8CACF7C5B78C9F6B38297((((int32_t)((int32_t)(int32_t)L_21))), /*hidden argument*/NULL); G_B10_0 = L_22; } IL_00b6: { V_1 = G_B10_0; int32_t L_23 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_24 = (bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)SZArrayNew(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A_il2cpp_TypeInfo_var, (uint32_t)L_23); __this->set_buckets_0(L_24); float L_25 = __this->get_loadFactor_4(); int32_t L_26 = V_1; __this->set_loadsize_3((((int32_t)((int32_t)(int32_t)((float)il2cpp_codegen_multiply((float)L_25, (float)(((float)((float)L_26))))))))); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IHashCodeProvider,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD46ADBCA982FA8472FC5BB378805806A4E9B0066 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___hcp2, RuntimeObject* ___comparer3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable__ctor_mD46ADBCA982FA8472FC5BB378805806A4E9B0066_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___capacity0; float L_1 = ___loadFactor1; Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA(__this, L_0, L_1, /*hidden argument*/NULL); RuntimeObject* L_2 = ___hcp2; if (L_2) { goto IL_0017; } } { RuntimeObject* L_3 = ___comparer3; if (L_3) { goto IL_0017; } } { __this->set__keycomparer_8((RuntimeObject*)NULL); return; } IL_0017: { RuntimeObject* L_4 = ___comparer3; RuntimeObject* L_5 = ___hcp2; CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * L_6 = (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 *)il2cpp_codegen_object_new(CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00_il2cpp_TypeInfo_var); CompatibleComparer__ctor_m3FA12981F83EB4F3A494E99EF85094EB745467F7(L_6, L_4, L_5, /*hidden argument*/NULL); __this->set__keycomparer_8(L_6); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Single,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m8366AAA825F2A5D450EE8A4A65E5844DF29B7AF0 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, float ___loadFactor1, RuntimeObject* ___equalityComparer2, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; float L_1 = ___loadFactor1; Hashtable__ctor_mB01B74BE425205BE869B6359C673B778B682E7CA(__this, L_0, L_1, /*hidden argument*/NULL); RuntimeObject* L_2 = ___equalityComparer2; __this->set__keycomparer_8(L_2); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Collections.IHashCodeProvider,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mFC259F7B115F0D1AEDE934D8CF7F1288A10A1DFB (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject* ___hcp0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___hcp0; RuntimeObject* L_1 = ___comparer1; Hashtable__ctor_mD46ADBCA982FA8472FC5BB378805806A4E9B0066(__this, 0, (1.0f), L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m97E445FF917A8828D5927A66E70CF89394A16D4A (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject* ___equalityComparer0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___equalityComparer0; Hashtable__ctor_m8366AAA825F2A5D450EE8A4A65E5844DF29B7AF0(__this, 0, (1.0f), L_0, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Int32,System.Collections.IEqualityComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m99DEEBD0F97806D7B365F2BF4ED68D775BFCED8D (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___capacity0, RuntimeObject* ___equalityComparer1, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; RuntimeObject* L_1 = ___equalityComparer1; Hashtable__ctor_m8366AAA825F2A5D450EE8A4A65E5844DF29B7AF0(__this, L_0, (1.0f), L_1, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m7CD7D10246451D96AD05E8A593AA1E74412FA453 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable__ctor_m7CD7D10246451D96AD05E8A593AA1E74412FA453_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_0 = HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42(/*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0; NullCheck(L_0); ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE(L_0, __this, L_1, /*hidden argument*/ConditionalWeakTable_2_Add_mCC3585BE91A7BDFC49EEFDE4C11173A36D1FB5FE_RuntimeMethod_var); return; } } // System.UInt32 System.Collections.Hashtable::InitHash(System.Object,System.Int32,System.UInt32&,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, int32_t ___hashsize1, uint32_t* ___seed2, uint32_t* ___incr3, const RuntimeMethod* method) { uint32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; int32_t L_1 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(21 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_0); V_0 = ((int32_t)((int32_t)L_1&(int32_t)((int32_t)2147483647LL))); uint32_t* L_2 = ___seed2; uint32_t L_3 = V_0; *((int32_t*)L_2) = (int32_t)L_3; uint32_t* L_4 = ___incr3; uint32_t* L_5 = ___seed2; int32_t L_6 = *((uint32_t*)L_5); int32_t L_7 = ___hashsize1; *((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_6, (int32_t)((int32_t)101)))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)))))); uint32_t L_8 = V_0; return L_8; } } // System.Void System.Collections.Hashtable::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Add_m464A8871A9920679B8BCC853643F196B92621AF7 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Clear_m2AB80AE52C836A1D26BE561AE8CBB0DB604E5A92 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_count_1(); if (L_0) { goto IL_0011; } } { int32_t L_1 = __this->get_occupancy_2(); if (L_1) { goto IL_0011; } } { return; } IL_0011: { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); V_0 = 0; goto IL_005d; } IL_0023: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = __this->get_buckets_0(); int32_t L_3 = V_0; NullCheck(L_2); ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->set_hash_coll_2(0); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_4 = __this->get_buckets_0(); int32_t L_5 = V_0; NullCheck(L_4); ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->set_key_0(NULL); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_6 = __this->get_buckets_0(); int32_t L_7 = V_0; NullCheck(L_6); ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->set_val_1(NULL); int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_005d: { int32_t L_9 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_10 = __this->get_buckets_0(); NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))) { goto IL_0023; } } { __this->set_count_1(0); __this->set_occupancy_2(0); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } } // System.Object System.Collections.Hashtable::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Hashtable_Clone_mD697F5066D65C43824AEE21166D2A13A8C48CCED (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_Clone_mD697F5066D65C43824AEE21166D2A13A8C48CCED_MetadataUsageId); s_Il2CppMethodInitialized = true; } bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_0 = NULL; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * V_1 = NULL; int32_t V_2 = 0; RuntimeObject * V_3 = NULL; { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); V_0 = L_0; int32_t L_1 = __this->get_count_1(); RuntimeObject* L_2 = __this->get__keycomparer_8(); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var); Hashtable__ctor_m99DEEBD0F97806D7B365F2BF4ED68D775BFCED8D(L_3, L_1, L_2, /*hidden argument*/NULL); V_1 = L_3; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_4 = V_1; int32_t L_5 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); NullCheck(L_4); il2cpp_codegen_memory_barrier(); L_4->set_version_5(L_5); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = V_1; float L_7 = __this->get_loadFactor_4(); NullCheck(L_6); L_6->set_loadFactor_4(L_7); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_8 = V_1; NullCheck(L_8); L_8->set_count_1(0); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_9 = V_0; NullCheck(L_9); V_2 = (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))); goto IL_006d; } IL_0042: { int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1)); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_11 = V_0; int32_t L_12 = V_2; NullCheck(L_11); RuntimeObject * L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->get_key_0(); V_3 = L_13; RuntimeObject * L_14 = V_3; if (!L_14) { goto IL_006d; } } { RuntimeObject * L_15 = V_3; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_16 = V_0; if ((((RuntimeObject*)(RuntimeObject *)L_15) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_16))) { goto IL_006d; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_17 = V_1; RuntimeObject * L_18 = V_3; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_19 = V_0; int32_t L_20 = V_2; NullCheck(L_19); RuntimeObject * L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_val_1(); NullCheck(L_17); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_17, L_18, L_21); } IL_006d: { int32_t L_22 = V_2; if ((((int32_t)L_22) > ((int32_t)0))) { goto IL_0042; } } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_23 = V_1; return L_23; } } // System.Boolean System.Collections.Hashtable::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_Contains_m79926516859B7D4825E59FA348E675021716D3C4 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; bool L_1 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(16 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, __this, L_0); return L_1; } } // System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_ContainsKey_mF8D5E3E33831B9A7EA5365B580EE03B234975EC2 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_ContainsKey_mF8D5E3E33831B9A7EA5365B580EE03B234975EC2_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint32_t V_1 = 0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_2 = NULL; uint32_t V_3 = 0; int32_t V_4 = 0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable_ContainsKey_mF8D5E3E33831B9A7EA5365B580EE03B234975EC2_RuntimeMethod_var); } IL_0018: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_3 = __this->get_buckets_0(); V_2 = L_3; RuntimeObject * L_4 = ___key0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_5 = V_2; NullCheck(L_5); uint32_t L_6 = Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9(__this, L_4, (((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (uint32_t*)(&V_0), (uint32_t*)(&V_1), /*hidden argument*/NULL); V_3 = L_6; V_4 = 0; uint32_t L_7 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_8 = V_2; NullCheck(L_8); V_6 = ((int32_t)((uint32_t)(int32_t)L_7%(uint32_t)(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); } IL_0038: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_9 = V_2; int32_t L_10 = V_6; NullCheck(L_9); int32_t L_11 = L_10; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); V_5 = L_12; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_13 = V_5; RuntimeObject * L_14 = L_13.get_key_0(); if (L_14) { goto IL_004d; } } { return (bool)0; } IL_004d: { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_15 = V_5; int32_t L_16 = L_15.get_hash_coll_2(); uint32_t L_17 = V_3; if ((!(((uint64_t)(((int64_t)((int64_t)((int32_t)((int32_t)L_16&(int32_t)((int32_t)2147483647LL))))))) == ((uint64_t)(((int64_t)((uint64_t)L_17))))))) { goto IL_0071; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_18 = V_5; RuntimeObject * L_19 = L_18.get_key_0(); RuntimeObject * L_20 = ___key0; bool L_21 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_19, L_20); if (!L_21) { goto IL_0071; } } { return (bool)1; } IL_0071: { int32_t L_22 = V_6; uint32_t L_23 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_24 = V_2; NullCheck(L_24); V_6 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_22))), (int64_t)(((int64_t)((uint64_t)L_23)))))%(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length))))))))))))))); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_25 = V_5; int32_t L_26 = L_25.get_hash_coll_2(); if ((((int32_t)L_26) >= ((int32_t)0))) { goto IL_0095; } } { int32_t L_27 = V_4; int32_t L_28 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); V_4 = L_28; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_29 = V_2; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))))) { goto IL_0038; } } IL_0095: { return (bool)0; } } // System.Void System.Collections.Hashtable::CopyKeys(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyKeys_m84AE68F9F9B7C73AE749F45EDAE2413398D0F2BF (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_0 = NULL; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); V_0 = L_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = V_0; NullCheck(L_1); V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))); goto IL_0033; } IL_000d: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = V_0; int32_t L_3 = V_1; NullCheck(L_2); RuntimeObject * L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->get_key_0(); V_2 = L_4; RuntimeObject * L_5 = V_2; if (!L_5) { goto IL_0033; } } { RuntimeObject * L_6 = V_2; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_7 = __this->get_buckets_0(); if ((((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_7))) { goto IL_0033; } } { RuntimeArray * L_8 = ___array0; RuntimeObject * L_9 = V_2; int32_t L_10 = ___arrayIndex1; int32_t L_11 = L_10; ___arrayIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); NullCheck(L_8); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_8, L_9, L_11, /*hidden argument*/NULL); } IL_0033: { int32_t L_12 = V_1; int32_t L_13 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)); V_1 = L_13; if ((((int32_t)L_13) >= ((int32_t)0))) { goto IL_000d; } } { return; } } // System.Void System.Collections.Hashtable::CopyEntries(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyEntries_mFA218BB5B5B0109BBE5D84BE71989E08E1C6DEAB (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_CopyEntries_mFA218BB5B5B0109BBE5D84BE71989E08E1C6DEAB_MetadataUsageId); s_Il2CppMethodInitialized = true; } bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_0 = NULL; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_3; memset((&V_3), 0, sizeof(V_3)); { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); V_0 = L_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = V_0; NullCheck(L_1); V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))); goto IL_004c; } IL_000d: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = V_0; int32_t L_3 = V_1; NullCheck(L_2); RuntimeObject * L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->get_key_0(); V_2 = L_4; RuntimeObject * L_5 = V_2; if (!L_5) { goto IL_004c; } } { RuntimeObject * L_6 = V_2; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_7 = __this->get_buckets_0(); if ((((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_7))) { goto IL_004c; } } { RuntimeObject * L_8 = V_2; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); RuntimeObject * L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_val_1(); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_3), L_8, L_11, /*hidden argument*/NULL); RuntimeArray * L_12 = ___array0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_13 = V_3; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_14 = L_13; RuntimeObject * L_15 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_14); int32_t L_16 = ___arrayIndex1; int32_t L_17 = L_16; ___arrayIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); NullCheck(L_12); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_12, L_15, L_17, /*hidden argument*/NULL); } IL_004c: { int32_t L_18 = V_1; int32_t L_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1)); V_1 = L_19; if ((((int32_t)L_19) >= ((int32_t)0))) { goto IL_000d; } } { return; } } // System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_RuntimeMethod_var); } IL_0018: { RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_RuntimeMethod_var); } IL_0031: { int32_t L_7 = ___arrayIndex1; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_004a; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_RuntimeMethod_var); } IL_004a: { RuntimeArray * L_10 = ___array0; NullCheck(L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL); int32_t L_12 = ___arrayIndex1; int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Collections.Hashtable::get_Count() */, __this); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12))) >= ((int32_t)L_13))) { goto IL_006a; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, Hashtable_CopyTo_mD66BC09F9CC73B67880F024273733BED75A89F0F_RuntimeMethod_var); } IL_006a: { RuntimeArray * L_16 = ___array0; int32_t L_17 = ___arrayIndex1; Hashtable_CopyEntries_mFA218BB5B5B0109BBE5D84BE71989E08E1C6DEAB(__this, L_16, L_17, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::CopyValues(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyValues_m3FD762F0A826EFE7C7CBBC5EEC14C47B1CEF5219 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_0 = NULL; int32_t V_1 = 0; RuntimeObject * V_2 = NULL; { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); V_0 = L_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = V_0; NullCheck(L_1); V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))); goto IL_003e; } IL_000d: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = V_0; int32_t L_3 = V_1; NullCheck(L_2); RuntimeObject * L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->get_key_0(); V_2 = L_4; RuntimeObject * L_5 = V_2; if (!L_5) { goto IL_003e; } } { RuntimeObject * L_6 = V_2; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_7 = __this->get_buckets_0(); if ((((RuntimeObject*)(RuntimeObject *)L_6) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_7))) { goto IL_003e; } } { RuntimeArray * L_8 = ___array0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_9 = V_0; int32_t L_10 = V_1; NullCheck(L_9); RuntimeObject * L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_val_1(); int32_t L_12 = ___arrayIndex1; int32_t L_13 = L_12; ___arrayIndex1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); NullCheck(L_8); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_8, L_11, L_13, /*hidden argument*/NULL); } IL_003e: { int32_t L_14 = V_1; int32_t L_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1)); V_1 = L_15; if ((((int32_t)L_15) >= ((int32_t)0))) { goto IL_000d; } } { return; } } // System.Object System.Collections.Hashtable::get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Hashtable_get_Item_m318E99E98C0D89181C50EE2A01907E2530C61845 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_get_Item_m318E99E98C0D89181C50EE2A01907E2530C61845_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint32_t V_1 = 0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_2 = NULL; uint32_t V_3 = 0; int32_t V_4 = 0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_5; memset((&V_5), 0, sizeof(V_5)); int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable_get_Item_m318E99E98C0D89181C50EE2A01907E2530C61845_RuntimeMethod_var); } IL_0018: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_3 = __this->get_buckets_0(); V_2 = L_3; RuntimeObject * L_4 = ___key0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_5 = V_2; NullCheck(L_5); uint32_t L_6 = Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9(__this, L_4, (((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (uint32_t*)(&V_0), (uint32_t*)(&V_1), /*hidden argument*/NULL); V_3 = L_6; V_4 = 0; uint32_t L_7 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_8 = V_2; NullCheck(L_8); V_6 = ((int32_t)((uint32_t)(int32_t)L_7%(uint32_t)(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))); } IL_0038: { V_8 = 0; } IL_003b: { int32_t L_9 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); V_7 = L_9; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_10 = V_2; int32_t L_11 = V_6; NullCheck(L_10); int32_t L_12 = L_11; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); V_5 = L_13; int32_t L_14 = V_8; int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); V_8 = L_15; if (((int32_t)((int32_t)L_15%(int32_t)8))) { goto IL_0060; } } { Thread_Sleep_m2CD320EAB7BE02CC1F395EAFE9970D53A5F9EAEF(1, /*hidden argument*/NULL); } IL_0060: { bool L_16 = __this->get_isWriterInProgress_6(); il2cpp_codegen_memory_barrier(); if (L_16) { goto IL_003b; } } { int32_t L_17 = V_7; int32_t L_18 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_17) == ((uint32_t)L_18)))) { goto IL_003b; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_19 = V_5; RuntimeObject * L_20 = L_19.get_key_0(); if (L_20) { goto IL_0081; } } { return NULL; } IL_0081: { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_21 = V_5; int32_t L_22 = L_21.get_hash_coll_2(); uint32_t L_23 = V_3; if ((!(((uint64_t)(((int64_t)((int64_t)((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647LL))))))) == ((uint64_t)(((int64_t)((uint64_t)L_23))))))) { goto IL_00ab; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_24 = V_5; RuntimeObject * L_25 = L_24.get_key_0(); RuntimeObject * L_26 = ___key0; bool L_27 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_25, L_26); if (!L_27) { goto IL_00ab; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_28 = V_5; RuntimeObject * L_29 = L_28.get_val_1(); return L_29; } IL_00ab: { int32_t L_30 = V_6; uint32_t L_31 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_32 = V_2; NullCheck(L_32); V_6 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_30))), (int64_t)(((int64_t)((uint64_t)L_31)))))%(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))))))))))))); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_33 = V_5; int32_t L_34 = L_33.get_hash_coll_2(); if ((((int32_t)L_34) >= ((int32_t)0))) { goto IL_00d2; } } { int32_t L_35 = V_4; int32_t L_36 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); V_4 = L_36; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_37 = V_2; NullCheck(L_37); if ((((int32_t)L_36) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))))))) { goto IL_0038; } } IL_00d2: { return NULL; } } // System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_set_Item_m42EB4588D6679744F9BE7C2E9FE58EFC91B9F66B (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { { RuntimeObject * L_0 = ___key0; RuntimeObject * L_1 = ___value1; Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::expand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_expand_mD61249F8FD7525FB392A38813E65A1E932FD6CA9 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_expand_mD61249F8FD7525FB392A38813E65A1E932FD6CA9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); NullCheck(L_0); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); int32_t L_1 = HashHelpers_ExpandPrime_m4245F4C95074EAA8F949FB3B734F611A533A6A0D((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE(__this, L_2, (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::rehash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m363B9C1D24C59E196485980E03EDC34B1265567A (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); NullCheck(L_0); Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE(__this, (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (bool)0, /*hidden argument*/NULL); return; } } // System.Void System.Collections.Hashtable::UpdateVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); il2cpp_codegen_memory_barrier(); __this->set_version_5(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); return; } } // System.Void System.Collections.Hashtable::rehash(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, int32_t ___newsize0, bool ___forceNewHashCode1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_rehash_m887D3270107773DE11C33E0396BC119EA17958CE_MetadataUsageId); s_Il2CppMethodInitialized = true; } bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* V_0 = NULL; int32_t V_1 = 0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; int32_t G_B6_0 = 0; { __this->set_occupancy_2(0); int32_t L_0 = ___newsize0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = (bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)SZArrayNew(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; V_1 = 0; goto IL_006b; } IL_0012: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = __this->get_buckets_0(); int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_2 = L_5; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_6 = V_2; RuntimeObject * L_7 = L_6.get_key_0(); if (!L_7) { goto IL_0067; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_8 = V_2; RuntimeObject * L_9 = L_8.get_key_0(); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_10 = __this->get_buckets_0(); if ((((RuntimeObject*)(RuntimeObject *)L_9) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_10))) { goto IL_0067; } } { bool L_11 = ___forceNewHashCode1; if (L_11) { goto IL_0040; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_12 = V_2; int32_t L_13 = L_12.get_hash_coll_2(); G_B6_0 = L_13; goto IL_004c; } IL_0040: { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_14 = V_2; RuntimeObject * L_15 = L_14.get_key_0(); int32_t L_16 = VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(21 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_15); G_B6_0 = L_16; } IL_004c: { V_3 = ((int32_t)((int32_t)G_B6_0&(int32_t)((int32_t)2147483647LL))); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_17 = V_0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_18 = V_2; RuntimeObject * L_19 = L_18.get_key_0(); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_20 = V_2; RuntimeObject * L_21 = L_20.get_val_1(); int32_t L_22 = V_3; Hashtable_putEntry_m78B9261F87753554D08F85CA09D38D017611F902(__this, L_17, L_19, L_21, L_22, /*hidden argument*/NULL); } IL_0067: { int32_t L_23 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_006b: { int32_t L_24 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_25 = __this->get_buckets_0(); NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))))))) { goto IL_0012; } } { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_26 = V_0; __this->set_buckets_0(L_26); float L_27 = __this->get_loadFactor_4(); int32_t L_28 = ___newsize0; __this->set_loadsize_3((((int32_t)((int32_t)(int32_t)((float)il2cpp_codegen_multiply((float)L_27, (float)(((float)((float)L_28))))))))); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Collections.Hashtable::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_System_Collections_IEnumerable_GetEnumerator_m0EB021D95A8CCD7551ABDCED313551726FD5BF58 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_System_Collections_IEnumerable_GetEnumerator_m0EB021D95A8CCD7551ABDCED313551726FD5BF58_MetadataUsageId); s_Il2CppMethodInitialized = true; } { HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * L_0 = (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 *)il2cpp_codegen_object_new(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9_il2cpp_TypeInfo_var); HashtableEnumerator__ctor_mA4893AEBBF14528B90AF67E83490AC2CE935A166(L_0, __this, 3, /*hidden argument*/NULL); return L_0; } } // System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_GetEnumerator_mB0ADCB33B48CAFAC8FFD293A6B9A52FAB04E86BC (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_GetEnumerator_mB0ADCB33B48CAFAC8FFD293A6B9A52FAB04E86BC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * L_0 = (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 *)il2cpp_codegen_object_new(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9_il2cpp_TypeInfo_var); HashtableEnumerator__ctor_mA4893AEBBF14528B90AF67E83490AC2CE935A166(L_0, __this, 3, /*hidden argument*/NULL); return L_0; } } // System.Int32 System.Collections.Hashtable::GetHash(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hashtable_GetHash_m3C9E2CA3CD91D77A371C95CD6A779007D5737524 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_GetHash_m3C9E2CA3CD91D77A371C95CD6A779007D5737524_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get__keycomparer_8(); if (!L_0) { goto IL_0015; } } { RuntimeObject* L_1 = __this->get__keycomparer_8(); RuntimeObject * L_2 = ___key0; NullCheck(L_1); int32_t L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_1, L_2); return L_3; } IL_0015: { RuntimeObject * L_4 = ___key0; NullCheck(L_4); int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4); return L_5; } } // System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_KeyEquals_mA81BC468DA574BB7F49C21FA7DDFB29756715D1E (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___item0, RuntimeObject * ___key1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_KeyEquals_mA81BC468DA574BB7F49C21FA7DDFB29756715D1E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); RuntimeObject * L_1 = ___item0; if ((!(((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_000b; } } { return (bool)0; } IL_000b: { RuntimeObject * L_2 = ___item0; RuntimeObject * L_3 = ___key1; if ((!(((RuntimeObject*)(RuntimeObject *)L_2) == ((RuntimeObject*)(RuntimeObject *)L_3)))) { goto IL_0011; } } { return (bool)1; } IL_0011: { RuntimeObject* L_4 = __this->get__keycomparer_8(); if (!L_4) { goto IL_0027; } } { RuntimeObject* L_5 = __this->get__keycomparer_8(); RuntimeObject * L_6 = ___item0; RuntimeObject * L_7 = ___key1; NullCheck(L_5); bool L_8 = InterfaceFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var, L_5, L_6, L_7); return L_8; } IL_0027: { RuntimeObject * L_9 = ___item0; if (!L_9) { goto IL_0032; } } { RuntimeObject * L_10 = ___item0; RuntimeObject * L_11 = ___key1; NullCheck(L_10); bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_10, L_11); return L_12; } IL_0032: { return (bool)0; } } // System.Collections.ICollection System.Collections.Hashtable::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_get_Keys_m45C0AA6F70F3225F84E144BD91DCE789F7FB4AC1 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_get_Keys_m45C0AA6F70F3225F84E144BD91DCE789F7FB4AC1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = __this->get_keys_7(); if (L_0) { goto IL_0014; } } { KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * L_1 = (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 *)il2cpp_codegen_object_new(KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2_il2cpp_TypeInfo_var); KeyCollection__ctor_m58E48C20C50744A6E711BA0504B8520945C5DD4B(L_1, __this, /*hidden argument*/NULL); __this->set_keys_7(L_1); } IL_0014: { RuntimeObject* L_2 = __this->get_keys_7(); return L_2; } } // System.Void System.Collections.Hashtable::Insert(System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, RuntimeObject * ___nvalue1, bool ___add2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint32_t V_1 = 0; uint32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get_count_1(); int32_t L_4 = __this->get_loadsize_3(); if ((((int32_t)L_3) < ((int32_t)L_4))) { goto IL_002e; } } { Hashtable_expand_mD61249F8FD7525FB392A38813E65A1E932FD6CA9(__this, /*hidden argument*/NULL); goto IL_004c; } IL_002e: { int32_t L_5 = __this->get_occupancy_2(); int32_t L_6 = __this->get_loadsize_3(); if ((((int32_t)L_5) <= ((int32_t)L_6))) { goto IL_004c; } } { int32_t L_7 = __this->get_count_1(); if ((((int32_t)L_7) <= ((int32_t)((int32_t)100)))) { goto IL_004c; } } { Hashtable_rehash_m363B9C1D24C59E196485980E03EDC34B1265567A(__this, /*hidden argument*/NULL); } IL_004c: { RuntimeObject * L_8 = ___key0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_9 = __this->get_buckets_0(); NullCheck(L_9); uint32_t L_10 = Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9(__this, L_8, (((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (uint32_t*)(&V_0), (uint32_t*)(&V_1), /*hidden argument*/NULL); V_2 = L_10; V_3 = 0; V_4 = (-1); uint32_t L_11 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_12 = __this->get_buckets_0(); NullCheck(L_12); V_5 = ((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))); } IL_0071: { int32_t L_13 = V_4; if ((!(((uint32_t)L_13) == ((uint32_t)(-1))))) { goto IL_00a9; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_14 = __this->get_buckets_0(); int32_t L_15 = V_5; NullCheck(L_14); RuntimeObject * L_16 = ((L_14)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)))->get_key_0(); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_17 = __this->get_buckets_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_16) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_17)))) { goto IL_00a9; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_18 = __this->get_buckets_0(); int32_t L_19 = V_5; NullCheck(L_18); int32_t L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_hash_coll_2(); if ((((int32_t)L_20) >= ((int32_t)0))) { goto IL_00a9; } } { int32_t L_21 = V_5; V_4 = L_21; } IL_00a9: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_22 = __this->get_buckets_0(); int32_t L_23 = V_5; NullCheck(L_22); RuntimeObject * L_24 = ((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)))->get_key_0(); if (!L_24) { goto IL_00f6; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_25 = __this->get_buckets_0(); int32_t L_26 = V_5; NullCheck(L_25); RuntimeObject * L_27 = ((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->get_key_0(); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_28 = __this->get_buckets_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_27) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_28)))) { goto IL_016d; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_29 = __this->get_buckets_0(); int32_t L_30 = V_5; NullCheck(L_29); int32_t L_31 = ((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->get_hash_coll_2(); if (((int64_t)((int64_t)(((int64_t)((int64_t)L_31)))&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))))) { goto IL_016d; } } IL_00f6: { int32_t L_32 = V_4; if ((((int32_t)L_32) == ((int32_t)(-1)))) { goto IL_00ff; } } { int32_t L_33 = V_4; V_5 = L_33; } IL_00ff: { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_34 = __this->get_buckets_0(); int32_t L_35 = V_5; NullCheck(L_34); RuntimeObject * L_36 = ___nvalue1; ((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->set_val_1(L_36); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_37 = __this->get_buckets_0(); int32_t L_38 = V_5; NullCheck(L_37); RuntimeObject * L_39 = ___key0; ((L_37)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_38)))->set_key_0(L_39); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_40 = __this->get_buckets_0(); int32_t L_41 = V_5; NullCheck(L_40); int32_t* L_42 = ((L_40)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_41)))->get_address_of_hash_coll_2(); int32_t* L_43 = L_42; int32_t L_44 = *((int32_t*)L_43); uint32_t L_45 = V_2; *((int32_t*)L_43) = (int32_t)((int32_t)((int32_t)L_44|(int32_t)L_45)); int32_t L_46 = __this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1))); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } IL_016d: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_47 = __this->get_buckets_0(); int32_t L_48 = V_5; NullCheck(L_47); int32_t L_49 = ((L_47)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_48)))->get_hash_coll_2(); uint32_t L_50 = V_2; if ((!(((uint64_t)(((int64_t)((int64_t)((int32_t)((int32_t)L_49&(int32_t)((int32_t)2147483647LL))))))) == ((uint64_t)(((int64_t)((uint64_t)L_50))))))) { goto IL_0210; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_51 = __this->get_buckets_0(); int32_t L_52 = V_5; NullCheck(L_51); RuntimeObject * L_53 = ((L_51)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_52)))->get_key_0(); RuntimeObject * L_54 = ___key0; bool L_55 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_53, L_54); if (!L_55) { goto IL_0210; } } { bool L_56 = ___add2; if (!L_56) { goto IL_01da; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_57 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_58 = L_57; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_59 = __this->get_buckets_0(); int32_t L_60 = V_5; NullCheck(L_59); RuntimeObject * L_61 = ((L_59)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_60)))->get_key_0(); NullCheck(L_58); ArrayElementTypeCheck (L_58, L_61); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_61); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_62 = L_58; RuntimeObject * L_63 = ___key0; NullCheck(L_62); ArrayElementTypeCheck (L_62, L_63); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_63); String_t* L_64 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralEB43350789911DF5B5D17EB5DFF35D072DFF48B7, L_62, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_65 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_65, L_64, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, NULL, Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_RuntimeMethod_var); } IL_01da: { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_66 = __this->get_buckets_0(); int32_t L_67 = V_5; NullCheck(L_66); RuntimeObject * L_68 = ___nvalue1; ((L_66)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_67)))->set_val_1(L_68); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } IL_0210: { int32_t L_69 = V_4; if ((!(((uint32_t)L_69) == ((uint32_t)(-1))))) { goto IL_0253; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_70 = __this->get_buckets_0(); int32_t L_71 = V_5; NullCheck(L_70); int32_t L_72 = ((L_70)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_71)))->get_hash_coll_2(); if ((((int32_t)L_72) < ((int32_t)0))) { goto IL_0253; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_73 = __this->get_buckets_0(); int32_t L_74 = V_5; NullCheck(L_73); int32_t* L_75 = ((L_73)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_74)))->get_address_of_hash_coll_2(); int32_t* L_76 = L_75; int32_t L_77 = *((int32_t*)L_76); *((int32_t*)L_76) = (int32_t)((int32_t)((int32_t)L_77|(int32_t)((int32_t)-2147483648LL))); int32_t L_78 = __this->get_occupancy_2(); __this->set_occupancy_2(((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)1))); } IL_0253: { int32_t L_79 = V_5; uint32_t L_80 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_81 = __this->get_buckets_0(); NullCheck(L_81); V_5 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_79))), (int64_t)(((int64_t)((uint64_t)L_80)))))%(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_81)->max_length))))))))))))))); int32_t L_82 = V_3; int32_t L_83 = ((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)1)); V_3 = L_83; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_84 = __this->get_buckets_0(); NullCheck(L_84); if ((((int32_t)L_83) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_84)->max_length))))))) { goto IL_0071; } } { int32_t L_85 = V_4; if ((((int32_t)L_85) == ((int32_t)(-1)))) { goto IL_02eb; } } { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_86 = __this->get_buckets_0(); int32_t L_87 = V_4; NullCheck(L_86); RuntimeObject * L_88 = ___nvalue1; ((L_86)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_87)))->set_val_1(L_88); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_89 = __this->get_buckets_0(); int32_t L_90 = V_4; NullCheck(L_89); RuntimeObject * L_91 = ___key0; ((L_89)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_90)))->set_key_0(L_91); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_92 = __this->get_buckets_0(); int32_t L_93 = V_4; NullCheck(L_92); int32_t* L_94 = ((L_92)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_93)))->get_address_of_hash_coll_2(); int32_t* L_95 = L_94; int32_t L_96 = *((int32_t*)L_95); uint32_t L_97 = V_2; *((int32_t*)L_95) = (int32_t)((int32_t)((int32_t)L_96|(int32_t)L_97)); int32_t L_98 = __this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1))); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } IL_02eb: { String_t* L_99 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99F4F93397464B9B22D889334853A1E3A78A5641, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_100 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_100, L_99, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_100, NULL, Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4_RuntimeMethod_var); } } // System.Void System.Collections.Hashtable::putEntry(System.Collections.Hashtable_bucket[],System.Object,System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_putEntry_m78B9261F87753554D08F85CA09D38D017611F902 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___newBuckets0, RuntimeObject * ___key1, RuntimeObject * ___nvalue2, int32_t ___hashcode3, const RuntimeMethod* method) { uint32_t V_0 = 0; uint32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0 = ___hashcode3; V_0 = L_0; uint32_t L_1 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = ___newBuckets0; NullCheck(L_2); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)101)))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))), (int32_t)1)))))); uint32_t L_3 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_4 = ___newBuckets0; NullCheck(L_4); V_2 = ((int32_t)((uint32_t)(int32_t)L_3%(uint32_t)(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))); } IL_0016: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_5 = ___newBuckets0; int32_t L_6 = V_2; NullCheck(L_5); RuntimeObject * L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_key_0(); if (!L_7) { goto IL_0038; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_8 = ___newBuckets0; int32_t L_9 = V_2; NullCheck(L_8); RuntimeObject * L_10 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->get_key_0(); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_11 = __this->get_buckets_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_10) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_11)))) { goto IL_0065; } } IL_0038: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_12 = ___newBuckets0; int32_t L_13 = V_2; NullCheck(L_12); RuntimeObject * L_14 = ___nvalue2; ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->set_val_1(L_14); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_15 = ___newBuckets0; int32_t L_16 = V_2; NullCheck(L_15); RuntimeObject * L_17 = ___key1; ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->set_key_0(L_17); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_18 = ___newBuckets0; int32_t L_19 = V_2; NullCheck(L_18); int32_t* L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->get_address_of_hash_coll_2(); int32_t* L_21 = L_20; int32_t L_22 = *((int32_t*)L_21); int32_t L_23 = ___hashcode3; *((int32_t*)L_21) = (int32_t)((int32_t)((int32_t)L_22|(int32_t)L_23)); return; } IL_0065: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_24 = ___newBuckets0; int32_t L_25 = V_2; NullCheck(L_24); int32_t L_26 = ((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_hash_coll_2(); if ((((int32_t)L_26) < ((int32_t)0))) { goto IL_0097; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_27 = ___newBuckets0; int32_t L_28 = V_2; NullCheck(L_27); int32_t* L_29 = ((L_27)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_28)))->get_address_of_hash_coll_2(); int32_t* L_30 = L_29; int32_t L_31 = *((int32_t*)L_30); *((int32_t*)L_30) = (int32_t)((int32_t)((int32_t)L_31|(int32_t)((int32_t)-2147483648LL))); int32_t L_32 = __this->get_occupancy_2(); __this->set_occupancy_2(((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1))); } IL_0097: { int32_t L_33 = V_2; uint32_t L_34 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_35 = ___newBuckets0; NullCheck(L_35); V_2 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_33))), (int64_t)(((int64_t)((uint64_t)L_34)))))%(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))))))))))))); goto IL_0016; } } // System.Void System.Collections.Hashtable::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Remove_m014FCCA149EB4F54A018B29D4469FC407C1787ED (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_Remove_m014FCCA149EB4F54A018B29D4469FC407C1787ED_MetadataUsageId); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; uint32_t V_1 = 0; uint32_t V_2 = 0; int32_t V_3 = 0; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_4; memset((&V_4), 0, sizeof(V_4)); int32_t V_5 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Hashtable_Remove_m014FCCA149EB4F54A018B29D4469FC407C1787ED_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_3 = ___key0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_4 = __this->get_buckets_0(); NullCheck(L_4); uint32_t L_5 = Hashtable_InitHash_m4ADC5258F3CB8CAB7CC58C042AB816CB6A6598F9(__this, L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (uint32_t*)(&V_0), (uint32_t*)(&V_1), /*hidden argument*/NULL); V_2 = L_5; V_3 = 0; uint32_t L_6 = V_0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_7 = __this->get_buckets_0(); NullCheck(L_7); V_5 = ((int32_t)((uint32_t)(int32_t)L_6%(uint32_t)(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); } IL_003a: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_8 = __this->get_buckets_0(); int32_t L_9 = V_5; NullCheck(L_8); int32_t L_10 = L_9; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); V_4 = L_11; bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_12 = V_4; int32_t L_13 = L_12.get_hash_coll_2(); uint32_t L_14 = V_2; if ((!(((uint64_t)(((int64_t)((int64_t)((int32_t)((int32_t)L_13&(int32_t)((int32_t)2147483647LL))))))) == ((uint64_t)(((int64_t)((uint64_t)L_14))))))) { goto IL_0111; } } { bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_15 = V_4; RuntimeObject * L_16 = L_15.get_key_0(); RuntimeObject * L_17 = ___key0; bool L_18 = VirtFuncInvoker2< bool, RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_16, L_17); if (!L_18) { goto IL_0111; } } { Thread_BeginCriticalRegion_m55EE44EB61B3CA75D6458FACAB208D7FA6D32D44(/*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_19 = __this->get_buckets_0(); int32_t L_20 = V_5; NullCheck(L_19); int32_t* L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->get_address_of_hash_coll_2(); int32_t* L_22 = L_21; int32_t L_23 = *((int32_t*)L_22); *((int32_t*)L_22) = (int32_t)((int32_t)((int32_t)L_23&(int32_t)((int32_t)-2147483648LL))); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_24 = __this->get_buckets_0(); int32_t L_25 = V_5; NullCheck(L_24); int32_t L_26 = ((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->get_hash_coll_2(); if (!L_26) { goto IL_00c8; } } { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_27 = __this->get_buckets_0(); int32_t L_28 = V_5; NullCheck(L_27); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_29 = __this->get_buckets_0(); ((L_27)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_28)))->set_key_0((RuntimeObject *)L_29); goto IL_00db; } IL_00c8: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_30 = __this->get_buckets_0(); int32_t L_31 = V_5; NullCheck(L_30); ((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->set_key_0(NULL); } IL_00db: { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_32 = __this->get_buckets_0(); int32_t L_33 = V_5; NullCheck(L_32); ((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->set_val_1(NULL); int32_t L_34 = __this->get_count_1(); __this->set_count_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1))); Hashtable_UpdateVersion_mE135F25D64318350FC3897F8F85DE799CBE982D7(__this, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_isWriterInProgress_6(0); Thread_EndCriticalRegion_mD3B15BD6F84DE9EFC254F87275F4EE52E4F0A96E(/*hidden argument*/NULL); return; } IL_0111: { int32_t L_35 = V_5; uint32_t L_36 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_37 = __this->get_buckets_0(); NullCheck(L_37); V_5 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_35))), (int64_t)(((int64_t)((uint64_t)L_36)))))%(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))))))))))))))); bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_38 = V_4; int32_t L_39 = L_38.get_hash_coll_2(); if ((((int32_t)L_39) >= ((int32_t)0))) { goto IL_0140; } } { int32_t L_40 = V_3; int32_t L_41 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); V_3 = L_41; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_42 = __this->get_buckets_0(); NullCheck(L_42); if ((((int32_t)L_41) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length))))))) { goto IL_003a; } } IL_0140: { return; } } // System.Object System.Collections.Hashtable::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Hashtable_get_SyncRoot_mBCF12760C5F3B488A6716AC604BCBB810510E937 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_get_SyncRoot_mBCF12760C5F3B488A6716AC604BCBB810510E937_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = __this->get__syncRoot_9(); if (L_0) { goto IL_001a; } } { RuntimeObject ** L_1 = __this->get_address_of__syncRoot_9(); RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL); InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)L_1, L_2, NULL); } IL_001a: { RuntimeObject * L_3 = __this->get__syncRoot_9(); return L_3; } } // System.Int32 System.Collections.Hashtable::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hashtable_get_Count_mA9BFE8216AA53D74E488BE1C0D675F43E8AEF136 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_count_1(); return L_0; } } // System.Collections.Hashtable System.Collections.Hashtable::Synchronized(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ___table0; 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, _stringLiteralC3EE137D4F22EB06ED1351D644F3674592C90836, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E_RuntimeMethod_var); } IL_000e: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = ___table0; SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * L_3 = (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 *)il2cpp_codegen_object_new(SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3_il2cpp_TypeInfo_var); SyncHashtable__ctor_m2CA4BAD2FE04F356B41CB54032144A6F577D960F(L_3, L_2, /*hidden argument*/NULL); return L_3; } } // System.Void System.Collections.Hashtable::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL; CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * V_6 = 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; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728_RuntimeMethod_var); } IL_000e: { RuntimeObject * L_2 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, __this); V_0 = L_2; V_1 = (bool)0; } IL_0017: try { // begin try (depth: 1) { RuntimeObject * L_3 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_3, (bool*)(&V_1), /*hidden argument*/NULL); int32_t L_4 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); V_2 = L_4; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0; float L_6 = __this->get_loadFactor_4(); NullCheck(L_5); SerializationInfo_AddValue_m00E7A843A1BB398AAC059B357DF478692285D305(L_5, _stringLiteralE45E3DB3ABF33F174FB8DDAE90335498382C3C69, L_6, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_7 = ___info0; int32_t L_8 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); NullCheck(L_7); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_7, _stringLiteral2DA600BF9404843107A9531694F654E5662959E0, L_8, /*hidden argument*/NULL); RuntimeObject* L_9 = __this->get__keycomparer_8(); V_3 = L_9; RuntimeObject* L_10 = V_3; if (L_10) { goto IL_0084; } } IL_0056: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_11 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_12 = { reinterpret_cast<intptr_t> (IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_13 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_12, /*hidden argument*/NULL); NullCheck(L_11); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_11, _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, NULL, L_13, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_0_0_0_var) }; Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL); NullCheck(L_14); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_14, _stringLiteral798D3C0CD01F7CDF9969473500381A70A011AB03, NULL, L_16, /*hidden argument*/NULL); goto IL_00e4; } IL_0084: { RuntimeObject* L_17 = V_3; if (!((CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 *)IsInstClass((RuntimeObject*)L_17, CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00_il2cpp_TypeInfo_var))) { goto IL_00ce; } } IL_008c: { RuntimeObject* L_18 = V_3; V_6 = ((CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 *)IsInstClass((RuntimeObject*)L_18, CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00_il2cpp_TypeInfo_var)); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_19 = ___info0; CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * L_20 = V_6; NullCheck(L_20); RuntimeObject* L_21 = CompatibleComparer_get_Comparer_mEBD487B199A5AEFF1B6F903B914067CC01303061_inline(L_20, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_22 = { reinterpret_cast<intptr_t> (IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_23 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_22, /*hidden argument*/NULL); NullCheck(L_19); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_19, _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, L_21, L_23, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_24 = ___info0; CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * L_25 = V_6; NullCheck(L_25); RuntimeObject* L_26 = CompatibleComparer_get_HashCodeProvider_m53653737058DB625DEE0F23D24129D0052BE0530_inline(L_25, /*hidden argument*/NULL); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_27 = { reinterpret_cast<intptr_t> (IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_0_0_0_var) }; Type_t * L_28 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_27, /*hidden argument*/NULL); NullCheck(L_24); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_24, _stringLiteral798D3C0CD01F7CDF9969473500381A70A011AB03, L_26, L_28, /*hidden argument*/NULL); goto IL_00e4; } IL_00ce: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_29 = ___info0; RuntimeObject* L_30 = V_3; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_31 = { reinterpret_cast<intptr_t> (IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_32 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_31, /*hidden argument*/NULL); NullCheck(L_29); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_29, _stringLiteralD1FC16D9CCC8BB317CAD3A233C43968EDF25DECF, L_30, L_32, /*hidden argument*/NULL); } IL_00e4: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_33 = ___info0; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_34 = __this->get_buckets_0(); NullCheck(L_34); NullCheck(L_33); SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_33, _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, (((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))), /*hidden argument*/NULL); int32_t L_35 = __this->get_count_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_36 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_35); V_4 = L_36; int32_t L_37 = __this->get_count_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_37); V_5 = L_38; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_39 = V_4; Hashtable_CopyKeys_m84AE68F9F9B7C73AE749F45EDAE2413398D0F2BF(__this, (RuntimeArray *)(RuntimeArray *)L_39, 0, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_40 = V_5; Hashtable_CopyValues_m3FD762F0A826EFE7C7CBBC5EEC14C47B1CEF5219(__this, (RuntimeArray *)(RuntimeArray *)L_40, 0, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_41 = ___info0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_42 = V_4; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL); NullCheck(L_41); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_41, _stringLiteralE5651C683F14C95AA972CFDBC300D9FECFE02019, (RuntimeObject *)(RuntimeObject *)L_42, L_44, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_45 = ___info0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_46 = V_5; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_0_0_0_var) }; Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); NullCheck(L_45); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_45, _stringLiteralB1564F6B1512CBFA3CFCEBC9A5BADB6B239954F1, (RuntimeObject *)(RuntimeObject *)L_46, L_48, /*hidden argument*/NULL); int32_t L_49 = __this->get_version_5(); il2cpp_codegen_memory_barrier(); int32_t L_50 = V_2; if ((((int32_t)L_49) == ((int32_t)L_50))) { goto IL_016c; } } IL_015c: { String_t* L_51 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_52 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_52, L_51, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_52, NULL, Hashtable_GetObjectData_m229223CF0F2ED28186A2FF1CB696F3D14BBE1728_RuntimeMethod_var); } IL_016c: { IL2CPP_LEAVE(0x178, FINALLY_016e); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_016e; } FINALLY_016e: { // begin finally (depth: 1) { bool L_53 = V_1; if (!L_53) { goto IL_0177; } } IL_0171: { RuntimeObject * L_54 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_54, /*hidden argument*/NULL); } IL_0177: { IL2CPP_END_FINALLY(366) } } // end finally (depth: 1) IL2CPP_CLEANUP(366) { IL2CPP_JUMP_TBL(0x178, IL_0178) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0178: { return; } } // System.Void System.Collections.Hashtable::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_MetadataUsageId); s_Il2CppMethodInitialized = true; } SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_4 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_5 = NULL; SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_6 = NULL; String_t* V_7 = NULL; uint32_t V_8 = 0; int32_t V_9 = 0; { bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_0 = __this->get_buckets_0(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_1 = HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42(/*hidden argument*/NULL); NullCheck(L_1); ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B(L_1, __this, (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 **)(&V_0), /*hidden argument*/ConditionalWeakTable_2_TryGetValue_mDFCB6C303807E3F8998D196F4573870680E81F8B_RuntimeMethod_var); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = V_0; if (L_2) { goto IL_002a; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA70F1BF46F12CF5517DAB14A442D77DB24FDDC26, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_4 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var); } IL_002a: { V_1 = 0; V_2 = (RuntimeObject*)NULL; V_3 = (RuntimeObject*)NULL; V_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL; V_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL; SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = V_0; NullCheck(L_5); SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_6 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_5, /*hidden argument*/NULL); V_6 = L_6; goto IL_0213; } IL_0043: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_7 = V_6; NullCheck(L_7); String_t* L_8 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_7, /*hidden argument*/NULL); V_7 = L_8; String_t* L_9 = V_7; uint32_t L_10 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m5C1A2CA6703F0D94CE54FF9003154837BB1CDF9A(L_9, /*hidden argument*/NULL); V_8 = L_10; uint32_t L_11 = V_8; if ((!(((uint32_t)L_11) <= ((uint32_t)((int32_t)1613443821))))) { goto IL_0084; } } { uint32_t L_12 = V_8; if ((((int32_t)L_12) == ((int32_t)((int32_t)891156946)))) { goto IL_00fe; } } { uint32_t L_13 = V_8; if ((((int32_t)L_13) == ((int32_t)((int32_t)1228509323)))) { goto IL_00e8; } } { uint32_t L_14 = V_8; if ((((int32_t)L_14) == ((int32_t)((int32_t)1613443821)))) { goto IL_012a; } } { goto IL_0213; } IL_0084: { uint32_t L_15 = V_8; if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)-1810657867))))) { goto IL_00a7; } } { uint32_t L_16 = V_8; if ((((int32_t)L_16) == ((int32_t)((int32_t)-1924324773)))) { goto IL_0140; } } { uint32_t L_17 = V_8; if ((((int32_t)L_17) == ((int32_t)((int32_t)-1810657867)))) { goto IL_0114; } } { goto IL_0213; } IL_00a7: { uint32_t L_18 = V_8; if ((((int32_t)L_18) == ((int32_t)((int32_t)-938822048)))) { goto IL_00d2; } } { uint32_t L_19 = V_8; if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)-811751054))))) { goto IL_0213; } } { String_t* L_20 = V_7; bool L_21 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_20, _stringLiteralE45E3DB3ABF33F174FB8DDAE90335498382C3C69, /*hidden argument*/NULL); if (L_21) { goto IL_0156; } } { goto IL_0213; } IL_00d2: { String_t* L_22 = V_7; bool L_23 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_22, _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); if (L_23) { goto IL_016c; } } { goto IL_0213; } IL_00e8: { String_t* L_24 = V_7; bool L_25 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_24, _stringLiteralD1FC16D9CCC8BB317CAD3A233C43968EDF25DECF, /*hidden argument*/NULL); if (L_25) { goto IL_017d; } } { goto IL_0213; } IL_00fe: { String_t* L_26 = V_7; bool L_27 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_26, _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, /*hidden argument*/NULL); if (L_27) { goto IL_019f; } } { goto IL_0213; } IL_0114: { String_t* L_28 = V_7; bool L_29 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_28, _stringLiteral798D3C0CD01F7CDF9969473500381A70A011AB03, /*hidden argument*/NULL); if (L_29) { goto IL_01bc; } } { goto IL_0213; } IL_012a: { String_t* L_30 = V_7; bool L_31 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_30, _stringLiteralE5651C683F14C95AA972CFDBC300D9FECFE02019, /*hidden argument*/NULL); if (L_31) { goto IL_01d9; } } { goto IL_0213; } IL_0140: { String_t* L_32 = V_7; bool L_33 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_32, _stringLiteralB1564F6B1512CBFA3CFCEBC9A5BADB6B239954F1, /*hidden argument*/NULL); if (L_33) { goto IL_01f7; } } { goto IL_0213; } IL_0156: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_34 = V_0; NullCheck(L_34); float L_35 = SerializationInfo_GetSingle_m8AEE647D41D4C89D5331F2E3EBF17213284EE28D(L_34, _stringLiteralE45E3DB3ABF33F174FB8DDAE90335498382C3C69, /*hidden argument*/NULL); __this->set_loadFactor_4(L_35); goto IL_0213; } IL_016c: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_36 = V_0; NullCheck(L_36); int32_t L_37 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_36, _stringLiteral35E05A2D28CF03B64D64C58D0C7ED03AD5A3AF60, /*hidden argument*/NULL); V_1 = L_37; goto IL_0213; } IL_017d: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_38 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_39 = { reinterpret_cast<intptr_t> (IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_39, /*hidden argument*/NULL); NullCheck(L_38); RuntimeObject * L_41 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_38, _stringLiteralD1FC16D9CCC8BB317CAD3A233C43968EDF25DECF, L_40, /*hidden argument*/NULL); __this->set__keycomparer_8(((RuntimeObject*)Castclass((RuntimeObject*)L_41, IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C_il2cpp_TypeInfo_var))); goto IL_0213; } IL_019f: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_42 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_43 = { reinterpret_cast<intptr_t> (IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_44 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_43, /*hidden argument*/NULL); NullCheck(L_42); RuntimeObject * L_45 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_42, _stringLiteral8FC94E4F5B71CECE2565D72417AACC804EE27A0D, L_44, /*hidden argument*/NULL); V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_45, IComparer_t6A5E1BC727C7FF28888E407A797CE1ED92DA8E95_il2cpp_TypeInfo_var)); goto IL_0213; } IL_01bc: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_46 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_47 = { reinterpret_cast<intptr_t> (IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_48 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_47, /*hidden argument*/NULL); NullCheck(L_46); RuntimeObject * L_49 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_46, _stringLiteral798D3C0CD01F7CDF9969473500381A70A011AB03, L_48, /*hidden argument*/NULL); V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_49, IHashCodeProvider_tEA652F45F84FA62675B746607F7AAFA71515D856_il2cpp_TypeInfo_var)); goto IL_0213; } IL_01d9: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_50 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_51 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_52 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_51, /*hidden argument*/NULL); NullCheck(L_50); RuntimeObject * L_53 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_50, _stringLiteralE5651C683F14C95AA972CFDBC300D9FECFE02019, L_52, /*hidden argument*/NULL); V_4 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_53, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); goto IL_0213; } IL_01f7: { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_54 = V_0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_55 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_56 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_55, /*hidden argument*/NULL); NullCheck(L_54); RuntimeObject * L_57 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_54, _stringLiteralB1564F6B1512CBFA3CFCEBC9A5BADB6B239954F1, L_56, /*hidden argument*/NULL); V_5 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_57, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); } IL_0213: { SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_58 = V_6; NullCheck(L_58); bool L_59 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_58, /*hidden argument*/NULL); if (L_59) { goto IL_0043; } } { float L_60 = __this->get_loadFactor_4(); int32_t L_61 = V_1; __this->set_loadsize_3((((int32_t)((int32_t)(int32_t)((float)il2cpp_codegen_multiply((float)L_60, (float)(((float)((float)L_61))))))))); RuntimeObject* L_62 = __this->get__keycomparer_8(); if (L_62) { goto IL_024a; } } { RuntimeObject* L_63 = V_2; if (L_63) { goto IL_023d; } } { RuntimeObject* L_64 = V_3; if (!L_64) { goto IL_024a; } } IL_023d: { RuntimeObject* L_65 = V_2; RuntimeObject* L_66 = V_3; CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * L_67 = (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 *)il2cpp_codegen_object_new(CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00_il2cpp_TypeInfo_var); CompatibleComparer__ctor_m3FA12981F83EB4F3A494E99EF85094EB745467F7(L_67, L_65, L_66, /*hidden argument*/NULL); __this->set__keycomparer_8(L_67); } IL_024a: { int32_t L_68 = V_1; bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_69 = (bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)SZArrayNew(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A_il2cpp_TypeInfo_var, (uint32_t)L_68); __this->set_buckets_0(L_69); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_70 = V_4; if (L_70) { goto IL_026a; } } { String_t* L_71 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0446EADE62BBE35D165AAAD965949803B6521089, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_72 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_72, L_71, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_72, NULL, Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var); } IL_026a: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_73 = V_5; if (L_73) { goto IL_027e; } } { String_t* L_74 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBB682E5F54E22D6CDF0694F6B2B8CA34656AAEC9, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_75 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_75, L_74, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_75, NULL, Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var); } IL_027e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_76 = V_4; NullCheck(L_76); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_77 = V_5; NullCheck(L_77); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_76)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_77)->max_length))))))) { goto IL_0298; } } { String_t* L_78 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral084A80B35B220ED9C7F63662F6CE27D1A87EB893, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_79 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_79, L_78, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, NULL, Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var); } IL_0298: { V_9 = 0; goto IL_02cb; } IL_029d: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_80 = V_4; int32_t L_81 = V_9; NullCheck(L_80); int32_t L_82 = L_81; RuntimeObject * L_83 = (L_80)->GetAt(static_cast<il2cpp_array_size_t>(L_82)); if (L_83) { goto IL_02b4; } } { String_t* L_84 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD6D1BC79DD62E9F1FB9A49A8F76F4BA8AB71AECD, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_85 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_85, L_84, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_85, NULL, Hashtable_OnDeserialization_m9226213099C3DEAEDFEABE00FE8EAA5FAF66F33B_RuntimeMethod_var); } IL_02b4: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_86 = V_4; int32_t L_87 = V_9; NullCheck(L_86); int32_t L_88 = L_87; RuntimeObject * L_89 = (L_86)->GetAt(static_cast<il2cpp_array_size_t>(L_88)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_90 = V_5; int32_t L_91 = V_9; NullCheck(L_90); int32_t L_92 = L_91; RuntimeObject * L_93 = (L_90)->GetAt(static_cast<il2cpp_array_size_t>(L_92)); Hashtable_Insert_m15DAFCB62349BF0CCEF2BEA970CFB40E24A75CB4(__this, L_89, L_93, (bool)1, /*hidden argument*/NULL); int32_t L_94 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1)); } IL_02cb: { int32_t L_95 = V_9; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_96 = V_4; NullCheck(L_96); if ((((int32_t)L_95) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_96)->max_length))))))) { goto IL_029d; } } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_97 = V_0; NullCheck(L_97); int32_t L_98 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_97, _stringLiteral2DA600BF9404843107A9531694F654E5662959E0, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); __this->set_version_5(L_98); IL2CPP_RUNTIME_CLASS_INIT(HashHelpers_tEB19004A9D7DD7679EA1882AE9B96E117FDF0179_il2cpp_TypeInfo_var); ConditionalWeakTable_2_t26E8B55E13286793B294EE63AE38FECAE7FDEF98 * L_99 = HashHelpers_get_SerializationInfoTable_m9056D86D53B67C83D83E2366087A0A071CBF7A42(/*hidden argument*/NULL); NullCheck(L_99); ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD(L_99, __this, /*hidden argument*/ConditionalWeakTable_2_Remove_mD69606977A8C793DEA91E373F7D886E4865D7FBD_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Hashtable_HashtableEnumerator::.ctor(System.Collections.Hashtable,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator__ctor_mA4893AEBBF14528B90AF67E83490AC2CE935A166 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable0, int32_t ___getObjRetType1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ___hashtable0; __this->set_hashtable_0(L_0); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = ___hashtable0; NullCheck(L_1); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_2 = L_1->get_buckets_0(); NullCheck(L_2); __this->set_bucket_1((((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = ___hashtable0; NullCheck(L_3); int32_t L_4 = L_3->get_version_5(); il2cpp_codegen_memory_barrier(); __this->set_version_2(L_4); __this->set_current_3((bool)0); int32_t L_5 = ___getObjRetType1; __this->set_getObjectRetType_4(L_5); return; } } // System.Object System.Collections.Hashtable_HashtableEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HashtableEnumerator_Clone_m3BF3723B676C488836A3AFEF387027B930BED008 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.Hashtable_HashtableEnumerator::get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HashtableEnumerator_get_Key_m09B7F9811379917D1101DFF85FA577133A62AD6A (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_get_Key_m09B7F9811379917D1101DFF85FA577133A62AD6A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_3(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, HashtableEnumerator_get_Key_m09B7F9811379917D1101DFF85FA577133A62AD6A_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_3 = __this->get_currentKey_5(); return L_3; } } // System.Boolean System.Collections.Hashtable_HashtableEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashtableEnumerator_MoveNext_m9517CB795206780030F5231EB58BC2A0B04D3B65 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_MoveNext_m9517CB795206780030F5231EB58BC2A0B04D3B65_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { int32_t L_0 = __this->get_version_2(); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_hashtable_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_5(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0091; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, HashtableEnumerator_MoveNext_m9517CB795206780030F5231EB58BC2A0B04D3B65_RuntimeMethod_var); } IL_0025: { int32_t L_5 = __this->get_bucket_1(); __this->set_bucket_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1))); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get_hashtable_0(); NullCheck(L_6); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_7 = L_6->get_buckets_0(); int32_t L_8 = __this->get_bucket_1(); NullCheck(L_7); RuntimeObject * L_9 = ((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_8)))->get_key_0(); V_0 = L_9; RuntimeObject * L_10 = V_0; if (!L_10) { goto IL_0091; } } { RuntimeObject * L_11 = V_0; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = __this->get_hashtable_0(); NullCheck(L_12); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_13 = L_12->get_buckets_0(); if ((((RuntimeObject*)(RuntimeObject *)L_11) == ((RuntimeObject*)(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A*)L_13))) { goto IL_0091; } } { RuntimeObject * L_14 = V_0; __this->set_currentKey_5(L_14); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = __this->get_hashtable_0(); NullCheck(L_15); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_16 = L_15->get_buckets_0(); int32_t L_17 = __this->get_bucket_1(); NullCheck(L_16); RuntimeObject * L_18 = ((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->get_val_1(); __this->set_currentValue_6(L_18); __this->set_current_3((bool)1); return (bool)1; } IL_0091: { int32_t L_19 = __this->get_bucket_1(); if ((((int32_t)L_19) > ((int32_t)0))) { goto IL_0025; } } { __this->set_current_3((bool)0); return (bool)0; } } // System.Collections.DictionaryEntry System.Collections.Hashtable_HashtableEnumerator::get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 HashtableEnumerator_get_Entry_m09E4C8736E1303C56569896F34943C95F4D62222 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_get_Entry_m09E4C8736E1303C56569896F34943C95F4D62222_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_3(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, HashtableEnumerator_get_Entry_m09E4C8736E1303C56569896F34943C95F4D62222_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_3 = __this->get_currentKey_5(); RuntimeObject * L_4 = __this->get_currentValue_6(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_5; memset((&L_5), 0, sizeof(L_5)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_5), L_3, L_4, /*hidden argument*/NULL); return L_5; } } // System.Object System.Collections.Hashtable_HashtableEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HashtableEnumerator_get_Current_m3C665E408D870A47554A7552A087CB881C969618 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_get_Current_m3C665E408D870A47554A7552A087CB881C969618_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_3(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, HashtableEnumerator_get_Current_m3C665E408D870A47554A7552A087CB881C969618_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get_getObjectRetType_4(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0028; } } { RuntimeObject * L_4 = __this->get_currentKey_5(); return L_4; } IL_0028: { int32_t L_5 = __this->get_getObjectRetType_4(); if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0038; } } { RuntimeObject * L_6 = __this->get_currentValue_6(); return L_6; } IL_0038: { RuntimeObject * L_7 = __this->get_currentKey_5(); RuntimeObject * L_8 = __this->get_currentValue_6(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9; memset((&L_9), 0, sizeof(L_9)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_9), L_7, L_8, /*hidden argument*/NULL); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9; RuntimeObject * L_11 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_10); return L_11; } } // System.Object System.Collections.Hashtable_HashtableEnumerator::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HashtableEnumerator_get_Value_mEB78D8A682883CABCBAFD20B340BD827CB71561E (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_get_Value_mEB78D8A682883CABCBAFD20B340BD827CB71561E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_3(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, HashtableEnumerator_get_Value_mEB78D8A682883CABCBAFD20B340BD827CB71561E_RuntimeMethod_var); } IL_0018: { RuntimeObject * L_3 = __this->get_currentValue_6(); return L_3; } } // System.Void System.Collections.Hashtable_HashtableEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator_Reset_m1B23469BFCF718FF78AA504A91E93AB733AE4C55 (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (HashtableEnumerator_Reset_m1B23469BFCF718FF78AA504A91E93AB733AE4C55_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_2(); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_hashtable_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_5(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0025; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, HashtableEnumerator_Reset_m1B23469BFCF718FF78AA504A91E93AB733AE4C55_RuntimeMethod_var); } IL_0025: { __this->set_current_3((bool)0); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = __this->get_hashtable_0(); NullCheck(L_5); bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_6 = L_5->get_buckets_0(); NullCheck(L_6); __this->set_bucket_1((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))); __this->set_currentKey_5(NULL); __this->set_currentValue_6(NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Hashtable_KeyCollection::.ctor(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection__ctor_m58E48C20C50744A6E711BA0504B8520945C5DD4B (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___hashtable0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ___hashtable0; __this->set__hashtable_0(L_0); return; } } // System.Void System.Collections.Hashtable_KeyCollection::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79 (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_RuntimeMethod_var); } IL_0027: { int32_t L_6 = ___arrayIndex1; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0040; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_RuntimeMethod_var); } IL_0040: { RuntimeArray * L_9 = ___array0; NullCheck(L_9); int32_t L_10 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_9, /*hidden argument*/NULL); int32_t L_11 = ___arrayIndex1; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_12 = __this->get__hashtable_0(); NullCheck(L_12); int32_t L_13 = L_12->get_count_1(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))) >= ((int32_t)L_13))) { goto IL_0065; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, KeyCollection_CopyTo_mAC93A19478D6F9168EF9ADFBE68C5E45C453BC79_RuntimeMethod_var); } IL_0065: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_16 = __this->get__hashtable_0(); RuntimeArray * L_17 = ___array0; int32_t L_18 = ___arrayIndex1; NullCheck(L_16); Hashtable_CopyKeys_m84AE68F9F9B7C73AE749F45EDAE2413398D0F2BF(L_16, L_17, L_18, /*hidden argument*/NULL); return; } } // System.Collections.IEnumerator System.Collections.Hashtable_KeyCollection::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeyCollection_GetEnumerator_mDDD12D3A054E820FB09D8F856F3630766EC5A79B (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (KeyCollection_GetEnumerator_mDDD12D3A054E820FB09D8F856F3630766EC5A79B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__hashtable_0(); HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 * L_1 = (HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9 *)il2cpp_codegen_object_new(HashtableEnumerator_tE5C908D6870E805494E774BF3CEF4919425455E9_il2cpp_TypeInfo_var); HashtableEnumerator__ctor_mA4893AEBBF14528B90AF67E83490AC2CE935A166(L_1, L_0, 1, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Collections.Hashtable_KeyCollection::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeyCollection_get_Count_mDEA3CE26546610822E3225D7CE19111868F8F32E (KeyCollection_tD91D15A31EC3120D546EE76142B497C52F7C78D2 * __this, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__hashtable_0(); NullCheck(L_0); int32_t L_1 = L_0->get_count_1(); 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.Collections.Hashtable_SyncHashtable::.ctor(System.Collections.Hashtable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_m2CA4BAD2FE04F356B41CB54032144A6F577D960F (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___table0, const RuntimeMethod* method) { { Hashtable__ctor_m25CFEE0C3607B2CF35DCCC61FD924708F082BF90(__this, (bool)0, /*hidden argument*/NULL); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = ___table0; __this->set__table_10(L_0); return; } } // System.Void System.Collections.Hashtable_SyncHashtable::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_m818995791B476F454D5EF898AF16DE75CC0C2EB1 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SyncHashtable__ctor_m818995791B476F454D5EF898AF16DE75CC0C2EB1_MetadataUsageId); s_Il2CppMethodInitialized = true; } { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1; Hashtable__ctor_m7CD7D10246451D96AD05E8A593AA1E74412FA453(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0; RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteralD3BB63BF7137B1804A34F9470FC40500AA311F09, L_4, /*hidden argument*/NULL); __this->set__table_10(((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)CastclassClass((RuntimeObject*)L_5, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var))); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get__table_10(); if (L_6) { goto IL_0040; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral8944FFAD1E8C07AABD7BA714D715171EAAD5687C, /*hidden argument*/NULL); SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_8 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var); SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, SyncHashtable__ctor_m818995791B476F454D5EF898AF16DE75CC0C2EB1_RuntimeMethod_var); } IL_0040: { return; } } // System.Void System.Collections.Hashtable_SyncHashtable::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_GetObjectData_m893D45F4B0C1EE87E4A89A8EF33ED30978A29C38 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SyncHashtable_GetObjectData_m893D45F4B0C1EE87E4A89A8EF33ED30978A29C38_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, SyncHashtable_GetObjectData_m893D45F4B0C1EE87E4A89A8EF33ED30978A29C38_RuntimeMethod_var); } IL_000e: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_2 = __this->get__table_10(); NullCheck(L_2); RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_2); V_0 = L_3; V_1 = (bool)0; } IL_001c: try { // begin try (depth: 1) RuntimeObject * L_4 = V_0; Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_4, (bool*)(&V_1), /*hidden argument*/NULL); SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0; Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_6 = __this->get__table_10(); RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL); NullCheck(L_5); SerializationInfo_AddValue_mE0A104C01EFA55A83D4CAE4662A9B4C6459911FC(L_5, _stringLiteralD3BB63BF7137B1804A34F9470FC40500AA311F09, L_6, L_8, /*hidden argument*/NULL); IL2CPP_LEAVE(0x4B, FINALLY_0041); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0041; } FINALLY_0041: { // begin finally (depth: 1) { bool L_9 = V_1; if (!L_9) { goto IL_004a; } } IL_0044: { RuntimeObject * L_10 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_10, /*hidden argument*/NULL); } IL_004a: { IL2CPP_END_FINALLY(65) } } // end finally (depth: 1) IL2CPP_CLEANUP(65) { IL2CPP_JUMP_TBL(0x4B, IL_004b) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004b: { return; } } // System.Int32 System.Collections.Hashtable_SyncHashtable::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SyncHashtable_get_Count_m0A64365E31BB57BA25E85DCFCACB2798BC109B8C (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0); return L_1; } } // System.Object System.Collections.Hashtable_SyncHashtable::get_Item(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SyncHashtable_get_Item_m54489F4AB8D10BEDDC41F851DAE27F95A2781146 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); RuntimeObject * L_1 = ___key0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(18 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); return L_2; } } // System.Void System.Collections.Hashtable_SyncHashtable::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_set_Item_m90C21E6C2BC7687F3F83818E62754FF171EE1049 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, 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); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); RuntimeObject * L_4 = ___key0; RuntimeObject * L_5 = ___value1; NullCheck(L_3); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(19 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_3, L_4, L_5); IL2CPP_LEAVE(0x2F, FINALLY_0025); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0025; } FINALLY_0025: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_002e; } } IL_0028: { RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); } IL_002e: { IL2CPP_END_FINALLY(37) } } // end finally (depth: 1) IL2CPP_CLEANUP(37) { IL2CPP_JUMP_TBL(0x2F, IL_002f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002f: { return; } } // System.Object System.Collections.Hashtable_SyncHashtable::get_SyncRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SyncHashtable_get_SyncRoot_m9DA0217F2FC0343D3248F98FC16A2DF1D591A947 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0); return L_1; } } // System.Void System.Collections.Hashtable_SyncHashtable::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Add_m6C7A3C2E4ED8ACF75929EAE5A4AFC0D91C5F2449 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, 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); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); RuntimeObject * L_4 = ___key0; RuntimeObject * L_5 = ___value1; NullCheck(L_3); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(12 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_3, L_4, L_5); IL2CPP_LEAVE(0x2F, FINALLY_0025); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0025; } FINALLY_0025: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_002e; } } IL_0028: { RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); } IL_002e: { IL2CPP_END_FINALLY(37) } } // end finally (depth: 1) IL2CPP_CLEANUP(37) { IL2CPP_JUMP_TBL(0x2F, IL_002f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002f: { return; } } // System.Void System.Collections.Hashtable_SyncHashtable::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Clear_m8B7D63769105B9B4EC4E166D5E32742B80B48323 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, 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); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); NullCheck(L_3); VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Hashtable::Clear() */, L_3); 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_4 = V_1; if (!L_4) { goto IL_002c; } } IL_0026: { RuntimeObject * L_5 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_5, /*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.Boolean System.Collections.Hashtable_SyncHashtable::Contains(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_Contains_m9ED7A575E1BB3E958935D0F9D7EBF0FAB3E1A9A3 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); RuntimeObject * L_1 = ___key0; NullCheck(L_0); bool L_2 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(15 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_0, L_1); return L_2; } } // System.Boolean System.Collections.Hashtable_SyncHashtable::ContainsKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_ContainsKey_m2535E9B4F57EA6CF6D26945A835838B4AD24EEDD (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SyncHashtable_ContainsKey_m2535E9B4F57EA6CF6D26945A835838B4AD24EEDD_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SyncHashtable_ContainsKey_m2535E9B4F57EA6CF6D26945A835838B4AD24EEDD_RuntimeMethod_var); } IL_0018: { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); RuntimeObject * L_4 = ___key0; NullCheck(L_3); bool L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(16 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_3, L_4); return L_5; } } // System.Void System.Collections.Hashtable_SyncHashtable::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_CopyTo_m28669ED5B49B3861D49C60F38828FD548A67A35F (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, 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); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); RuntimeArray * L_4 = ___array0; int32_t L_5 = ___arrayIndex1; NullCheck(L_3); VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(17 /* System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32) */, L_3, L_4, L_5); IL2CPP_LEAVE(0x2F, FINALLY_0025); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0025; } FINALLY_0025: { // begin finally (depth: 1) { bool L_6 = V_1; if (!L_6) { goto IL_002e; } } IL_0028: { RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL); } IL_002e: { IL2CPP_END_FINALLY(37) } } // end finally (depth: 1) IL2CPP_CLEANUP(37) { IL2CPP_JUMP_TBL(0x2F, IL_002f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002f: { return; } } // System.Object System.Collections.Hashtable_SyncHashtable::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SyncHashtable_Clone_m13B484BC6DD78F6EBD4E2C23F242B660CD5C3EFD (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SyncHashtable_Clone_m13B484BC6DD78F6EBD4E2C23F242B660CD5C3EFD_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * 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) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); NullCheck(L_3); RuntimeObject * L_4 = VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Hashtable::Clone() */, L_3); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_5 = Hashtable_Synchronized_mC8C9F5D223078C699FD738B48A4A760549C2221E(((Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)CastclassClass((RuntimeObject*)L_4, Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_5; 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_6 = V_1; if (!L_6) { goto IL_0037; } } IL_0031: { RuntimeObject * L_7 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*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: { RuntimeObject * L_8 = V_2; return L_8; } } // System.Collections.IEnumerator System.Collections.Hashtable_SyncHashtable::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_System_Collections_IEnumerable_GetEnumerator_mE59B5C3ADDD7779049A3A3E4B521F2EE7B6BC689 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_0); return L_1; } } // System.Collections.IDictionaryEnumerator System.Collections.Hashtable_SyncHashtable::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_GetEnumerator_m451D044319810C846AD849FF56B8DFBD6DFA2F03 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(20 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_0); return L_1; } } // System.Collections.ICollection System.Collections.Hashtable_SyncHashtable::get_Keys() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_get_Keys_mA1C7C8E98637CDDE9CABB4A33A8EB9C1FD00CD3C (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, const RuntimeMethod* method) { RuntimeObject * 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) * 1); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); NullCheck(L_3); RuntimeObject* L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(23 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_3); V_2 = L_4; IL2CPP_LEAVE(0x2E, FINALLY_0024); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0024; } FINALLY_0024: { // begin finally (depth: 1) { bool L_5 = V_1; if (!L_5) { goto IL_002d; } } IL_0027: { RuntimeObject * L_6 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL); } IL_002d: { IL2CPP_END_FINALLY(36) } } // end finally (depth: 1) IL2CPP_CLEANUP(36) { IL2CPP_JUMP_TBL(0x2E, IL_002e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002e: { RuntimeObject* L_7 = V_2; return L_7; } } // System.Void System.Collections.Hashtable_SyncHashtable::Remove(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Remove_m2FBC075A17BE46924E42E6925F7FE1C63EDE0031 (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___key0, 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); { Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = __this->get__table_10(); NullCheck(L_0); RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(25 /* System.Object System.Collections.Hashtable::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); Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_3 = __this->get__table_10(); RuntimeObject * L_4 = ___key0; NullCheck(L_3); VirtActionInvoker1< RuntimeObject * >::Invoke(24 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_3, L_4); IL2CPP_LEAVE(0x2E, FINALLY_0024); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0024; } FINALLY_0024: { // begin finally (depth: 1) { bool L_5 = V_1; if (!L_5) { goto IL_002d; } } IL_0027: { RuntimeObject * L_6 = V_0; Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL); } IL_002d: { IL2CPP_END_FINALLY(36) } } // end finally (depth: 1) IL2CPP_CLEANUP(36) { IL2CPP_JUMP_TBL(0x2E, IL_002e) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_002e: { return; } } // System.Void System.Collections.Hashtable_SyncHashtable::OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_OnDeserialization_m24DAB8F8FD4001FE42A93742F387D35AB402645C (SyncHashtable_t893981DF84FB7968069810B79ACD01415FE78EF3 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: System.Collections.Hashtable/bucket IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_pinvoke(const bucket_t1C848488DF65838689F7773D46F9E7E8C881B083& unmarshaled, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke& marshaled) { if (unmarshaled.get_key_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0())) { marshaled.___key_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_key_0())); (marshaled.___key_0)->AddRef(); } else { marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0()); } } else { marshaled.___key_0 = NULL; } if (unmarshaled.get_val_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_val_1())) { marshaled.___val_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_val_1())); (marshaled.___val_1)->AddRef(); } else { marshaled.___val_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_val_1()); } } else { marshaled.___val_1 = NULL; } marshaled.___hash_coll_2 = unmarshaled.get_hash_coll_2(); } IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_pinvoke_back(const bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke& marshaled, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_pinvoke_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.___key_0 != NULL) { unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_key_0()), Il2CppIUnknown::IID, marshaled.___key_0); } } else { unmarshaled.set_key_0(NULL); } if (marshaled.___val_1 != NULL) { unmarshaled.set_val_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_val_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_val_1()), Il2CppIUnknown::IID, marshaled.___val_1); } } else { unmarshaled.set_val_1(NULL); } int32_t unmarshaled_hash_coll_temp_2 = 0; unmarshaled_hash_coll_temp_2 = marshaled.___hash_coll_2; unmarshaled.set_hash_coll_2(unmarshaled_hash_coll_temp_2); } // Conversion method for clean up from marshalling of: System.Collections.Hashtable/bucket IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_pinvoke_cleanup(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke& marshaled) { if (marshaled.___key_0 != NULL) { (marshaled.___key_0)->Release(); marshaled.___key_0 = NULL; } if (marshaled.___val_1 != NULL) { (marshaled.___val_1)->Release(); marshaled.___val_1 = NULL; } } // Conversion methods for marshalling of: System.Collections.Hashtable/bucket IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_com(const bucket_t1C848488DF65838689F7773D46F9E7E8C881B083& unmarshaled, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com& marshaled) { if (unmarshaled.get_key_0() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0())) { marshaled.___key_0 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_key_0())); (marshaled.___key_0)->AddRef(); } else { marshaled.___key_0 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_key_0()); } } else { marshaled.___key_0 = NULL; } if (unmarshaled.get_val_1() != NULL) { if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_val_1())) { marshaled.___val_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_val_1())); (marshaled.___val_1)->AddRef(); } else { marshaled.___val_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_val_1()); } } else { marshaled.___val_1 = NULL; } marshaled.___hash_coll_2 = unmarshaled.get_hash_coll_2(); } IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_com_back(const bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com& marshaled, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_com_FromNativeMethodDefinition_MetadataUsageId); s_Il2CppMethodInitialized = true; } if (marshaled.___key_0 != NULL) { unmarshaled.set_key_0(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key_0, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_key_0())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_key_0()), Il2CppIUnknown::IID, marshaled.___key_0); } } else { unmarshaled.set_key_0(NULL); } if (marshaled.___val_1 != NULL) { unmarshaled.set_val_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val_1, Il2CppComObject_il2cpp_TypeInfo_var)); if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_val_1())) { il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_val_1()), Il2CppIUnknown::IID, marshaled.___val_1); } } else { unmarshaled.set_val_1(NULL); } int32_t unmarshaled_hash_coll_temp_2 = 0; unmarshaled_hash_coll_temp_2 = marshaled.___hash_coll_2; unmarshaled.set_hash_coll_2(unmarshaled_hash_coll_temp_2); } // Conversion method for clean up from marshalling of: System.Collections.Hashtable/bucket IL2CPP_EXTERN_C void bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshal_com_cleanup(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com& marshaled) { if (marshaled.___key_0 != NULL) { (marshaled.___key_0)->Release(); marshaled.___key_0 = NULL; } if (marshaled.___val_1 != NULL) { (marshaled.___val_1)->Release(); marshaled.___val_1 = NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.LowLevelComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LowLevelComparer__ctor_m880FBF3287CA2B9BA3A3501F8492A224C3045605 (LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.LowLevelComparer::Compare(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t LowLevelComparer_Compare_m950FD3BE5F5E45A8603E7F41582B14316F91863E (LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LowLevelComparer_Compare_m950FD3BE5F5E45A8603E7F41582B14316F91863E_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject * L_0 = ___a0; RuntimeObject * L_1 = ___b1; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_0006; } } { return 0; } IL_0006: { RuntimeObject * L_2 = ___a0; if (L_2) { goto IL_000b; } } { return (-1); } IL_000b: { RuntimeObject * L_3 = ___b1; if (L_3) { goto IL_0010; } } { return 1; } IL_0010: { RuntimeObject * L_4 = ___a0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (!L_5) { goto IL_0022; } } { RuntimeObject* L_6 = V_0; RuntimeObject * L_7 = ___b1; NullCheck(L_6); int32_t L_8 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_6, L_7); return L_8; } IL_0022: { RuntimeObject * L_9 = ___b1; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_1; if (!L_10) { goto IL_0035; } } { RuntimeObject* L_11 = V_1; RuntimeObject * L_12 = ___a0; NullCheck(L_11); int32_t L_13 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_11, L_12); return ((-L_13)); } IL_0035: { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, _stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, LowLevelComparer_Compare_m950FD3BE5F5E45A8603E7F41582B14316F91863E_RuntimeMethod_var); } } // System.Void System.Collections.LowLevelComparer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LowLevelComparer__cctor_m2DCDAD27BA9553BF9C77B200A37B4C26B5146B53 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (LowLevelComparer__cctor_m2DCDAD27BA9553BF9C77B200A37B4C26B5146B53_MetadataUsageId); s_Il2CppMethodInitialized = true; } { LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 * L_0 = (LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1 *)il2cpp_codegen_object_new(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var); LowLevelComparer__ctor_m880FBF3287CA2B9BA3A3501F8492A224C3045605(L_0, /*hidden argument*/NULL); ((LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_StaticFields*)il2cpp_codegen_static_fields_for(LowLevelComparer_t4DB5A06518FF5F1549DDAFDA5E7B67FDEA4BF7F1_il2cpp_TypeInfo_var))->set_Default_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.Collections.Queue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mF04C9A574B8F803C2682CCE8B69B49FF088D14C4 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { { Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979(__this, ((int32_t)32), (2.0f), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Queue::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_m7A38C651E238B2B6626D9DE8182210D956F4FCCD (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, const RuntimeMethod* method) { { int32_t L_0 = ___capacity0; Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979(__this, L_0, (2.0f), /*hidden argument*/NULL); return; } } // System.Void System.Collections.Queue::.ctor(System.Int32,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, float ___growFactor1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___capacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_001f; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979_RuntimeMethod_var); } IL_001f: { float L_3 = ___growFactor1; if ((!(((double)(((double)((double)(double)L_3)))) >= ((double)(1.0))))) { goto IL_0039; } } { float L_4 = ___growFactor1; if ((((double)(((double)((double)(double)L_4)))) <= ((double)(10.0)))) { goto IL_0067; } } IL_0039: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5; int32_t L_7 = 1; RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_8); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = L_6; int32_t L_10 = ((int32_t)10); RuntimeObject * L_11 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_10); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_11); String_t* L_12 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5734F14C44F430B146A89DA661A0503197EAD36E, L_9, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteral8F94F72A6FCAE8B2F94FEDE0B6429F19FE405F01, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, Queue__ctor_mC5A814C0F2BE53160F67504AE9FF1BD157588979_RuntimeMethod_var); } IL_0067: { int32_t L_14 = ___capacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_14); __this->set__array_0(L_15); __this->set__head_1(0); __this->set__tail_2(0); __this->set__size_3(0); float L_16 = ___growFactor1; __this->set__growFactor_4((((int32_t)((int32_t)(int32_t)((float)il2cpp_codegen_multiply((float)L_16, (float)(100.0f))))))); return; } } // 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) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B2_0 = NULL; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B1_0 = NULL; int32_t G_B3_0 = 0; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B3_1 = NULL; { RuntimeObject* L_0 = ___col0; G_B1_0 = __this; if (!L_0) { G_B2_0 = __this; goto IL_000c; } } { RuntimeObject* L_1 = ___col0; 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); G_B3_0 = L_2; G_B3_1 = G_B1_0; goto IL_000e; } IL_000c: { G_B3_0 = ((int32_t)32); G_B3_1 = G_B2_0; } IL_000e: { NullCheck(G_B3_1); Queue__ctor_m7A38C651E238B2B6626D9DE8182210D956F4FCCD(G_B3_1, G_B3_0, /*hidden argument*/NULL); RuntimeObject* L_3 = ___col0; if (L_3) { goto IL_0021; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteral58590A8E3AC0A0EE865C1F1181F860909805C3C3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, Queue__ctor_m9D54C0C05803263517B6B75FC6BF08371A28EC52_RuntimeMethod_var); } IL_0021: { RuntimeObject* L_5 = ___col0; NullCheck(L_5); RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_5); V_0 = L_6; goto IL_0036; } IL_002a: { RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject * L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_7); VirtActionInvoker1< RuntimeObject * >::Invoke(11 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, __this, L_8); } IL_0036: { RuntimeObject* L_9 = V_0; NullCheck(L_9); bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, L_9); if (L_10) { goto IL_002a; } } { return; } } // System.Int32 System.Collections.Queue::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Queue_get_Count_m7F1BFE3590F56D54B20B3A2041486E1F42399C65 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_3(); return L_0; } } // System.Object System.Collections.Queue::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_Clone_m8827A33C420FB6B1432366B24D98FE7280729D66 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_Clone_m8827A33C420FB6B1432366B24D98FE7280729D66_MetadataUsageId); s_Il2CppMethodInitialized = true; } Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t G_B3_0 = 0; { int32_t L_0 = __this->get__size_3(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_1 = (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 *)il2cpp_codegen_object_new(Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3_il2cpp_TypeInfo_var); Queue__ctor_m7A38C651E238B2B6626D9DE8182210D956F4FCCD(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_2 = V_0; int32_t L_3 = __this->get__size_3(); NullCheck(L_2); L_2->set__size_3(L_3); int32_t L_4 = __this->get__size_3(); V_1 = L_4; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__array_0(); NullCheck(L_5); int32_t L_6 = __this->get__head_1(); int32_t L_7 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)L_6))) < ((int32_t)L_7))) { goto IL_0034; } } { int32_t L_8 = V_1; G_B3_0 = L_8; goto IL_0043; } IL_0034: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get__array_0(); NullCheck(L_9); int32_t L_10 = __this->get__head_1(); G_B3_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10)); } IL_0043: { V_2 = G_B3_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = __this->get__array_0(); int32_t L_12 = __this->get__head_1(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_13 = V_0; NullCheck(L_13); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13->get__array_0(); int32_t L_15 = V_2; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_11, L_12, (RuntimeArray *)(RuntimeArray *)L_14, 0, L_15, /*hidden argument*/NULL); int32_t L_16 = V_1; int32_t L_17 = V_2; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)); int32_t L_18 = V_1; if ((((int32_t)L_18) <= ((int32_t)0))) { goto IL_0087; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = __this->get__array_0(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_20 = V_0; NullCheck(L_20); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20->get__array_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = __this->get__array_0(); NullCheck(L_22); int32_t L_23 = __this->get__head_1(); int32_t L_24 = V_1; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_19, 0, (RuntimeArray *)(RuntimeArray *)L_21, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), (int32_t)L_23)), L_24, /*hidden argument*/NULL); } IL_0087: { Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_25 = V_0; int32_t L_26 = __this->get__version_5(); NullCheck(L_25); L_25->set__version_5(L_26); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_27 = V_0; return L_27; } } // System.Void System.Collections.Queue::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B13_0 = 0; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_RuntimeMethod_var); } IL_0027: { int32_t L_6 = ___index1; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0040; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_RuntimeMethod_var); } IL_0040: { RuntimeArray * L_9 = ___array0; NullCheck(L_9); int32_t L_10 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_9, /*hidden argument*/NULL); int32_t L_11 = ___index1; int32_t L_12 = __this->get__size_3(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))) >= ((int32_t)L_12))) { goto IL_0060; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Queue_CopyTo_m83969DA0BA9A261DC4E1737B704BB161754242F5_RuntimeMethod_var); } IL_0060: { int32_t L_15 = __this->get__size_3(); V_0 = L_15; int32_t L_16 = V_0; if (L_16) { goto IL_006b; } } { return; } IL_006b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = __this->get__array_0(); NullCheck(L_17); int32_t L_18 = __this->get__head_1(); int32_t L_19 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))), (int32_t)L_18))) < ((int32_t)L_19))) { goto IL_0080; } } { int32_t L_20 = V_0; G_B13_0 = L_20; goto IL_008f; } IL_0080: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = __this->get__array_0(); NullCheck(L_21); int32_t L_22 = __this->get__head_1(); G_B13_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22)); } IL_008f: { V_1 = G_B13_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = __this->get__array_0(); int32_t L_24 = __this->get__head_1(); RuntimeArray * L_25 = ___array0; int32_t L_26 = ___index1; int32_t L_27 = V_1; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_23, L_24, L_25, L_26, L_27, /*hidden argument*/NULL); int32_t L_28 = V_0; int32_t L_29 = V_1; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)); int32_t L_30 = V_0; if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_00cb; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_31 = __this->get__array_0(); RuntimeArray * L_32 = ___array0; int32_t L_33 = ___index1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_34 = __this->get__array_0(); NullCheck(L_34); int32_t L_35 = __this->get__head_1(); int32_t L_36 = V_0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_31, 0, L_32, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))), (int32_t)L_35)), L_36, /*hidden argument*/NULL); } IL_00cb: { return; } } // System.Void System.Collections.Queue::Enqueue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_Enqueue_mAB96DA7B967CCF88384C288A1104B4375ADC1D92 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get__size_3(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__array_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_0046; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get__array_0(); NullCheck(L_2); int32_t L_3 = __this->get__growFactor_4(); V_0 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))), (int64_t)(((int64_t)((int64_t)L_3)))))/(int64_t)(((int64_t)((int64_t)((int32_t)100))))))))); int32_t L_4 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__array_0(); NullCheck(L_5); if ((((int32_t)L_4) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), (int32_t)4))))) { goto IL_003f; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get__array_0(); NullCheck(L_6); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))), (int32_t)4)); } IL_003f: { int32_t L_7 = V_0; Queue_SetCapacity_mB3C8692505E4094B25C932B8AED6EB6A032283A0(__this, L_7, /*hidden argument*/NULL); } IL_0046: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__array_0(); int32_t L_9 = __this->get__tail_2(); RuntimeObject * L_10 = ___obj0; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_10); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (RuntimeObject *)L_10); int32_t L_11 = __this->get__tail_2(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get__array_0(); NullCheck(L_12); __this->set__tail_2(((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))); int32_t L_13 = __this->get__size_3(); __this->set__size_3(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); int32_t L_14 = __this->get__version_5(); __this->set__version_5(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1))); return; } } // System.Collections.IEnumerator System.Collections.Queue::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Queue_GetEnumerator_m8730E4BCDE57279CFC39992DB55CA7D6E508E2E6 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_GetEnumerator_m8730E4BCDE57279CFC39992DB55CA7D6E508E2E6_MetadataUsageId); s_Il2CppMethodInitialized = true; } { QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * L_0 = (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA *)il2cpp_codegen_object_new(QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA_il2cpp_TypeInfo_var); QueueEnumerator__ctor_m092D234EC5E7E625B31D1D626D951C1835F87EDF(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.Queue::Dequeue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_Dequeue_m76B0ECD1EFE53DF0AAFEB184912007322CDE7EB4 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_Dequeue_m76B0ECD1EFE53DF0AAFEB184912007322CDE7EB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Queue::get_Count() */, __this); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1F81AFFE48C2C2B337815693830EBEE586D9A96C, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Queue_Dequeue_m76B0ECD1EFE53DF0AAFEB184912007322CDE7EB4_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__array_0(); int32_t L_4 = __this->get__head_1(); NullCheck(L_3); int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get__array_0(); int32_t L_8 = __this->get__head_1(); NullCheck(L_7); ArrayElementTypeCheck (L_7, NULL); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject *)NULL); int32_t L_9 = __this->get__head_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__array_0(); NullCheck(L_10); __this->set__head_1(((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))); int32_t L_11 = __this->get__size_3(); __this->set__size_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1))); int32_t L_12 = __this->get__version_5(); __this->set__version_5(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return L_6; } } // System.Object System.Collections.Queue::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_Peek_m494EF9110AE8F89DC0999577445BD8FBBCA79BB4 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_Peek_m494EF9110AE8F89DC0999577445BD8FBBCA79BB4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Queue::get_Count() */, __this); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral1F81AFFE48C2C2B337815693830EBEE586D9A96C, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Queue_Peek_m494EF9110AE8F89DC0999577445BD8FBBCA79BB4_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__array_0(); int32_t L_4 = __this->get__head_1(); NullCheck(L_3); int32_t L_5 = L_4; RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Object System.Collections.Queue::GetElement(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Queue_GetElement_m612CFE182D43EF6A21EB21CDF53F80F4BC36816C (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___i0, const RuntimeMethod* method) { { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__array_0(); int32_t L_1 = __this->get__head_1(); int32_t L_2 = ___i0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__array_0(); NullCheck(L_3); NullCheck(L_0); int32_t L_4 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))%(int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))); RuntimeObject * L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return L_5; } } // System.Void System.Collections.Queue::SetCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_SetCapacity_mB3C8692505E4094B25C932B8AED6EB6A032283A0 (Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * __this, int32_t ___capacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Queue_SetCapacity_mB3C8692505E4094B25C932B8AED6EB6A032283A0_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B6_0 = NULL; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B5_0 = NULL; int32_t G_B7_0 = 0; Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * G_B7_1 = NULL; { int32_t L_0 = ___capacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; int32_t L_2 = __this->get__size_3(); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_007d; } } { int32_t L_3 = __this->get__head_1(); int32_t L_4 = __this->get__tail_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0039; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get__array_0(); int32_t L_6 = __this->get__head_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_0; int32_t L_8 = __this->get__size_3(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, L_6, (RuntimeArray *)(RuntimeArray *)L_7, 0, L_8, /*hidden argument*/NULL); goto IL_007d; } IL_0039: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get__array_0(); int32_t L_10 = __this->get__head_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get__array_0(); NullCheck(L_12); int32_t L_13 = __this->get__head_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_9, L_10, (RuntimeArray *)(RuntimeArray *)L_11, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), (int32_t)L_13)), /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = __this->get__array_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = V_0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get__array_0(); NullCheck(L_16); int32_t L_17 = __this->get__head_1(); int32_t L_18 = __this->get__tail_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_14, 0, (RuntimeArray *)(RuntimeArray *)L_15, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))), (int32_t)L_17)), L_18, /*hidden argument*/NULL); } IL_007d: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_0; __this->set__array_0(L_19); __this->set__head_1(0); int32_t L_20 = __this->get__size_3(); int32_t L_21 = ___capacity0; G_B5_0 = __this; if ((((int32_t)L_20) == ((int32_t)L_21))) { G_B6_0 = __this; goto IL_009d; } } { int32_t L_22 = __this->get__size_3(); G_B7_0 = L_22; G_B7_1 = G_B5_0; goto IL_009e; } IL_009d: { G_B7_0 = 0; G_B7_1 = G_B6_0; } IL_009e: { NullCheck(G_B7_1); G_B7_1->set__tail_2(G_B7_0); int32_t L_23 = __this->get__version_5(); __this->set__version_5(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Queue_QueueEnumerator::.ctor(System.Collections.Queue) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueEnumerator__ctor_m092D234EC5E7E625B31D1D626D951C1835F87EDF (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * ___q0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_0 = ___q0; __this->set__q_0(L_0); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_1 = __this->get__q_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_5(); __this->set__version_2(L_2); __this->set__index_1(0); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_3 = __this->get__q_0(); NullCheck(L_3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3->get__array_0(); __this->set_currentElement_3((RuntimeObject *)L_4); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_5 = __this->get__q_0(); NullCheck(L_5); int32_t L_6 = L_5->get__size_3(); if (L_6) { goto IL_004a; } } { __this->set__index_1((-1)); } IL_004a: { return; } } // System.Object System.Collections.Queue_QueueEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * QueueEnumerator_Clone_m7FEC8812D05C32AF9CD683028F82AB6F268FFA3C (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Collections.Queue_QueueEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool QueueEnumerator_MoveNext_mD32B729CB15A926B5CD49F1A1227DE43601953F8 (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (QueueEnumerator_MoveNext_mD32B729CB15A926B5CD49F1A1227DE43601953F8_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__version_2(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_1 = __this->get__q_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_5(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, QueueEnumerator_MoveNext_mD32B729CB15A926B5CD49F1A1227DE43601953F8_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get__index_1(); if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_003f; } } { Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_6 = __this->get__q_0(); NullCheck(L_6); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6->get__array_0(); __this->set_currentElement_3((RuntimeObject *)L_7); return (bool)0; } IL_003f: { Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_8 = __this->get__q_0(); int32_t L_9 = __this->get__index_1(); NullCheck(L_8); RuntimeObject * L_10 = Queue_GetElement_m612CFE182D43EF6A21EB21CDF53F80F4BC36816C(L_8, L_9, /*hidden argument*/NULL); __this->set_currentElement_3(L_10); int32_t L_11 = __this->get__index_1(); __this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); int32_t L_12 = __this->get__index_1(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_13 = __this->get__q_0(); NullCheck(L_13); int32_t L_14 = L_13->get__size_3(); if ((!(((uint32_t)L_12) == ((uint32_t)L_14)))) { goto IL_007e; } } { __this->set__index_1((-1)); } IL_007e: { return (bool)1; } } // System.Object System.Collections.Queue_QueueEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { RuntimeObject * L_0 = __this->get_currentElement_3(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_1 = __this->get__q_0(); NullCheck(L_1); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1->get__array_0(); if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2)))) { goto IL_003b; } } { int32_t L_3 = __this->get__index_1(); if (L_3) { goto IL_002b; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C_RuntimeMethod_var); } IL_002b: { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, QueueEnumerator_get_Current_m0E088D19465BA6CCC423A99857FC563A2E777B1C_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_currentElement_3(); return L_8; } } // System.Void System.Collections.Queue_QueueEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void QueueEnumerator_Reset_mA1E9C48A119A6E6A98564BD3201D2B5E528986A4 (QueueEnumerator_t01610B48FE6A96358FDC0C32E2E04352EA2216FA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (QueueEnumerator_Reset_mA1E9C48A119A6E6A98564BD3201D2B5E528986A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__version_2(); Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_1 = __this->get__q_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_5(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, QueueEnumerator_Reset_mA1E9C48A119A6E6A98564BD3201D2B5E528986A4_RuntimeMethod_var); } IL_0023: { Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_5 = __this->get__q_0(); NullCheck(L_5); int32_t L_6 = L_5->get__size_3(); if (L_6) { goto IL_0039; } } { __this->set__index_1((-1)); goto IL_0040; } IL_0039: { __this->set__index_1(0); } IL_0040: { Queue_tEC6DE7527799C2E4224B469ECD0CDD2B25E8E4F3 * L_7 = __this->get__q_0(); NullCheck(L_7); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7->get__array_0(); __this->set_currentElement_3((RuntimeObject *)L_8); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.SortedList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mBF1B7B8D37D3C752EA3F9FA173076B9478A35CEE (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SortedList_Init_m117CAD874BDC5E2559B518368A167CD4011F54C5(__this, /*hidden argument*/NULL); return; } } // System.Void System.Collections.SortedList::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_Init_m117CAD874BDC5E2559B518368A167CD4011F54C5 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_Init_m117CAD874BDC5E2559B518368A167CD4011F54C5_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var))->get_emptyArray_5(); __this->set_keys_0(L_0); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ((SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var))->get_emptyArray_5(); __this->set_values_1(L_1); __this->set__size_2(0); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_3 = (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B *)il2cpp_codegen_object_new(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA(L_3, L_2, /*hidden argument*/NULL); __this->set_comparer_4(L_3); return; } } // System.Void System.Collections.SortedList::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___initialCapacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___initialCapacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_001f; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral4C28A7D98B2E79E88DB5793B92CAC2973807E234, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D_RuntimeMethod_var); } IL_001f: { int32_t L_3 = ___initialCapacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_3); __this->set_keys_0(L_4); int32_t L_5 = ___initialCapacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_5); __this->set_values_1(L_6); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var); CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_7 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL); Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B * L_8 = (Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B *)il2cpp_codegen_object_new(Comparer_t02D6323B7C3FB1B7681184587B0E1174F8DF6B3B_il2cpp_TypeInfo_var); Comparer__ctor_m48A082269DF4CAE72581C18FD8C232B8CF1B09CA(L_8, L_7, /*hidden argument*/NULL); __this->set_comparer_4(L_8); return; } } // System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mD73C626428344DB75A9EE4EBDD009568226D7757 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { { SortedList__ctor_mBF1B7B8D37D3C752EA3F9FA173076B9478A35CEE(__this, /*hidden argument*/NULL); RuntimeObject* L_0 = ___comparer0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___comparer0; __this->set_comparer_4(L_1); } IL_0010: { return; } } // System.Void System.Collections.SortedList::.ctor(System.Collections.IComparer,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__ctor_mE69C668800C6AF9EE9C745E046E151352D424E79 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject* ___comparer0, int32_t ___capacity1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___comparer0; SortedList__ctor_mD73C626428344DB75A9EE4EBDD009568226D7757(__this, L_0, /*hidden argument*/NULL); int32_t L_1 = ___capacity1; VirtActionInvoker1< int32_t >::Invoke(12 /* System.Void System.Collections.SortedList::set_Capacity(System.Int32) */, __this, L_1); return; } } // System.Void System.Collections.SortedList::Add(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_keys_0(); int32_t L_4 = __this->get__size_2(); RuntimeObject * L_5 = ___key0; RuntimeObject* L_6 = __this->get_comparer_4(); int32_t L_7 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F((RuntimeArray *)(RuntimeArray *)L_3, 0, L_4, L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_0; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_005a; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_9; int32_t L_11 = V_0; RuntimeObject * L_12 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(18 /* System.Object System.Collections.SortedList::GetKey(System.Int32) */, __this, L_11); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_10; RuntimeObject * L_14 = ___key0; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_14); String_t* L_15 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralEB43350789911DF5B5D17EB5DFF35D072DFF48B7, L_13, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, NULL, SortedList_Add_m9BF149A943E2E98CCAC52DF7544A87A528F49233_RuntimeMethod_var); } IL_005a: { int32_t L_17 = V_0; RuntimeObject * L_18 = ___key0; RuntimeObject * L_19 = ___value1; SortedList_Insert_mDC41054D6440DF5AD4873ABB9D4F4583067B6287(__this, ((~L_17)), L_18, L_19, /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.SortedList::get_Capacity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_get_Capacity_mB44EDBBD56AB14D512FCD334E9167DF03D7AEFA3 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0(); NullCheck(L_0); return (((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))); } } // System.Void System.Collections.SortedList::set_Capacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_set_Capacity_mBE3FA4CD3FFF4D79E340C95007ED475AC96EFB52 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_set_Capacity_mBE3FA4CD3FFF4D79E340C95007ED475AC96EFB52_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; { int32_t L_0 = ___value0; int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_001e; } } { String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, SortedList_set_Capacity_mBE3FA4CD3FFF4D79E340C95007ED475AC96EFB52_RuntimeMethod_var); } IL_001e: { int32_t L_4 = ___value0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_keys_0(); NullCheck(L_5); if ((((int32_t)L_4) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_0091; } } { int32_t L_6 = ___value0; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_007b; } } { int32_t L_7 = ___value0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_7); V_0 = L_8; int32_t L_9 = ___value0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_9); V_1 = L_10; int32_t L_11 = __this->get__size_2(); if ((((int32_t)L_11) <= ((int32_t)0))) { goto IL_006c; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = __this->get_keys_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = V_0; int32_t L_14 = __this->get__size_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_12, 0, (RuntimeArray *)(RuntimeArray *)L_13, 0, L_14, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = __this->get_values_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = V_1; int32_t L_17 = __this->get__size_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_15, 0, (RuntimeArray *)(RuntimeArray *)L_16, 0, L_17, /*hidden argument*/NULL); } IL_006c: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = V_0; __this->set_keys_0(L_18); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = V_1; __this->set_values_1(L_19); return; } IL_007b: { IL2CPP_RUNTIME_CLASS_INIT(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = ((SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var))->get_emptyArray_5(); __this->set_keys_0(L_20); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = ((SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var))->get_emptyArray_5(); __this->set_values_1(L_21); } IL_0091: { return; } } // System.Int32 System.Collections.SortedList::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_get_Count_m29CA1E35CAEF31A67D6C774546EC01898DEFF64C (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_2(); return L_0; } } // System.Object System.Collections.SortedList::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_Clone_m764F0897536D23F33ECE5691E3009C24D551F78C (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_Clone_m764F0897536D23F33ECE5691E3009C24D551F78C_MetadataUsageId); s_Il2CppMethodInitialized = true; } SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * V_0 = NULL; { int32_t L_0 = __this->get__size_2(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E *)il2cpp_codegen_object_new(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var); SortedList__ctor_m8AB9EF2D57A8FDA543258B1B7C885F810D5B9D4D(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get_keys_0(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_3 = V_0; NullCheck(L_3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3->get_keys_0(); int32_t L_5 = __this->get__size_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_4, 0, L_5, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = __this->get_values_1(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_7 = V_0; NullCheck(L_7); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7->get_values_1(); int32_t L_9 = __this->get__size_2(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_8, 0, L_9, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_10 = V_0; int32_t L_11 = __this->get__size_2(); NullCheck(L_10); L_10->set__size_2(L_11); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_12 = V_0; int32_t L_13 = __this->get_version_3(); NullCheck(L_12); L_12->set_version_3(L_13); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_14 = V_0; RuntimeObject* L_15 = __this->get_comparer_4(); NullCheck(L_14); L_14->set_comparer_4(L_15); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_16 = V_0; return L_16; } } // System.Void System.Collections.SortedList::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeArray * ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_1; memset((&V_1), 0, sizeof(V_1)); { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_RuntimeMethod_var); } IL_0018: { RuntimeArray * L_3 = ___array0; NullCheck(L_3); int32_t L_4 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0031; } } { String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_RuntimeMethod_var); } IL_0031: { int32_t L_7 = ___arrayIndex1; if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_004a; } } { String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, _stringLiteralFA5342C4F12AD1A860B71DA5AD002761768999C3, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_RuntimeMethod_var); } IL_004a: { RuntimeArray * L_10 = ___array0; NullCheck(L_10); int32_t L_11 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_10, /*hidden argument*/NULL); int32_t L_12 = ___arrayIndex1; int32_t L_13 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12))) >= ((int32_t)L_13))) { goto IL_006a; } } { String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralBC80A496F1C479B70F6EE2BF2F0C3C05463301B8, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, SortedList_CopyTo_m3A86A44F4E73C76B75A868FCD4CF94E023F43E61_RuntimeMethod_var); } IL_006a: { V_0 = 0; goto IL_0098; } IL_006e: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get_keys_0(); int32_t L_17 = V_0; NullCheck(L_16); int32_t L_18 = L_17; RuntimeObject * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_values_1(); int32_t L_21 = V_0; NullCheck(L_20); int32_t L_22 = L_21; RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_1), L_19, L_23, /*hidden argument*/NULL); RuntimeArray * L_24 = ___array0; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_25 = V_1; DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_26 = L_25; RuntimeObject * L_27 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_26); int32_t L_28 = V_0; int32_t L_29 = ___arrayIndex1; NullCheck(L_24); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_24, L_27, ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_29)), /*hidden argument*/NULL); int32_t L_30 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); } IL_0098: { int32_t L_31 = V_0; int32_t L_32 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)L_31) < ((int32_t)L_32))) { goto IL_006e; } } { return; } } // System.Void System.Collections.SortedList::EnsureCapacity(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_EnsureCapacity_m70B0336FC9612C2932F3CABF925355D4245D7C85 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___min0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B3_0 = 0; { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get_keys_0(); NullCheck(L_0); if (!(((RuntimeArray*)L_0)->max_length)) { goto IL_0015; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get_keys_0(); NullCheck(L_1); G_B3_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))), (int32_t)2)); goto IL_0017; } IL_0015: { G_B3_0 = ((int32_t)16); } IL_0017: { V_0 = G_B3_0; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)2146435071))))) { goto IL_0026; } } { V_0 = ((int32_t)2146435071); } IL_0026: { int32_t L_3 = V_0; int32_t L_4 = ___min0; if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_002c; } } { int32_t L_5 = ___min0; V_0 = L_5; } IL_002c: { int32_t L_6 = V_0; VirtActionInvoker1< int32_t >::Invoke(12 /* System.Void System.Collections.SortedList::set_Capacity(System.Int32) */, __this, L_6); return; } } // System.Object System.Collections.SortedList::GetByIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_GetByIndex_m607E058040C2B336081FC368D6CEE51AE5D69957 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_GetByIndex_m607E058040C2B336081FC368D6CEE51AE5D69957_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedList_GetByIndex_m607E058040C2B336081FC368D6CEE51AE5D69957_RuntimeMethod_var); } IL_0022: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_values_1(); int32_t L_6 = ___index0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return L_8; } } // System.Collections.IEnumerator System.Collections.SortedList::System.Collections.IEnumerable.GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_System_Collections_IEnumerable_GetEnumerator_mE8559C93A4F9E049FA398E5DF0635B5D4AE8FE5D (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_System_Collections_IEnumerable_GetEnumerator_mE8559C93A4F9E049FA398E5DF0635B5D4AE8FE5D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__size_2(); SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * L_1 = (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E *)il2cpp_codegen_object_new(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E_il2cpp_TypeInfo_var); SortedListEnumerator__ctor_m91F6FB1020A030036AE45501806206DE3695568B(L_1, __this, 0, L_0, 3, /*hidden argument*/NULL); return L_1; } } // System.Collections.IDictionaryEnumerator System.Collections.SortedList::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SortedList_GetEnumerator_mB2E4690D0E5C0303FBC478A7EE26B460AD07BB1F (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_GetEnumerator_mB2E4690D0E5C0303FBC478A7EE26B460AD07BB1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__size_2(); SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * L_1 = (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E *)il2cpp_codegen_object_new(SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E_il2cpp_TypeInfo_var); SortedListEnumerator__ctor_m91F6FB1020A030036AE45501806206DE3695568B(L_1, __this, 0, L_0, 3, /*hidden argument*/NULL); return L_1; } } // System.Object System.Collections.SortedList::GetKey(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedList_GetKey_m07A9F7D84DDBDC427636D5BAA4513C7E510006FC (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_GetKey_m07A9F7D84DDBDC427636D5BAA4513C7E510006FC_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedList_GetKey_m07A9F7D84DDBDC427636D5BAA4513C7E510006FC_RuntimeMethod_var); } IL_0022: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_keys_0(); int32_t L_6 = ___index0; NullCheck(L_5); int32_t L_7 = L_6; RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); return L_8; } } // System.Void System.Collections.SortedList::set_Item(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_set_Item_m070CA28A6691AB17E1A464BA43975503365EE0CC (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_set_Item_m070CA28A6691AB17E1A464BA43975503365EE0CC_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedList_set_Item_m070CA28A6691AB17E1A464BA43975503365EE0CC_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_keys_0(); int32_t L_4 = __this->get__size_2(); RuntimeObject * L_5 = ___key0; RuntimeObject* L_6 = __this->get_comparer_4(); int32_t L_7 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F((RuntimeArray *)(RuntimeArray *)L_3, 0, L_4, L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_0; if ((((int32_t)L_8) < ((int32_t)0))) { goto IL_004e; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_9 = __this->get_values_1(); int32_t L_10 = V_0; RuntimeObject * L_11 = ___value1; NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject *)L_11); int32_t L_12 = __this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); return; } IL_004e: { int32_t L_13 = V_0; RuntimeObject * L_14 = ___key0; RuntimeObject * L_15 = ___value1; SortedList_Insert_mDC41054D6440DF5AD4873ABB9D4F4583067B6287(__this, ((~L_13)), L_14, L_15, /*hidden argument*/NULL); return; } } // System.Int32 System.Collections.SortedList::IndexOfKey(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SortedList_IndexOfKey_m46FB7175A30C6A18230D8D0841DFF593E3D2425D (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, RuntimeObject * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_IndexOfKey_m46FB7175A30C6A18230D8D0841DFF593E3D2425D_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { RuntimeObject * L_0 = ___key0; if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral98A43F4A61E5F8CB2761446121B52AAF147D0C04, /*hidden argument*/NULL); ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralA62F2225BF70BFACCBC7F1EF2A397836717377DE, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedList_IndexOfKey_m46FB7175A30C6A18230D8D0841DFF593E3D2425D_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get_keys_0(); int32_t L_4 = __this->get__size_2(); RuntimeObject * L_5 = ___key0; RuntimeObject* L_6 = __this->get_comparer_4(); int32_t L_7 = Array_BinarySearch_m9DDEAE93E0F338A676E9FF7E97AAEFF8D009D32F((RuntimeArray *)(RuntimeArray *)L_3, 0, L_4, L_5, L_6, /*hidden argument*/NULL); V_0 = L_7; int32_t L_8 = V_0; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_0038; } } { return (-1); } IL_0038: { int32_t L_9 = V_0; return L_9; } } // System.Void System.Collections.SortedList::Insert(System.Int32,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_Insert_mDC41054D6440DF5AD4873ABB9D4F4583067B6287 (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___index0, RuntimeObject * ___key1, RuntimeObject * ___value2, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_2(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get_keys_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_001e; } } { int32_t L_2 = __this->get__size_2(); SortedList_EnsureCapacity_m70B0336FC9612C2932F3CABF925355D4245D7C85(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1)), /*hidden argument*/NULL); } IL_001e: { int32_t L_3 = ___index0; int32_t L_4 = __this->get__size_2(); if ((((int32_t)L_3) >= ((int32_t)L_4))) { goto IL_0061; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = __this->get_keys_0(); int32_t L_6 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = __this->get_keys_0(); int32_t L_8 = ___index0; int32_t L_9 = __this->get__size_2(); int32_t L_10 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_5, L_6, (RuntimeArray *)(RuntimeArray *)L_7, ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = __this->get_values_1(); int32_t L_12 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = __this->get_values_1(); int32_t L_14 = ___index0; int32_t L_15 = __this->get__size_2(); int32_t L_16 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_11, L_12, (RuntimeArray *)(RuntimeArray *)L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); } IL_0061: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = __this->get_keys_0(); int32_t L_18 = ___index0; RuntimeObject * L_19 = ___key1; NullCheck(L_17); ArrayElementTypeCheck (L_17, L_19); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (RuntimeObject *)L_19); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_values_1(); int32_t L_21 = ___index0; RuntimeObject * L_22 = ___value2; NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)L_22); int32_t L_23 = __this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))); int32_t L_24 = __this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))); return; } } // System.Void System.Collections.SortedList::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList_RemoveAt_m5EB61F5A3B6D5DD93169325D7EEF41C34547813D (SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * __this, int32_t ___index0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList_RemoveAt_m5EB61F5A3B6D5DD93169325D7EEF41C34547813D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___index0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000d; } } { int32_t L_1 = ___index0; int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 System.Collections.SortedList::get_Count() */, __this); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0022; } } IL_000d: { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedList_RemoveAt_m5EB61F5A3B6D5DD93169325D7EEF41C34547813D_RuntimeMethod_var); } IL_0022: { int32_t L_5 = __this->get__size_2(); __this->set__size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1))); int32_t L_6 = ___index0; int32_t L_7 = __this->get__size_2(); if ((((int32_t)L_6) >= ((int32_t)L_7))) { goto IL_0073; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get_keys_0(); int32_t L_9 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get_keys_0(); int32_t L_11 = ___index0; int32_t L_12 = __this->get__size_2(); int32_t L_13 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_8, ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_10, L_11, ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)), /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = __this->get_values_1(); int32_t L_15 = ___index0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = __this->get_values_1(); int32_t L_17 = ___index0; int32_t L_18 = __this->get__size_2(); int32_t L_19 = ___index0; Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_14, ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_16, L_17, ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL); } IL_0073: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get_keys_0(); int32_t L_21 = __this->get__size_2(); NullCheck(L_20); ArrayElementTypeCheck (L_20, NULL); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (RuntimeObject *)NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = __this->get_values_1(); int32_t L_23 = __this->get__size_2(); NullCheck(L_22); ArrayElementTypeCheck (L_22, NULL); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject *)NULL); int32_t L_24 = __this->get_version_3(); __this->set_version_3(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1))); return; } } // System.Void System.Collections.SortedList::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedList__cctor_m6A728310AF9D3D2330C935724E8B7D211A5EC016 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedList__cctor_m6A728310AF9D3D2330C935724E8B7D211A5EC016_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ((EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_tCF137C88A5824F413EFB5A2F31664D8207E61D26_il2cpp_TypeInfo_var))->get_Value_0(); ((SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_StaticFields*)il2cpp_codegen_static_fields_for(SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E_il2cpp_TypeInfo_var))->set_emptyArray_5(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.SortedList_SortedListEnumerator::.ctor(System.Collections.SortedList,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListEnumerator__ctor_m91F6FB1020A030036AE45501806206DE3695568B (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * ___sortedList0, int32_t ___index1, int32_t ___count2, int32_t ___getObjRetType3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_0 = ___sortedList0; __this->set_sortedList_0(L_0); int32_t L_1 = ___index1; __this->set_index_3(L_1); int32_t L_2 = ___index1; __this->set_startIndex_4(L_2); int32_t L_3 = ___index1; int32_t L_4 = ___count2; __this->set_endIndex_5(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_5 = ___sortedList0; NullCheck(L_5); int32_t L_6 = L_5->get_version_3(); __this->set_version_6(L_6); int32_t L_7 = ___getObjRetType3; __this->set_getObjectRetType_8(L_7); __this->set_current_7((bool)0); return; } } // System.Object System.Collections.SortedList_SortedListEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_Clone_mCDD985F3FA021A7105B1690CE22EE0B38FEDCC99 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.SortedList_SortedListEnumerator::get_Key() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Key_mDE6E5D038A0212BB14DCBB9D73F831233EAC826E_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_key_1(); return L_8; } } // System.Boolean System.Collections.SortedList_SortedListEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_MoveNext_m9E4024F4C87D1FE851B86685062E1EB389D56266_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get_index_3(); int32_t L_6 = __this->get_endIndex_5(); if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_0078; } } { SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_7 = __this->get_sortedList_0(); NullCheck(L_7); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7->get_keys_0(); int32_t L_9 = __this->get_index_3(); NullCheck(L_8); int32_t L_10 = L_9; RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); __this->set_key_1(L_11); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_12 = __this->get_sortedList_0(); NullCheck(L_12); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_12->get_values_1(); int32_t L_14 = __this->get_index_3(); NullCheck(L_13); int32_t L_15 = L_14; RuntimeObject * L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); __this->set_value_2(L_16); int32_t L_17 = __this->get_index_3(); __this->set_index_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); __this->set_current_7((bool)1); return (bool)1; } IL_0078: { __this->set_key_1(NULL); __this->set_value_2(NULL); __this->set_current_7((bool)0); return (bool)0; } } // System.Collections.DictionaryEntry System.Collections.SortedList_SortedListEnumerator::get_Entry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Entry_mEDCBB15F075D7D79709D37B9EB395F39252C253E_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_key_1(); RuntimeObject * L_9 = __this->get_value_2(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10; memset((&L_10), 0, sizeof(L_10)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_10), L_8, L_9, /*hidden argument*/NULL); return L_10; } } // System.Object System.Collections.SortedList_SortedListEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_current_7(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, SortedListEnumerator_get_Current_mD1C66071084DE980DC97EABCE7BFBCCF96066120_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get_getObjectRetType_8(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0028; } } { RuntimeObject * L_4 = __this->get_key_1(); return L_4; } IL_0028: { int32_t L_5 = __this->get_getObjectRetType_8(); if ((!(((uint32_t)L_5) == ((uint32_t)2)))) { goto IL_0038; } } { RuntimeObject * L_6 = __this->get_value_2(); return L_6; } IL_0038: { RuntimeObject * L_7 = __this->get_key_1(); RuntimeObject * L_8 = __this->get_value_2(); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9; memset((&L_9), 0, sizeof(L_9)); DictionaryEntry__ctor_m67BC38CD2B85F134F3EB2473270CDD3933F7CD9B((&L_9), L_7, L_8, /*hidden argument*/NULL); DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9; RuntimeObject * L_11 = Box(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_il2cpp_TypeInfo_var, &L_10); return L_11; } } // System.Object System.Collections.SortedList_SortedListEnumerator::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var); } IL_0023: { bool L_5 = __this->get_current_7(); if (L_5) { goto IL_003b; } } { String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral4B7A2452FBAAF02487F5667BCA2E7D64B9707EDC, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, SortedListEnumerator_get_Value_mA1FF92895EE42234163A72D61DA3D6CF6C642C14_RuntimeMethod_var); } IL_003b: { RuntimeObject * L_8 = __this->get_value_2(); return L_8; } } // System.Void System.Collections.SortedList_SortedListEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4 (SortedListEnumerator_t0B3C08255F72412FF007E1CEBA45EEFAED17443E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get_version_6(); SortedList_tC8B7CDE75652EC657C510034F127B9DFDE16BF4E * L_1 = __this->get_sortedList_0(); NullCheck(L_1); int32_t L_2 = L_1->get_version_3(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, SortedListEnumerator_Reset_mA0ACBEBFF0955F4BF3B6CA08C028361AE993C1A4_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get_startIndex_4(); __this->set_index_3(L_5); __this->set_current_7((bool)0); __this->set_key_1(NULL); __this->set_value_2(NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Stack::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack__ctor_m98F99FFBF373762F139506711349267D5354FE08_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10)); __this->set__array_0(L_0); __this->set__size_1(0); __this->set__version_2(0); return; } } // System.Void System.Collections.Stack::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, int32_t ___initialCapacity0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); int32_t L_0 = ___initialCapacity0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_001f; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral4C28A7D98B2E79E88DB5793B92CAC2973807E234, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193_RuntimeMethod_var); } IL_001f: { int32_t L_3 = ___initialCapacity0; if ((((int32_t)L_3) >= ((int32_t)((int32_t)10)))) { goto IL_0028; } } { ___initialCapacity0 = ((int32_t)10); } IL_0028: { int32_t L_4 = ___initialCapacity0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)L_4); __this->set__array_0(L_5); __this->set__size_1(0); __this->set__version_2(0); return; } } // System.Int32 System.Collections.Stack::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Stack_get_Count_mA3966F522AE357ACCE3537FBDF82A919B509D6C0 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__size_1(); return L_0; } } // System.Void System.Collections.Stack::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_Clear_m9B8C5F26A38E15BD96ADFA5D3DF38227BDD91041 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = __this->get__array_0(); int32_t L_1 = __this->get__size_1(); Array_Clear_m174F4957D6DEDB6359835123005304B14E79132E((RuntimeArray *)(RuntimeArray *)L_0, 0, L_1, /*hidden argument*/NULL); __this->set__size_1(0); int32_t L_2 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); return; } } // System.Object System.Collections.Stack::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Clone_m970E7DDDA2100E11F01BF22FDC51B59A0058BB65_MetadataUsageId); s_Il2CppMethodInitialized = true; } Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * V_0 = NULL; { int32_t L_0 = __this->get__size_1(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 *)il2cpp_codegen_object_new(Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643_il2cpp_TypeInfo_var); Stack__ctor_mAA16105AE32299FABCBCCB6D912C220816030193(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_2 = V_0; int32_t L_3 = __this->get__size_1(); NullCheck(L_2); L_2->set__size_1(L_3); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_5 = V_0; NullCheck(L_5); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_5->get__array_0(); int32_t L_7 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_6, 0, L_7, /*hidden argument*/NULL); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_8 = V_0; int32_t L_9 = __this->get__version_2(); NullCheck(L_8); L_8->set__version_2(L_9); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_10 = V_0; return L_10; } } // System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL; { RuntimeArray * L_0 = ___array0; if (L_0) { goto IL_000e; } } { ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var); ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_000e: { RuntimeArray * L_2 = ___array0; NullCheck(L_2); int32_t L_3 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0027; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2D77BE6D598A0A9376398980E66D10E319F1B52A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0027: { int32_t L_6 = ___index1; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0040; } } { String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL); ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var); ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0040: { RuntimeArray * L_9 = ___array0; NullCheck(L_9); int32_t L_10 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_9, /*hidden argument*/NULL); int32_t L_11 = ___index1; int32_t L_12 = __this->get__size_1(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))) >= ((int32_t)L_12))) { goto IL_0060; } } { String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral063F5BA07B9A8319201C127A47193BF92C67599A, /*hidden argument*/NULL); ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, NULL, Stack_CopyTo_mFE62429D1F2E385D31D8AFEE165327B33628BDF4_RuntimeMethod_var); } IL_0060: { V_0 = 0; RuntimeArray * L_15 = ___array0; if (!((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)IsInst((RuntimeObject*)L_15, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var))) { goto IL_00b5; } } { RuntimeArray * L_16 = ___array0; V_1 = ((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)Castclass((RuntimeObject*)L_16, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var)); goto IL_008d; } IL_0073: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = V_1; int32_t L_18 = V_0; int32_t L_19 = ___index1; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = __this->get__array_0(); int32_t L_21 = __this->get__size_1(); int32_t L_22 = V_0; NullCheck(L_20); int32_t L_23 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)), (int32_t)1)); RuntimeObject * L_24 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_24); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)L_19))), (RuntimeObject *)L_24); int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_008d: { int32_t L_26 = V_0; int32_t L_27 = __this->get__size_1(); if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_0073; } } { return; } IL_0097: { RuntimeArray * L_28 = ___array0; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_29 = __this->get__array_0(); int32_t L_30 = __this->get__size_1(); int32_t L_31 = V_0; NullCheck(L_29); int32_t L_32 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1)); RuntimeObject * L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); int32_t L_34 = V_0; int32_t L_35 = ___index1; NullCheck(L_28); Array_SetValue_m3C6811CE9C45D1E461404B5D2FBD4EC1A054FDCA(L_28, L_33, ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)L_35)), /*hidden argument*/NULL); int32_t L_36 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); } IL_00b5: { int32_t L_37 = V_0; int32_t L_38 = __this->get__size_1(); if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_0097; } } { return; } } // System.Collections.IEnumerator System.Collections.Stack::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_GetEnumerator_m58A7F61531021CA2F3BF52854236229EB85F6E92_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * L_0 = (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA *)il2cpp_codegen_object_new(StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA_il2cpp_TypeInfo_var); StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7(L_0, __this, /*hidden argument*/NULL); return L_0; } } // System.Object System.Collections.Stack::Peek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__size_1(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack_Peek_mEAC45FC37790CF917154F27345E106C2EE38346C_RuntimeMethod_var); } IL_0018: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = __this->get__array_0(); int32_t L_4 = __this->get__size_1(); NullCheck(L_3); int32_t L_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); return L_6; } } // System.Object System.Collections.Stack::Pop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get__size_1(); if (L_0) { goto IL_0018; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral2AE9006AA79BCA491D17932D2580DBE509CC1BD7, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, Stack_Pop_m5419FBFC126E7004A81612F90B8137C5629F7CDE_RuntimeMethod_var); } IL_0018: { int32_t L_3 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); int32_t L_5 = __this->get__size_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); int32_t L_6 = V_0; __this->set__size_1(L_6); int32_t L_7 = V_0; NullCheck(L_4); int32_t L_8 = L_7; RuntimeObject * L_9 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = __this->get__array_0(); int32_t L_11 = __this->get__size_1(); NullCheck(L_10); ArrayElementTypeCheck (L_10, NULL); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)NULL); return L_9; } } // System.Void System.Collections.Stack::Push(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358 (Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (Stack_Push_m971376A29407806EA49448EBDF6DECCCE8AF6358_MetadataUsageId); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get__size_1(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = __this->get__array_0(); NullCheck(L_1); if ((!(((uint32_t)L_0) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))) { goto IL_003b; } } { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = __this->get__array_0(); NullCheck(L_2); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))); V_0 = L_3; ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = __this->get__array_0(); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = V_0; int32_t L_6 = __this->get__size_1(); Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = V_0; __this->set__array_0(L_7); } IL_003b: { ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = __this->get__array_0(); int32_t L_9 = __this->get__size_1(); V_1 = L_9; int32_t L_10 = V_1; __this->set__size_1(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = V_1; RuntimeObject * L_12 = ___obj0; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_12); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RuntimeObject *)L_12); int32_t L_13 = __this->get__version_2(); __this->set__version_2(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Collections.Stack_StackEnumerator::.ctor(System.Collections.Stack) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackEnumerator__ctor_m6F43FBDA48F989B725ADA7CCEC46900630B631F7 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * ___stack0, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_0 = ___stack0; __this->set__stack_0(L_0); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); __this->set__version_2(L_2); __this->set__index_1(((int32_t)-2)); __this->set_currentElement_3(NULL); return; } } // System.Object System.Collections.Stack_StackEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StackEnumerator_Clone_mA509B6C10DEE0D9D7BB94621F3A5311A49BDBD36 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL); return L_0; } } // System.Boolean System.Collections.Stack_StackEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B10_0 = 0; int32_t G_B9_0 = 0; { int32_t L_0 = __this->get__version_2(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, StackEnumerator_MoveNext_m7C00619A440FB2C12C0A5C3C8CEB934250C3DE22_RuntimeMethod_var); } IL_0023: { int32_t L_5 = __this->get__index_1(); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)-2))))) { goto IL_0068; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_6 = __this->get__stack_0(); NullCheck(L_6); int32_t L_7 = L_6->get__size_1(); __this->set__index_1(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1))); int32_t L_8 = __this->get__index_1(); int32_t L_9 = ((((int32_t)((((int32_t)L_8) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); G_B4_0 = L_9; if (!L_9) { G_B5_0 = L_9; goto IL_0067; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_10 = __this->get__stack_0(); NullCheck(L_10); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = L_10->get__array_0(); int32_t L_12 = __this->get__index_1(); NullCheck(L_11); int32_t L_13 = L_12; RuntimeObject * L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13)); __this->set_currentElement_3(L_14); G_B5_0 = G_B4_0; } IL_0067: { return (bool)G_B5_0; } IL_0068: { int32_t L_15 = __this->get__index_1(); if ((!(((uint32_t)L_15) == ((uint32_t)(-1))))) { goto IL_0073; } } { return (bool)0; } IL_0073: { int32_t L_16 = __this->get__index_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); int32_t L_17 = V_0; __this->set__index_1(L_17); int32_t L_18 = V_0; int32_t L_19 = ((((int32_t)((((int32_t)L_18) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); G_B9_0 = L_19; if (!L_19) { G_B10_0 = L_19; goto IL_00a6; } } { Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_20 = __this->get__stack_0(); NullCheck(L_20); ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20->get__array_0(); int32_t L_22 = __this->get__index_1(); NullCheck(L_21); int32_t L_23 = L_22; RuntimeObject * L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); __this->set_currentElement_3(L_24); return (bool)G_B9_0; } IL_00a6: { __this->set_currentElement_3(NULL); return (bool)G_B10_0; } } // System.Object System.Collections.Stack_StackEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__index_1(); if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)-2))))) { goto IL_001a; } } { String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral700336D6AF60425DC8D362092DE4C0FFB8576432, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var); } IL_001a: { int32_t L_3 = __this->get__index_1(); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0033; } } { String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral672E8F4CE93C075F32B4FD6C0D0EDAC1BDDB9469, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_5 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, StackEnumerator_get_Current_m648842035EE50845BF314430E0FFBF33A4983C22_RuntimeMethod_var); } IL_0033: { RuntimeObject * L_6 = __this->get_currentElement_3(); return L_6; } } // System.Void System.Collections.Stack_StackEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187 (StackEnumerator_tAD5D58C2B92BF36AB7BEDF4405635CB160515DDA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__version_2(); Stack_t37723B68CC4FFD95F0F3D06A5D42D7DEE7569643 * L_1 = __this->get__stack_0(); NullCheck(L_1); int32_t L_2 = L_1->get__version_2(); if ((((int32_t)L_0) == ((int32_t)L_2))) { goto IL_0023; } } { String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFAD66767010E09AA6ADD07FA89C43A7F43F44049, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, StackEnumerator_Reset_m72AB015F4BB163EC9DC19457743EF309A4C24187_RuntimeMethod_var); } IL_0023: { __this->set__index_1(((int32_t)-2)); __this->set_currentElement_3(NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_m1F2775B234F243AD3D8AAE63B1BB5130ADD29502_inline (Exception_t * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__HResult_11(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t 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 Exception_t * Exception_get_InnerException_mCB68CC8CBF2540EF381CB17A4E4E3F6D0E33453F_inline (Exception_t * __this, const RuntimeMethod* method) { { Exception_t * L_0 = __this->get__innerException_4(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_FusionLog_mEF088D43CB6DC52520F184E17661103E177BBF78_inline (BadImageFormatException_t0994B7CA8CE7F391EF179F30094DA4DCB366F4B9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__fusionLog_18(); 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 RuntimeObject* CompatibleComparer_get_Comparer_mEBD487B199A5AEFF1B6F903B914067CC01303061_inline (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get__comparer_0(); return L_0; } } IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_m53653737058DB625DEE0F23D24129D0052BE0530_inline (CompatibleComparer_tACA057626F5F328A975DF492CC95D78EE8B05F00 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get__hcp_1(); return L_0; } }
[ "nabky.bjnoon@gmail.com" ]
nabky.bjnoon@gmail.com
c303bcbf196533f56ca883e8587399597017148e
8b9095ceb8c2cec16a44bd85b8bda1ce230f4f5f
/SystemInformLibrary/WmiQuerry.h
ae34d02af616a05d58f2afe2e489833363f172e7
[]
no_license
Striker0629/SystemInformLibrary
2713688bd8b06c3c29e7b9583db409641956e817
2f7ac1d0ffaff9b521ddd55c9bc1f4753f7b51b4
refs/heads/master
2020-03-28T19:47:08.524253
2018-10-18T12:05:39
2018-10-18T12:05:39
149,009,438
0
0
null
null
null
null
UTF-8
C++
false
false
756
h
#ifndef WMI_QUERRY_H #define WMI_QUERRY_H #include<Windows.h> #include<driverspecs.h> #include<wbemidl.h> #include<string> #include<iostream> #include<unordered_map> #include<comdef.h> #pragma comment(lib,"wbemuuid.lib") class WmiCoObject { bool connected_; //std::string querry_; std::string root_; HRESULT hres_; IWbemLocator* ploc_; IWbemClassObject* object_; public: IWbemServices* psvc; WmiCoObject(const char* root); std::string GetData(const char * target, const char* name); void GetData(const char* target, std::unordered_map<std::wstring, std::wstring>& map); IWbemServices* GetServices()const; //_bstr_t QuerryText()const; //void ResetQuerry(const char * new_querry_text_); ~WmiCoObject(); }; #endif // !WMI_QUERRY_H
[ "striker0629@gmail.com" ]
striker0629@gmail.com
593a0921de767c7b0c13b1ee02665f500632cf25
711e5c8b643dd2a93fbcbada982d7ad489fb0169
/XPSP1/NT/ds/security/passport/atls/allocate.cpp
c364372e150bd5532238fc832ceb5582889b8c07
[]
no_license
aurantst/windows-XP-SP1
629a7763c082fd04d3b881e0d32a1cfbd523b5ce
d521b6360fcff4294ae6c5651c539f1b9a6cbb49
refs/heads/master
2023-03-21T01:08:39.870106
2020-09-28T08:10:11
2020-09-28T08:10:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,221
cpp
// This is a part of the Active Template Library. // Copyright (C) 1996-2001 Microsoft Corporation // All rights reserved. // // This source code is only intended as a supplement to the // Active Template Library Reference and related // electronic documentation provided with the library. // See these sources for detailed information regarding the // Active Template Library product. #include "stdafx.h" #include "Common.h" #include "Allocate.h" #include "AtlTraceModuleManager.h" #pragma comment(lib, "advapi32.lib") bool CAtlAllocator::Init(const CHAR *pszFileName, DWORD dwMaxSize) { // REVIEW: // We're relying on syncronization provided by the startup code (CRT DllMain/WinMain) Close(); ATLASSERT(!m_hMap && !m_pBufferStart); SECURITY_DESCRIPTOR sd; SECURITY_ATTRIBUTES sa, *psa = NULL; if(!(GetVersion() & 0x80000000)) { ::InitializeSecurityDescriptor(&sd, SECURITY_DESCRIPTOR_REVISION); ::SetSecurityDescriptorDacl(&sd, TRUE, NULL, FALSE); sa.nLength = sizeof(SECURITY_ATTRIBUTES); sa.lpSecurityDescriptor = &sd; sa.bInheritHandle = FALSE; psa = &sa; } __try { m_hMap = CreateFileMappingA(INVALID_HANDLE_VALUE, psa, PAGE_READWRITE | SEC_RESERVE, 0, dwMaxSize, pszFileName); if(!m_hMap) __leave; DWORD dwErr = ::GetLastError(); m_pBufferStart = (BYTE *) MapViewOfFile(m_hMap, FILE_MAP_ALL_ACCESS, 0, 0, 0); if(!m_pBufferStart) __leave; SYSTEM_INFO si; GetSystemInfo(&si); if(dwErr == ERROR_ALREADY_EXISTS) { m_pProcess = reinterpret_cast<CAtlTraceProcess *>(m_pBufferStart); // Looks like it's already mapped into this process space. // Let's do some checking... if(IsBadReadPtr(m_pProcess, sizeof(CAtlTraceProcess)) || IsBadReadPtr(m_pProcess->Base(), sizeof(CAtlTraceProcess)) || 0 != memcmp(m_pBufferStart, m_pProcess->Base(), m_pProcess->m_dwFrontAlloc)) { // something's not right __leave; } // sure looks valid m_pProcess->IncRef(); m_pProcess = static_cast<CAtlTraceProcess *>(m_pProcess->Base()); UnmapViewOfFile(m_pBufferStart); m_pBufferStart = reinterpret_cast<BYTE *>(m_pProcess); } else { // This is just in case sizeof(CAtlTraceProcess) is // ever > dwPageSize (doubtful that could ever // happen, but it's easy enough to avoid here) DWORD dwCurrAlloc = si.dwPageSize; while(dwCurrAlloc < sizeof(CAtlTraceProcess)) dwCurrAlloc += si.dwPageSize; if(!VirtualAlloc(m_pBufferStart, dwCurrAlloc, MEM_COMMIT, PAGE_READWRITE)) __leave; m_pProcess = new(m_pBufferStart) CAtlTraceProcess(dwMaxSize); m_pProcess->m_dwFrontAlloc = dwCurrAlloc; m_pProcess->m_dwCurrFront = sizeof(CAtlTraceProcess); } m_dwPageSize = si.dwPageSize; m_bValid = true; } __finally { if(!m_bValid) { if(m_pBufferStart) { UnmapViewOfFile(m_pBufferStart); m_pBufferStart = NULL; } if(m_hMap) { CloseHandle(m_hMap); m_hMap = NULL; } } } return m_bValid; } bool CAtlAllocator::Open(const CHAR *pszFileName) { Close(); __try { m_hMap = OpenFileMappingA(FILE_MAP_WRITE, FALSE, pszFileName); if(!m_hMap) __leave; m_pBufferStart = (BYTE *) MapViewOfFile(m_hMap, FILE_MAP_ALL_ACCESS, 0, 0, 0); if(!m_pBufferStart) __leave; m_pProcess = reinterpret_cast<CAtlTraceProcess *>(m_pBufferStart); m_pProcess->IncRef(); SYSTEM_INFO si; GetSystemInfo(&si); m_dwPageSize = si.dwPageSize; m_bValid = true; } __finally { if(!m_bValid) { if(m_pBufferStart) { UnmapViewOfFile(m_pBufferStart); m_pBufferStart = NULL; } if(m_hMap) { CloseHandle(m_hMap); m_hMap = NULL; } m_pProcess = NULL; } } return m_bValid; } void CAtlAllocator::Close(bool bForceUnmap) { if(m_bValid) { if(m_pProcess->DecRef() == 0 || bForceUnmap) UnmapViewOfFile(m_pBufferStart); m_pBufferStart = NULL; CloseHandle(m_hMap); m_hMap = NULL; m_bValid = false; } } CAtlTraceModule *CAtlAllocator::GetModule(int iModule) const { if( iModule == -1 ) { return NULL; } ATLASSERT(iModule < m_pProcess->ModuleCount()); if(iModule < m_pProcess->ModuleCount()) { BYTE *pb = reinterpret_cast<BYTE *>(m_pProcess) + sizeof(CAtlTraceProcess); return reinterpret_cast<CAtlTraceModule *>(pb) + iModule; } else return NULL; } /* CAtlTraceCategory *CAtlAllocator::GetCategory(unsigned nModule, unsigned nCategory) const { ATLASSERT(nModule < m_pProcess->ModuleCount()); if(nModule < m_pProcess->ModuleCount()) { BYTE *pb = reinterpret_cast<BYTE *>(m_pProcess) + sizeof(CAtlTraceProcess); CAtlTraceModule *pModule = reinterpret_cast<CAtlTraceModule *>(pb) + nModule; if(IsValidCategoryIndex(pModule->m_nFirstCategory)) { unsigned nOldIndex, nIndex = pModule->m_nFirstCategory; CAtlTraceCategory *pCategory; do { pCategory = GetCategoryByIndex(nIndex); if(pCategory->m_nCategory == nCategory) return pCategory; nOldIndex = nIndex; nIndex = pCategory->m_nNext; } while(nOldIndex != nIndex); } } return NULL; } */ /* bool CAtlAllocator::IsValidCategoryIndex(unsigned nIndex) const { return nIndex < m_pProcess->CategoryCount(); } */ CAtlTraceCategory *CAtlAllocator::GetCategory(int iCategory) const { if(iCategory == m_pProcess->CategoryCount()) return NULL; ATLASSERT((iCategory < m_pProcess->CategoryCount()) || (iCategory == -1)); CAtlTraceCategory *pCategory = NULL; if(iCategory >= 0) { BYTE *pb = reinterpret_cast<BYTE *>(m_pProcess) + m_pProcess->MaxSize(); pCategory = reinterpret_cast<CAtlTraceCategory *>(pb) - iCategory - 1; } return pCategory; } int CAtlAllocator::GetCategoryCount(int iModule) const { UINT nCategories = 0; CAtlTraceModule* pModule = GetModule(iModule); ATLASSERT(pModule != NULL); if(pModule != NULL) { nCategories = GetCategoryCount( *pModule ); } return nCategories; } int CAtlAllocator::GetCategoryCount(const CAtlTraceModule& rModule) const { UINT nCategories = 0; int iCategory = rModule.m_iFirstCategory; while( iCategory != -1 ) { CAtlTraceCategory* pCategory = GetCategory( iCategory ); nCategories++; iCategory = pCategory->m_iNextCategory; } return nCategories; } int CAtlAllocator::GetModuleCount() const { ATLASSERT(m_pProcess); return m_pProcess->ModuleCount(); } const ULONG kModuleBatchSize = 10; int CAtlAllocator::AddModule(HINSTANCE hInst) { // bug bug bug - overlap onto the categories!!?? CAtlTraceProcess *pProcess = GetProcess(); int iFoundModule = -1; while( iFoundModule == -1 ) { for(int iModule = 0; (iModule < pProcess->ModuleCount()) && (iFoundModule == -1); iModule++) { CAtlTraceModule *pModule = GetModule(iModule); ATLASSERT(pModule != NULL); bool bFound = pModule->TryAllocate(); if( bFound ) { pModule->Reset(hInst); pModule->m_iFirstCategory = -1; pModule->MarkValid( pProcess->GetNextCookie() ); iFoundModule = iModule; } } if( iFoundModule == -1 ) { ULONG nNewAllocSize = kModuleBatchSize*sizeof( CAtlTraceModule ); void* pNewModules = reinterpret_cast<BYTE *>(pProcess) + pProcess->m_dwFrontAlloc; VirtualAlloc(pNewModules, nNewAllocSize, MEM_COMMIT, PAGE_READWRITE); pProcess->m_dwFrontAlloc += nNewAllocSize; for( ULONG iNewModule = 0; iNewModule < kModuleBatchSize; iNewModule++ ) { CAtlTraceModule* pNewModule = static_cast< CAtlTraceModule* >( pNewModules )+iNewModule; new( pNewModule ) CAtlTraceModule; } pProcess->IncModuleCount( kModuleBatchSize ); } } return iFoundModule; } const ULONG kCategoryBatchSize = 10; int CAtlAllocator::AddCategory(int iModule, const WCHAR *szCategoryName) { int iFoundCategory = -1; CAtlTraceProcess *pProcess = GetProcess(); CAtlTraceModule *pModule = GetModule(iModule); if(pModule) { pModule->TryAddRef(); while( iFoundCategory == -1 ) { for(int iCategory = 0; (iCategory < pProcess->CategoryCount()) && (iFoundCategory == -1); iCategory++) { CAtlTraceCategory *pCategory = GetCategory( iCategory ); ATLASSERT(pCategory != NULL); bool bFound = pCategory->TryAllocate(); if( bFound ) { pCategory->Reset( szCategoryName, pModule->m_nCookie ); pCategory->m_iNextCategory = pModule->m_iFirstCategory; pCategory->MarkValid( pProcess->GetNextCookie() ); pModule->m_iFirstCategory = iCategory; ::InterlockedIncrement( &pModule->m_nCategories ); iFoundCategory = iCategory; } } if( iFoundCategory == -1 ) { ULONG nNewAllocSize = kCategoryBatchSize*sizeof( CAtlTraceCategory ); void* pNewCategories = reinterpret_cast<BYTE *>(pProcess) + pProcess->MaxSize()-pProcess->m_dwBackAlloc-nNewAllocSize; VirtualAlloc(pNewCategories, nNewAllocSize, MEM_COMMIT, PAGE_READWRITE); pProcess->m_dwBackAlloc += nNewAllocSize; for( ULONG iNewCategory = 0; iNewCategory < kCategoryBatchSize; iNewCategory++ ) { CAtlTraceCategory* pNewCategory = static_cast< CAtlTraceCategory* >( pNewCategories )+iNewCategory; new( pNewCategory ) CAtlTraceCategory; } pProcess->IncCategoryCount( kCategoryBatchSize ); } } pModule->Release(); } pProcess->m_bLoaded = false; return( iFoundCategory ); } bool CAtlAllocator::RemoveModule(int iModule) { CAtlTraceModule* pModule = GetModule(iModule); if(pModule) { int iCategory = pModule->m_iFirstCategory; while( iCategory != -1 ) { CAtlTraceCategory* pCategory = GetCategory( iCategory ); iCategory = pCategory->m_iNextCategory; ::InterlockedDecrement( &pModule->m_nCategories ); pModule->m_iFirstCategory = iCategory; pCategory->Release(); } pModule->Release(); return true; } return false; } void CAtlAllocator::CleanUp() { Close(); } void CAtlAllocator::TakeSnapshot() { if( m_bSnapshot ) { ReleaseSnapshot(); } int nModules = GetModuleCount(); for( int iModule = 0; iModule < nModules; iModule++ ) { CAtlTraceModule* pModule = GetModule( iModule ); bool bValidModule = pModule->TryAddRef(); if( bValidModule ) { CTraceSnapshot::CModuleInfo module; module.m_dwModule = DWORD_PTR( iModule )+1; module.m_iFirstCategory = m_snapshot.m_adwCategories.GetSize(); module.m_nCategories = pModule->m_nCategories; int iCategory = pModule->m_iFirstCategory; bool bCategoriesValid = true; int nCategories = 0; while( (iCategory != -1) && bCategoriesValid ) { CAtlTraceCategory* pCategory = GetCategory( iCategory ); bool bValidCategory = pCategory->TryAddRef(); if( bValidCategory ) { if( pCategory->m_nModuleCookie != pModule->m_nCookie ) { bValidCategory = false; pCategory->Release(); } else { m_snapshot.m_adwCategories.Add( DWORD_PTR( iCategory ) ); nCategories++; iCategory = pCategory->m_iNextCategory; } } if( !bValidCategory ) { bCategoriesValid = false; } } if( !bCategoriesValid ) { for( int iCategoryIndex = nCategories-1; iCategoryIndex >= 0; iCategoryIndex-- ) { DWORD_PTR dwCategory = m_snapshot.m_adwCategories[module.m_iFirstCategory+iCategoryIndex]; m_snapshot.m_adwCategories.RemoveAt( module.m_iFirstCategory+iCategoryIndex ); GetCategory( int( dwCategory ) )->Release(); } pModule->Release(); } else { m_snapshot.m_aModules.Add( module ); } } } m_bSnapshot = true; } void CAtlAllocator::ReleaseSnapshot() { if( m_bSnapshot ) { for( int iModule = 0; iModule < m_snapshot.m_aModules.GetSize(); iModule++ ) { GetModule( int( m_snapshot.m_aModules[iModule].m_dwModule-1 ) )->Release(); } for( int iCategory = 0; iCategory < m_snapshot.m_adwCategories.GetSize(); iCategory++ ) { GetCategory( int( m_snapshot.m_adwCategories[iCategory] ) )->Release(); } m_bSnapshot = false; } }
[ "112426112@qq.com" ]
112426112@qq.com